java - Unable to start oreitndb with yajsw -


we trying start orientdb of yajsw wrapper. wrapper tries start orientdb gets shutdown. when try start orientdb runconsole.sh, starts , terminated immediately. no error/exception thrown in logs.

this orientdb wrapper.conf -

#******************************************************************** # java executable properties #******************************************************************** wrapper.control=loose # copy java.exe <tmp>/java_<customprocname>_nnnn.exe #wrapper.java.customprocname=  #******************************************************************** # working directory #******************************************************************** wrapper.working.dir=/home/atrium/orientdb-community-2.1.2/bin  # java main class. # yajsw: default "org.rzo.yajsw.app.wrapperjvmmain" # not set property unless have own implementation # wrapper.java.mainclass=  #******************************************************************** # tmp folder # yajsw creates temporary files named in_.. out_.. err_.. jna.. # per default these placed in jna.tmpdir. # jna.tmpdir set in setenv batch file <yajsw>/tmp #******************************************************************** wrapper.tmp.path = ${jna_tmpdir}   #******************************************************************** # application main class or native executable # 1 of following properties must defined #********************************************************************  # java application main class wrapper.java.app.mainclass=com.orientechnologies.orient.server.oservermain  # or jar file #wrapper.java.app.jar=  # or groovy script file #wrapper.groovy=  #or native executable #wrapper.image=  # % of total ram #wrapper.java.initmemory.relative=10  # maximum java heap size (in mb) # alternative wrapper.java.additional.<n>=-xmx #wrapper.java.maxmemory=64  # % of total ram #wrapper.java.maxmemory.relative=30  # jsw requires main class set app.parameter property # yajsw: specify main class please use wrapper.java.app.mainclass=  #******************************************************************** # application environment properties. #******************************************************************** # adds environment application #wrapper.app.env.<key>=<value>  #******************************************************************** # wrapper logging properties #******************************************************************** # format of output console.  (see docs formats) # wrapper.console.format=pm  # log level console output.  (see docs log levels) wrapper.console.loglevel=debug wrapper.debug = true wrapper.debug.level = 3  # log file use wrapper output logging. wrapper.logfile=${wrapper_home}/log/wrapper.orient.log  # format of output log file.  (see docs formats) #wrapper.logfile.format=lptm  # log level log file output.  (see docs log levels) #wrapper.logfile.loglevel=info  # maximum size log file allowed grow before #  log rolled. size specified in bytes.  default value #  of 0, disables log rolling size.  may abbreviate 'k' (kb) or #  'm' (mb) suffix.  example: 10m = 10 megabytes. # if wrapper.logfile not contain string rollnum automatically added suffix of file name wrapper.logfile.maxsize=10m  # maximum number of rolled log files allowed before old #  files deleted.  default value of 0 implies no limit. wrapper.logfile.maxfiles=10  # controls roll mode of log file # possible values: date, wrapper, jvm # if date set wrapper.logfile should contain string yyyymmdd # if date set , wrapper.logfile.maxsize set log file rolled size , date # if date set , wrapper.logfile.maxfiles older files rolled size or date deleted #wrapper.logfile.rollmode=date  #******************************************************************** # application console properties #******************************************************************** # indicate if console of application visible. #wrapper.console.visible=false  # title use when running console wrapper.console.title=yajsw-orient  #******************************************************************** # wrapper windows service , posix daemon properties #******************************************************************** # name of service wrapper.ntservice.name=yajsw-orient  # display name of service wrapper.ntservice.displayname=yajsw-orient  # description of service wrapper.ntservice.description=yajsw-orient  # service dependencies.  add dependencies needed starting 1 # wrapper.ntservice.dependency.1=  # mode in service installed.  auto_start or demand_start # wrapper.ntservice.starttype=auto_start  # allow service interact desktop. # wrapper.ntservice.interactive=false  # wrapper service user. windows. on *nix system root. # see wrapper.app.account #wrapper.ntservice.account= #wrapper.ntservice.password=  #******************************************************************** # wrapper posix daemon properties #******************************************************************** # directory in create , execute daemon init scripts. default: /etc/init.d wrapper.daemon.dir = /home/atrium/yajsw_orient/yajsw-stable-12.08/etc/init.d  # directory store wrapper pid file. default: /var/run wrapper.daemon.pid.dir = /home/atrium/yajsw_orient/yajsw-stable-12.08/var/run  # directory in create k... , s... links. # default: <wrapper.daemon.dir>/rcx.d # ubuntu set /etc/rcx.d # following grooy script should set correctly distros wrapper.daemon.run_level_dir=${if (new file('/home/atrium/yajsw_orient/yajsw-stable-12.08/etc/rc0.d').exists()) return '/home/atrium/yajsw_orient/yajsw-stable-12.08/etc/rcx.d' else return '/home/atrium/yajsw_orient/yajsw-stable-12.08/etc/init.d/rcx.d'}  # setting runlevels , priorities automatic startup , stop of daemon. # similar syntax update_rc.d command # default: equivalent default of update_rc.d #wrapper.daemon.update_rc = start 20 2 3 4 . start 30 5 . stop 80 0 1 6  #******************************************************************** # wrapper system tray properties #******************************************************************** # enable system tray wrapper.tray = true  # tcp/ip port. if none defined multicast discovery used find port # set port in case multicast not possible. wrapper.tray.port = 15002  # icon file use, per default console icon used #wrapper.tray.icon=  #******************************************************************** # exit code properties # restart on non 0 exit code #******************************************************************** wrapper.on_exit.0=shutdown wrapper.on_exit.default=restart  #******************************************************************** # trigger actions on console output #******************************************************************** ainfoinfo o. exception show message in system tray wrapper.filter.trigger.0=exception wrapper.filter.script.0=scripts/traymessage.gv wrapper.filter.script.0.args=exception  #******************************************************************** # wrapper jmx # # connect using example jconsole per remote access using url # # service:jmx:rmi:///jndi/rmi://localhost:1099/server # # eventl. change port , server name #******************************************************************** # enable wrapper jmx #wrapper.jmx = true  # jmx rmi port. default 1099 #wrapper.jmx.rmi.port =  # jmx rmi credentials # mandatory if accessing remote server #wrapper.jmx.rmi.user = #wrapper.jmx.rmi.password =  #******************************************************************** # wrapper timeouts #******************************************************************** # number of seconds allow between time wrapper starts application # ,  application logon wrapper. # default: 30 seconds wrapper.startup.timeout = 90  # number of seconds allow between time wrapper asks application shutdown , time jvm shuts down. # default: 30 seconds #wrapper.shutdown.timeout =  # number of seconds wrapper waits ping message java application. # if no heart beat received within timeout wrapper assumes application # non responsive , restart it. # default: 30 seconds #wrapper.ping.timeout =    #******************************************************************** # genconfig: further properties generated genconfig #******************************************************************** placeholdersogenpropscomehere= wrapper.java.command = java wrapper.java.classpath.1 = /home/atrium/orientdb-community-2.1.2/lib/orientdb-server-2.1.2.jar wrapper.java.classpath.2 = /home/atrium/orientdb-community-2.1.2/lib/*.jar wrapper.java.additional.1 = -server wrapper.java.additional.2 = -xmx2048m wrapper.java.additional.3 = -djna.nosys=true wrapper.java.additional.4 = -xx:+heapdumponoutofmemoryerror wrapper.java.additional.5 = -djava.awt.headless=true wrapper.java.additional.6 = -dfile.encoding=utf8 wrapper.java.additional.7 = -drhino.opt.level=9 wrapper.java.additional.8 = -dprofiler.enabled=true wrapper.java.additional.9 = -dstorage.diskcache.buffersize=13000 wrapper.java.additional.10 = -djava.util.logging.config.file=/home/atrium/orientdb-community-2.1.2/config/orientdb-server-log.properties wrapper.java.additional.11 = -dorientdb.config.file=/home/atrium/orientdb-community-2.1.2/config/orientdb-server-config.xml wrapper.java.additional.12 = -dorientdb.www.path=/home/atrium/orientdb-community-2.1.2/www wrapper.java.additional.13 = -dorientdb.build.number=unknown@r; 2015-09-09 21:41:27+0000 

