The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
Hi everyone, We’re always looking at how to improve Confluence and customer feedback plays an important role in making sure we're investing in the areas that will bring the most value to the most c...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.