Hello,
Confluence 7.13.5 is after Reboot not autostarting
Greets
Ralf
Hi @Ralf Thmas ,
my suggestion is to create a service as follow :
After doing that you can start|stop your service using :
sudo systemctl start|stop confluence
If you reboot your server, that service will automatically restart.
Please let me know if it works.
Fabio
Hi @Ralf Thmas ,
please read the following article https://confluence.atlassian.com/doc/starting-confluence-automatically-on-system-startup-194284.html
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the write i should generate file etc/init.d/confluence
but i already have and there inside
GNU nano 4.8 confluence #!/bin/bash
### BEGIN INIT INFO
# Provides: confluence
# Required-Start: $remote_fs $syslog $time $named
# Required-Stop: $remote_fs $syslog $time $named
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Atlassian Confluence
# Description: Atlassian Confluence Server
### END INIT INFO
# Confluence Linux service controller script
cd "/opt/atlassian/confluence/bin"
case "$1" in
start)
./start-confluence.sh
;;
stop)
./stop-confluence.sh
;;
restart)
./stop-confluence.sh
./start-confluence.sh
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
;;
esac
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.