Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to set the service that compiles and installs to boot under linux

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces "how to set the service of compilation and installation under linux to boot". In the daily operation, I believe that many people have doubts about how to set the service of compilation and installation under linux to boot. Xiaobian consulted all kinds of materials and sorted out simple and easy-to-use methods of operation. I hope it will be helpful to answer the doubt of "how to set the service of compilation and installation under linux to boot". Next, please follow the editor to study!

First, check to see if the startup file is in the directory to which it belongs:

The code is as follows:

Ll / etc/init.d/ | grep mysql

Ll / etc/rc.d/init.d/ | grep mysql

Ll / etc/init.d/ | grep httpd

Ll / etc/rc.d/init.d/ | grep httpd

If there is a duplicate name, stop the startup of the software installed by rpm and rename the startup file that you need to start.

1. Mysql starts automatically when booting

The code is as follows:

Cp / usr/local/src/mysql-5.1.55/support-files/mysql.server / etc/rc.d/init.d/

Mv / etc/init.d/mysql.server / etc/init.d/mysql

Chmod + x / etc/rc.d/init.d/mysql

Chkconfig-level 35 mysql on

Summary: to set the service boot self-startup is to put the service startup script in the / etc/init.d/ directory, which is the directory read by the system boot, and set the chkconfig command, plus the service boot self-startup.

2. Apache starts automatically when booting

The code is as follows:

Cp / usr/local/apache2/bin/apachectl / etc/init.d/

Mv / etc/init.d/apachectl / etc/init.d/httpd

Vim / etc/init.d/httpd

Add two lines of text under the first line #! / bin/sh:

The code is as follows:

# chkconfig: 35 70 30

# description: Apache

Save exit

Chkconfig-level 35 httpd on

The easiest way:

The code is as follows:

Vim / etc/rc.d/rc.local

/ usr/red5/red5.sh &

Just add a startup command at the end of the file.

At this point, the study on "how to set the service for compilation and installation under linux to boot" is over. I hope to be able to solve your doubts. The collocation of theory and practice can better help you learn, go and try it! If you want to continue to learn more related knowledge, please continue to follow the website, the editor will continue to work hard to bring you more practical articles!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report