From: ledion <le...@sp...> - 2011-03-06 07:35:19
|
Here is a simpler way to run luciddb as a daemon. (1) create a script called $LUCIDDB_HOME/bin/lucidDbServerDaemon with the following content: #!/bin/sh BIN_DIR=$(cd `dirname $0`; pwd) . $BIN_DIR/defineFarragoRuntime.sh # 1. close stdin - LucidDbServer it will interpet it as "run in daemon mode" # 2. run LucidDbServer in the background thus making it a real daemon ${JAVA_EXEC} ${JAVA_ARGS} org.luciddb.session.LucidDbServer 0<&-, <&- & (2) start the server in daemon mode as follows: $LUCIDDB_HOME/bin/lucidDbServerDaemon (3) to stop luciddb server run: kill -- View this message in context: http://luciddb-users.1374590.n2.nabble.com/PG-MySQL-protocol-support-tp4180819p6093725.html Sent from the luciddb-users mailing list archive at Nabble.com. |