below full log messages (debug mode enabled)

++++++++++ yajsw set env ++++++++++ java version "1.7.0_79" java(tm) se runtime environment (build 1.7.0_79-b15) java hotspot(tm) 64-bit server vm (build 24.79-b02, mixed mode) wrapper home : /home/atrium/yajsw_orient/yajsw-stable-12.08 configuration: /home/atrium/yajsw_orient/yajsw-stable-12.08/conf/wrapper.conf java version "1.7.0_79" java(tm) se runtime environment (build 1.7.0_79-b15) java hotspot(tm) 64-bit server vm (build 24.79-b02, mixed mode) ---------- yajsw set env ---------- yajsw: yajsw-stable-12.08 os   : linux/3.0.101-107-default/amd64 jvm  : oracle corporation/1.7.0_79//home/atrium/java/jdk1.7.0_79/jre/64 jul 25, 2017 11:42:26 org.apache.commons.vfs2.vfslog info info: using "/tmp/vfs_cache" temporary files store. warning|wrapper|yajsw-orient|17-07-25 11:42:26|yajsw: yajsw-stable-12.08 warning|wrapper|yajsw-orient|17-07-25 11:42:26|os   : linux/3.0.101-107-default/amd64 warning|wrapper|yajsw-orient|17-07-25 11:42:26|jvm  : oracle corporation/1.7.0_79//home/atrium/java/jdk1.7.0_79/jre/64 -d{}: {} io.netty.leakdetection.level simple -d{}: {} io.netty.leakdetection.maxrecords 4 java.nio.bytebuffer.cleaner: {} available java.nio.buffer.address: {} available java version: {} 7 -dio.netty.nounsafe: {} false sun.misc.unsafe: {} unavailable -dio.netty.nojavassist: {} false javassist: unavailable don't have javassist in class path or don't have enough permission load dynamically generated classes.  please check configuration better performance. -dio.netty.tmpdir: {} (java.io.tmpdir) /tmp -dio.netty.bitmode: {} (sun.arch.data.model) 64 -dio.netty.nopreferdirect: {} true platform not provide complete low-level api accessing direct buffers reliably. unless explicitly requested, heap buffer preferred avoid potential system unstability. info|wrapper|yajsw-orient|17-07-25 11:42:27|start thread main info|wrapper|yajsw-orient|17-07-25 11:42:27|set state idle->starting info|wrapper|yajsw-orient|17-07-25 11:42:27|starting process info|wrapper|yajsw-orient|17-07-25 11:42:27|starting controller info|wrapper|yajsw-orient|17-07-25 11:42:27|binding port 15003 -dio.netty.initialseeduniquifier: 0x563d816c1f597000 (took 1 ms) -dio.netty.allocator.type: {} unpooled -dio.netty.threadlocaldirectbuffersize: {} 65536 -dio.netty.maxthreadlocalcharbuffersize: {} 16384 loopback interface: {} ({}, {}) lo lo 127.0.0.2 {}: {} /proc/sys/net/core/somaxconn 128 info|wrapper|yajsw-orient|17-07-25 11:42:27|controller state: unknown -> waiting info|wrapper|yajsw-orient|17-07-25 11:42:27|binding successfull info|wrapper|yajsw-orient|17-07-25 11:42:27|controller started info|wrapper|yajsw-orient|17-07-25 11:42:27|ahessian jmx service bound port 15002 -d{}: {} io.netty.buffer.bytebuf.checkaccessible true info|wrapper|yajsw-orient|17-07-25 11:42:27|working dir /home/atrium/orientdb-community-2.1.2/bin system.env 31 env result 31 info|wrapper|yajsw-orient|17-07-25 11:42:27|create script: scripts/traymessage.gv info|wrapper|yajsw-orient|17-07-25 11:42:27|found script scripts/traymessage.gv info|wrapper|yajsw-orient|17-07-25 11:42:27|spawning wrapped process info|wrapper|yajsw-orient|17-07-25 11:42:27|exec:"java" "-classpath" "/home/atrium/yajsw_orient/yajsw-stable-12.08/wrapperapp.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-server-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/gremlin-java-2.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/hppc-0.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/jline-0.9.94.jar:/home/atrium/orientdb-community-2.1.2/lib/jna-platform-4.0.0.jar:/home/atrium/orientdb-community-2.1.2/lib/annotations-1.3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-analysis-3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-beanutils-1.7.0.jar:/home/atrium/orientdb-community-2.1.2/lib/hazelcast-all-3.3.5.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-object-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-beanutils-core-1.8.0.jar:/home/atrium/orientdb-community-2.1.2/lib/hibernate-jpa-2.0-api-1.0.0.final.jar:/home/atrium/orientdb-community-2.1.2/lib/blueprints-core-2.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-jdbc-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/gremlin-groovy-2.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/jackson-annotations-2.2.3.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-util-3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/pipes-2.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/jettison-1.3.3.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-tools-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-etl-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-graphdb-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-enterprise-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/jna-4.0.0.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-core-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/jackson-databind-2.2.3.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-configuration-1.6.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-logging-1.1.1.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-server-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-collections-3.2.1.jar:/home/atrium/orientdb-community-2.1.2/lib/jansi-1.5.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-lang-2.4.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-commons-3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/concurrentlinkedhashmap-lru-1.4.1.jar:/home/atrium/orientdb-community-2.1.2/lib/stax-api-1.0.1.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-client-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-tree-3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/javassist-3.16.1-ga.jar:/home/atrium/orientdb-community-2.1.2/lib/minimal-json-0.9.1.jar:/home/atrium/orientdb-community-2.1.2/lib/activation-1.1.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-distributed-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/snappy-java-1.1.0.1.jar:/home/atrium/orientdb-community-2.1.2/lib/jackson-core-2.2.3.jar:/home/atrium/orientdb-community-2.1.2/lib/groovy-1.8.9.jar:/home/atrium/orientdb-community-2.1.2/lib/antlr-2.7.7.jar:/home/atrium/orientdb-community-2.1.2/lib/mail-1.4.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-digester-1.8.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-3.2.jar" "-server" "-xmx2048m" "-djna.nosys=true" "-xx:+heapdumponoutofmemoryerror" "-djava.awt.headless=true" "-dfile.encoding=utf8" "-drhino.opt.level=9" "-dprofiler.enabled=true" "-dstorage.diskcache.buffersize=13000" "-djava.util.logging.config.file=/home/atrium/orientdb-community-2.1.2/config/orientdb-server-log.properties" "-dorientdb.config.file=/home/atrium/orientdb-community-2.1.2/config/orientdb-server-config.xml" "-dorientdb.www.path=/home/atrium/orientdb-community-2.1.2/www" ""-dorientdb.build.number=unknown@r; 2015-09-09 21:41:27+0000"" "-dwrapper_home=/home/atrium/yajsw_orient/yajsw-stable-12.08" "-djna_tmpdir=/home/atrium/yajsw_orient/yajsw-stable-12.08/tmp" "-dwrapper.port=15003" "-dwrapper.key=5447104952794791880" "-dwrapper.teename=5447104952794791880$1500982946874" "-dwrapper.tmp.path=/home/atrium/yajsw_orient/yajsw-stable-12.08/tmp" "-djna_tmpdir=/home/atrium/yajsw_orient/yajsw-stable-12.08/tmp" "-dwrapper.config=/home/atrium/yajsw_orient/yajsw-stable-12.08/conf/wrapper.conf" "org.rzo.yajsw.app.wrapperjvmmain" info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var wrapper_java_options=-xmx30m info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var term=xterm info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var wrapper_home=/home/atrium/yajsw_orient/yajsw-stable-12.08 info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var shlvl=3 info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var java_home=/home/atrium/java/jdk1.7.0_79/ info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var xfilesearchpath=/usr/dt/app-defaults/%l/dt info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var sudo_uid=8494629 info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var colorterm=1 info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var conf_file=/home/atrium/yajsw_orient/yajsw-stable-12.08/conf/wrapper.conf info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var mail=/var/mail/atrium info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var conf_default_file=/home/atrium/yajsw_orient/yajsw-stable-12.08/conf/wrapper.conf.default info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var pwd=/home/atrium/yajsw_orient/yajsw-stable-12.08/bin info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var logname=atrium info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var ls_options=-n --color=tty -t 0 info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var sudo_user=ppjain1 info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var _=/home/atrium/java/jdk1.7.0_79/bin/java info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var nlspath=/usr/dt/lib/nls/msg/%l/%n.cat info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var shell=/bin/bash info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var sudo_gid=100000 info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var path=/home/atrium/java/jdk1.7.0_79/bin:/home/atrium/java/jdk1.7.0_79/bin:/home/atrium/java/jdk1.7.0_79/bin:/elasticsearch/elasticsearch-1.4.3:/home/atrium/java/jdk1.7.0_79/bin:/home/atrium/jboss/wildfly-9.0.2.final/bin:/elasticsearch/elasticsearch-1.4.3:/home/atrium/java/jdk1.7.0_79/bin:/home/atrium/jboss/wildfly-9.0.2.final/bin:/usr/bin:/bin:/usr/sbin:/sbin info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var wrapper_java_sys_options=-djna_tmpdir=/home/atrium/yajsw_orient/yajsw-stable-12.08/tmp info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var user=atrium info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var prgdir=/home/atrium/yajsw_orient/yajsw-stable-12.08/bin info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var wrapper_app_jar=/home/atrium/yajsw_orient/yajsw-stable-12.08/wrapperapp.jar info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var home=/home/atrium info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var sudo_command=/bin/bash info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var username=atrium info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var ls_colors=no=00:fi=00:di=01;34:ln=00;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=41;33;01:ex=00;32:*.cmd=00;32:*.exe=01;32:*.com=01;32:*.bat=01;32:*.btm=01;32:*.dll=01;32:*.tar=00;31:*.tbz=00;31:*.tgz=00;31:*.rpm=00;31:*.deb=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.lzma=00;31:*.zip=00;31:*.zoo=00;31:*.z=00;31:*.z=00;31:*.gz=00;31:*.bz2=00;31:*.tb2=00;31:*.tz2=00;31:*.tbz2=00;31:*.avi=01;35:*.bmp=01;35:*.fli=01;35:*.gif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mng=01;35:*.mov=01;35:*.mpg=01;35:*.pcx=01;35:*.pbm=01;35:*.pgm=01;35:*.png=01;35:*.ppm=01;35:*.tga=01;35:*.tif=01;35:*.xbm=01;35:*.xpm=01;35:*.dl=01;35:*.gl=01;35:*.wmv=01;35:*.aiff=00;32:*.au=00;32:*.mid=00;32:*.mp3=00;32:*.ogg=00;32:*.voc=00;32:*.wav=00;32: info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var lang=en_us.utf-8 info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var wrapper_jar=/home/atrium/yajsw_orient/yajsw-stable-12.08/wrapper.jar info|wrapper|yajsw-orient|17-07-25 11:42:27|posix spawn setting env var java_exe=java info|wrapper|yajsw-orient|17-07-25 11:42:27|spawn exec: java -djna_tmpdir=/home/atrium/yajsw_orient/yajsw-stable-12.08/tmp -classpath /home/atrium/yajsw_orient/yajsw-stable-12.08/wrapper.jar:/home/atrium/yajsw_orient/yajsw-stable-12.08/lib/core/jna/jna-4.2.2.jar -dwrapperx.workingdir=/home/atrium/orientdb-community-2.1.2/bin org.rzo.yajsw.os.posix.posixspawnmain java -classpath /home/atrium/yajsw_orient/yajsw-stable-12.08/wrapperapp.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-server-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/gremlin-java-2.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/hppc-0.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/jline-0.9.94.jar:/home/atrium/orientdb-community-2.1.2/lib/jna-platform-4.0.0.jar:/home/atrium/orientdb-community-2.1.2/lib/annotations-1.3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-analysis-3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-beanutils-1.7.0.jar:/home/atrium/orientdb-community-2.1.2/lib/hazelcast-all-3.3.5.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-object-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-beanutils-core-1.8.0.jar:/home/atrium/orientdb-community-2.1.2/lib/hibernate-jpa-2.0-api-1.0.0.final.jar:/home/atrium/orientdb-community-2.1.2/lib/blueprints-core-2.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-jdbc-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/gremlin-groovy-2.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/jackson-annotations-2.2.3.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-util-3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/pipes-2.6.0.jar:/home/atrium/orientdb-community-2.1.2/lib/jettison-1.3.3.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-tools-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-etl-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-graphdb-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-enterprise-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/jna-4.0.0.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-core-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/jackson-databind-2.2.3.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-configuration-1.6.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-logging-1.1.1.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-server-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-collections-3.2.1.jar:/home/atrium/orientdb-community-2.1.2/lib/jansi-1.5.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-lang-2.4.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-commons-3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/concurrentlinkedhashmap-lru-1.4.1.jar:/home/atrium/orientdb-community-2.1.2/lib/stax-api-1.0.1.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-client-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-tree-3.2.jar:/home/atrium/orientdb-community-2.1.2/lib/javassist-3.16.1-ga.jar:/home/atrium/orientdb-community-2.1.2/lib/minimal-json-0.9.1.jar:/home/atrium/orientdb-community-2.1.2/lib/activation-1.1.jar:/home/atrium/orientdb-community-2.1.2/lib/orientdb-distributed-2.1.2.jar:/home/atrium/orientdb-community-2.1.2/lib/snappy-java-1.1.0.1.jar:/home/atrium/orientdb-community-2.1.2/lib/jackson-core-2.2.3.jar:/home/atrium/orientdb-community-2.1.2/lib/groovy-1.8.9.jar:/home/atrium/orientdb-community-2.1.2/lib/antlr-2.7.7.jar:/home/atrium/orientdb-community-2.1.2/lib/mail-1.4.jar:/home/atrium/orientdb-community-2.1.2/lib/commons-digester-1.8.jar:/home/atrium/orientdb-community-2.1.2/lib/asm-3.2.jar -server -xmx2048m -djna.nosys=true -xx:+heapdumponoutofmemoryerror -djava.awt.headless=true -dfile.encoding=utf8 -drhino.opt.level=9 -dprofiler.enabled=true -dstorage.diskcache.buffersize=13000 -djava.util.logging.config.file=/home/atrium/orientdb-community-2.1.2/config/orientdb-server-log.properties -dorientdb.config.file=/home/atrium/orientdb-community-2.1.2/config/orientdb-server-config.xml -dorientdb.www.path=/home/atrium/orientdb-community-2.1.2/www "-dorientdb.build.number=unknown@r; 2015-09-09 21:41:27+0000" -dwrapper_home=/home/atrium/yajsw_orient/yajsw-stable-12.08 -djna_tmpdir=/home/atrium/yajsw_orient/yajsw-stable-12.08/tmp -dwrapper.port=15003 -dwrapper.key=5447104952794791880 -dwrapper.teename=5447104952794791880$1500982946874 -dwrapper.tmp.path=/home/atrium/yajsw_orient/yajsw-stable-12.08/tmp -djna_tmpdir=/home/atrium/yajsw_orient/yajsw-stable-12.08/tmp -dwrapper.config=/home/atrium/yajsw_orient/yajsw-stable-12.08/conf/wrapper.conf org.rzo.yajsw.app.wrapperjvmmain info|wrapper|yajsw-orient|17-07-25 11:42:27|posix_spawn pid 10939 post start false 5447104952794791880$1500982946874 info|wrapper|yajsw-orient|17-07-25 11:42:27|started process 10939 info|wrapper|yajsw-orient|17-07-25 11:42:27|started process pid 10939 info|wrapper|yajsw-orient|17-07-25 11:42:27|waiting termination of process info|wrapper|yajsw-orient|17-07-25 11:42:27|set state starting->running info|wrapper|yajsw-orient|17-07-25 11:42:27|waitpid 10939 256 info|wrapper|yajsw-orient|17-07-25 11:42:27|exit code posix process: 256 application: 0 info|10939/0|yajsw-orient|17-07-25 11:42:27|process terminated info|10939/0|yajsw-orient|17-07-25 11:42:27|controller state: waiting -> process_killed info|wrapper|yajsw-orient|17-07-25 11:42:27|restart process due default exit code rule info|wrapper|yajsw-orient|17-07-25 11:42:27|shutdown wrapper due exit code rule info|wrapper|yajsw-orient|17-07-25 11:42:27|giving after 0 retries info|wrapper|yajsw-orient|17-07-25 11:42:27|set state running->state_abort info|wrapper|yajsw-orient|17-07-25 11:42:27|stop thread yajsw.controller-1 reason: user info|wrapper|yajsw-orient|17-07-25 11:42:27|process not in state running -> delaying stop info|wrapper|yajsw-orient|17-07-25 11:42:27|set state state_abort->idle info|wrapper|yajsw-orient|17-07-25 11:42:27|shutdown wrapper due exit code rule info|wrapper|yajsw-orient|17-07-25 11:42:27|set state idle->state_shutdown 

it helpful, if us.

thanks,


Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -