I'm not very familiar with SUSE, but you'll probably want to set up the SUSE equivalent of a startup script to manage starting Kibana. With apt-get/yum, you get that for free, but for other systems you'll need to wire it up according to the individual operating system.
You are more than right, I being new to SLES as well was hoping someone would be willing to share what they have gotten configured so I can get it up and running.
Ah, I understand. Sorry I'm not more help on that, but maybe someone else with SUSE experience can weigh in. Stack overflow may be a good place to ask questions about this as well.
case $1 in
start)
echo "Starting $DESC"
/data/kibana-4.4.2-linux-x64/bin/kibana&
;;
stop)
echo -n "Stopping $DESC: "
## Stop daemon with killproc(8) and if this fails
## killproc sets the return value according to LSB.
killproc -p $PID_FILE $chk_command
# Remember status and be verbose
rc_status -v
;;
status)
echo -n "Status for $DESC:"
## Check status with checkproc(8), if process is running
## checkproc will return with exit status 0.
# Status has a slightly different for the status command:
# 0 - service running
# 1 - service dead, but /var/run/ pid file exists
# 2 - service dead, but /var/lock/ lock file exists
# 3 - service not running
# NOTE: checkproc returns LSB compliant status values.
checkproc -p $PID_FILE $chk_command
# NOTE: rc_status knows that we called this init script with
# "status" option and adapts its messages accordingly.
rc_status -v
;;
*)
echo "Usage: $0 {start|stop|restart|status}"
exit 1
;;
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.