Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
fj40wdh
Contributor III
Contributor III

Replicate at linux start up

areplicate-2021.5.0-1002.x86_64

Replicate is installed as a service and starts up at boot up. What are the proper steps to take so Replicate does not start at reboot.

Labels (2)
2 Solutions

Accepted Solutions
Steve_Nguyen
Support
Support

When replicate installed as root user it is enabled on startup using command:

chkconfig --add <service name>

you can disable and enable via chkconfig

https://www.geeksforgeeks.org/chkconfig-command-in-linux-with-examples/#:~:text=chkconfig%20command%....

Help users find answers! Don't forget to mark a solution that worked for you! If already marked, give it a thumbs up!

View solution in original post

Pedro_Lopez
Support
Support

There's also the possibility of disabling the service to auto start on the next reboot by running:

sudo systemctl disable areplicate.service

View solution in original post

5 Replies
Steve_Nguyen
Support
Support

if windows, you can set the windows service for Replicate not to start.

Help users find answers! Don't forget to mark a solution that worked for you! If already marked, give it a thumbs up!
fj40wdh
Contributor III
Contributor III
Author

Linux, Red Hat 7

Steve_Nguyen
Support
Support

When replicate installed as root user it is enabled on startup using command:

chkconfig --add <service name>

you can disable and enable via chkconfig

https://www.geeksforgeeks.org/chkconfig-command-in-linux-with-examples/#:~:text=chkconfig%20command%....

Help users find answers! Don't forget to mark a solution that worked for you! If already marked, give it a thumbs up!
Pedro_Lopez
Support
Support

There's also the possibility of disabling the service to auto start on the next reboot by running:

sudo systemctl disable areplicate.service

fj40wdh
Contributor III
Contributor III
Author

Thanks!!