Рейтинг темы:
  • 0 Голос(ов) - 0 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
запуск l2phoenix на линуксе
#1
столкнулся с такой проблемой:
LoginServer_loop.sh
Код:
#!/bin/bash

while :;
do
    mv log/java0.log.0 "log/`date +%Y-%m-%d_%H-%M-%S`_java.log"
    mv log/stdout.log "log/`date +%Y-%m-%d_%H-%M-%S`_stdout.log"
    java -server -Xms32m -Xmx32m -cp commons-lang.jar;commons-logging.jar;javolution.jar:c3p0-0.9.1.2.jar:mysql-connector-java-bin.jar:jacksum.jar:l2rserver.jar l2r.loginserver.L2LoginServer > log/stdout.log 2>&1
    [ $? -ne 2 ] && break
    sleep 10;
done

получил лог ssh:
Код:
~/new11/l2pserver/L2Login# ./LoginServer_loop.sh
Usage: java [-options] class [args...]
           (to execute a class)
   or  java [-options] -jar jarfile [args...]
           (to execute a jar file)
where options include:
    -d32          use a 32-bit data model if available
    -d64          use a 64-bit data model if available
    -server       to select the "server" VM
                  The default VM is server.

    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
                  A : separated list of directories, JAR archives,
                  and ZIP archives to search for class files.
    -D<name>=<value>
                  set a system property
    -verbose[:class|gc|jni]
                  enable verbose output
    -version      print product version and exit
    -version:<value>
                  require the specified version to run
    -showversion  print product version and continue
    -jre-restrict-search | -jre-no-restrict-search
                  include/exclude user private JREs in the version search
    -? -help      print this help message
    -X            print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
                  enable assertions with specified granularity
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
                  disable assertions with specified granularity
    -esa | -enablesystemassertions
                  enable system assertions
    -dsa | -disablesystemassertions
                  disable system assertions
    -agentlib:<libname>[=<options>]
                  load native agent library <libname>, e.g. -agentlib:hprof
                  see also, -agentlib:jdwp=help and -agentlib:hprof=help
    -agentpath:<pathname>[=<options>]
                  load native agent library by full pathname
    -javaagent:<jarpath>[=<options>]
                  load Java programming language agent, see java.lang.instrument
    -splash:<imagepath>
                  show splash screen with specified image
See http://java.sun.com/javase/reference for more details.
./LoginServer_loop.sh: line 7: commons-logging.jar: command not found
попробовал удалить файл commons-logging.jar с загрузки:
Код:
#!/bin/bash

while :;
do
    mv log/java0.log.0 "log/`date +%Y-%m-%d_%H-%M-%S`_java.log"
    mv log/stdout.log "log/`date +%Y-%m-%d_%H-%M-%S`_stdout.log"
    java -server -Xms32m -Xmx32m -cp commons-lang.jar;javolution.jar:c3p0-0.9.1.2.jar:mysql-connector-java-bin.jar:jacksum.jar:l2rserver.jar l2r.loginserver.L2LoginServer > log/stdout.log 2>&1
    [ $? -ne 2 ] && break
    sleep 10;
done

и получил тоже самое:
Код:
~/new11/l2pserver/L2Login# ./LoginServer_loop.sh
Usage: java [-options] class [args...]
           (to execute a class)
   or  java [-options] -jar jarfile [args...]
           (to execute a jar file)
where options include:
    -d32          use a 32-bit data model if available
    -d64          use a 64-bit data model if available
    -server       to select the "server" VM
                  The default VM is server.

    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
                  A : separated list of directories, JAR archives,
                  and ZIP archives to search for class files.
    -D<name>=<value>
                  set a system property
    -verbose[:class|gc|jni]
                  enable verbose output
    -version      print product version and exit
    -version:<value>
                  require the specified version to run
    -showversion  print product version and continue
    -jre-restrict-search | -jre-no-restrict-search
                  include/exclude user private JREs in the version search
    -? -help      print this help message
    -X            print help on non-standard options
    -ea[:<packagename>...|:<classname>]
    -enableassertions[:<packagename>...|:<classname>]
                  enable assertions with specified granularity
    -da[:<packagename>...|:<classname>]
    -disableassertions[:<packagename>...|:<classname>]
                  disable assertions with specified granularity
    -esa | -enablesystemassertions
                  enable system assertions
    -dsa | -disablesystemassertions
                  disable system assertions
    -agentlib:<libname>[=<options>]
                  load native agent library <libname>, e.g. -agentlib:hprof
                  see also, -agentlib:jdwp=help and -agentlib:hprof=help
    -agentpath:<pathname>[=<options>]
                  load native agent library by full pathname
    -javaagent:<jarpath>[=<options>]
                  load Java programming language agent, see java.lang.instrument
    -splash:<imagepath>
                  show splash screen with specified image
See http://java.sun.com/javase/reference for more details.


2011-08-18_22-30-09_java.log
Код:
./LoginServer_loop.sh: line 7: javolution.jar:c3p0-0.9.1.2.jar:mysql-connector-java-bin.jar:jacksum.jar:l2rserver.jar: command not found

2011-08-18_22-30-09_stdout.log
Код:
./LoginServer_loop.sh: line 7: javolution.jar:c3p0-0.9.1.2.jar:mysql-connector-java-bin.jar:jacksum.jar:l2rserver.jar: command not found

помогите запустить сборку на линуксе Sad
Ответ
#2
Для тех, кто на бронепоезде. В *NIX разделитель имен файлов : а не ;
; разделяет команды
Ответ
#3
У тебя Ubuntu? Или же, что-то другое?
Ответ


Возможно похожие темы ...
Тема Автор Ответы Просмотры Последний пост
  Предлагаю совместный запуск. Lord_Gothic 0 1,254 05-11-2020, 01:18 AM
Последний пост: Lord_Gothic
  L2umu-rt(gp2), L2phoenix(gp2) slayer48 7 2,354 07-28-2015, 09:17 AM
Последний пост: cool235
  Запуск пв на Линукс lacosta1 7 2,656 05-08-2015, 02:46 PM
Последний пост: ProDev
  запуск ядра java не через bat а через c# krisadr 43 9,794 03-30-2015, 04:44 PM
Последний пост: i_am_kisly
  Запуск на debian 7 Vasya 0 1,458 10-30-2014, 12:39 PM
Последний пост: Vasya
  Запуск сервера Ошибка Rous 4 2,548 08-06-2014, 06:35 AM
Последний пост: Rous
  Запуск под линукс Emurt ошибка hf rev5 Evencelance 1 1,462 04-05-2014, 10:16 PM
Последний пост: ProDev
  Запуск PTS Dvamp Sacura 4 1,769 01-13-2014, 09:24 PM
Последний пост: Sp1tfire
  запуск ЛС vovauv 2 1,309 09-19-2013, 10:08 PM
Последний пост: Xeliken
  Помогите. Нет конекта к БД, при запуске на линуксе сервера. Lider 0 1,155 09-08-2013, 08:05 PM
Последний пост: Lider

Перейти к форуму:


Пользователи, просматривающие эту тему: 1 Гость(ей)