linux怎样添加开机启动脚本?


本文摘自PHP中文网,作者coldplay.xixi,侵删。

linux怎样添加开机启动脚本?

linux添加开机启动脚本的方法:

系统启动时需要加载的配置文件

/etc/profile、/root/.bash_profile
/etc/bashrc、/root/.bashrc
/etc/profile.d/*.sh、/etc/profile.d/lang.sh
/etc/sysconfig/i18n、/etc/rc.local(/etc/rc.d/rc.local)

一、修改开机启动文件:/etc/rc.local(或者/etc/rc.d/rc.local)

1

2

3

4

5

6

7

8

9

10

11

12

# 1.编辑rc.local文件

[root@localhost ~]# vi /etc/rc.local

  

# 2.修改rc.local文件,在 exit 0 前面加入以下命令。保存并退出。

/etc/init.d/mysqld start                     # mysql开机启动

/etc/init.d/nginx start                     # nginx开机启动

supervisord -c /etc/supervisor/supervisord.conf         # supervisord开机启动

/bin/bash /server/scripts/test.sh >/dev/null 2>/dev/null

  

# 3.最后修改rc.local文件的执行权限

[root@localhost ~]# chmod +x /etc/rc.local

[root@localhost ~]# chmod 755 /etc/rc.local

二、自己写一个shell脚本

将写好的脚本(.sh文件)放到目录 /etc/profile.d/ 下,系统启动后就会自动执行该目录下的所有shell脚本。

三、通过chkconfig命令设置

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

# 1.将(脚本)启动文件移动到 /etc/init.d/或者/etc/rc.d/init.d/目录下。(前者是后者的软连接)

mv /www/wwwroot/test.sh /etc/rc.d/init.d

  

# 2.启动文件前面务必添加如下三行代码,否侧会提示chkconfig不支持。

#!/bin/sh             告诉系统使用的shell,所以的shell脚本都是这样

#chkconfig: 35 20 80        分别代表运行级别,启动优先权,关闭优先权,此行代码必须

#description: http server     自己随便发挥!!!,此行代码必须

/bin/echo $(/bin/date +%F_%T) >> /tmp/test.log

  

# 3.增加脚本的可执行权限

chmod +x /etc/rc.d/init.d/test.sh

  

# 4.添加脚本到开机自动启动项目中。添加到chkconfig,开机自启动。

[root@localhost ~]# cd /etc/rc.d/init.d

[root@localhost ~]# chkconfig --add test.sh

[root@localhost ~]# chkconfig test.sh on

  

# 5.关闭开机启动

[root@localhost ~]# chkconfig test.sh off

  

# 6.从chkconfig管理中删除test.sh

[root@localhost ~]# chkconfig --del test.sh

  

# 7.查看chkconfig管理

[root@localhost ~]# chkconfig --list test.sh

四、自定义服务文件,添加到系统服务,通过Systemctl管理

1.写服务文件:如nginx.service、redis.service、supervisord.service

1

2

3

4

5

6

7

8

9

10

11

12

13

14

[Unit]:服务的说明

Description:描述服务

After:描述服务类别

  

[Service]服务运行参数的设置

Type=forking      是后台运行的形式

ExecStart        为服务的具体运行命令

ExecReload       为服务的重启命令

ExecStop        为服务的停止命令

PrivateTmp=True     表示给服务分配独立的临时空间

注意:启动、重启、停止命令全部要求使用绝对路径

  

[Install]        服务安装的相关设置,可设置为多用户

WantedBy=multi-user.target

2.文件保存在目录下:以754的权限。目录路径:/usr/lib/systemd/system。如上面的supervisord.service文件放在这个目录下面。

1

2

[root@localhost ~]# cat /usr/lib/systemd/system/nginx.service

[root@localhost ~]# cat /usr/lib/systemd/system/supervisord.service

3.设置开机自启动(任意目录下执行)。如果执行启动命令报错,则执行:systemctl daemon-reload

1

2

3

4

5

6

7

8

9

10

11

设置开机自启动

[root@localhost ~]# systemctl enable nginx.service  

[root@localhost ~]# systemctl enable supervisord

  

停止开机自启动

[root@localhost ~]# systemctl disable nginx.service

[root@localhost ~]# systemctl disable supervisord

  

验证一下是否为开机启动

[root@localhost ~]# systemctl is-enabled nginx

[root@localhost ~]# systemctl is-enabled supervisord

4.其他命令

1

2

3

4

5

6

7

8

9

10

11

12

13

14

启动nginx服务

[root@localhost ~]# systemctl start nginx.service

  

停止nginx服务

[root@localhost ~]# systemctl start nginx.service

  

重启nginx服务

[root@localhost ~]# systemctl restart nginx.service

  

查看nginx服务当前状态

[root@localhost ~]# systemctl status nginx.service

  

查看所有已启动的服务

[root@localhost ~]# systemctl list-units --type=service

5.服务文件示例:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

# supervisord.service进程管理服务文件

[Unit]

Description=Process Monitoring and Control Daemon  # 内容自己定义:Description=Supervisor daemon

After=rc-local.service nss-user-lookup.target

  

[Service]

Type=forking

ExecStart=/usr/bin/supervisord -c /etc/supervisor/supervisord.conf

ExecStop= /usr/bin/supervisorctl shutdown

ExecReload=/usr/bin/supervisorctl reload

Restart=on-failure

RestartSec=42s

KillMode=process

  

[Install]

WantedBy=multi-user.target

1

2

3

4

5

6

7

8

9

10

11

12

13

# nginx.service服务文件

[Unit]

Description=nginx - high performance web server

After=network.target remote-fs.target nss-lookup.target

  

[Service]

Type=forking

ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

ExecReload=/usr/local/nginx/sbin/nginx -s reload

ExecStop=/usr/local/nginx/sbin/nginx -s stop

  

[Install]

WantedBy=multi-user.target

1

2

3

4

5

6

7

8

9

10

11

12

13

14

# redis.service服务文件

[Unit]

Description=Redis

After=network.target remote-fs.target nss-lookup.target

  

[Service]

Type=forking

ExecStart=/usr/local/bin/redis-server /etc/redis.conf

ExecStop=kill -INT `cat /tmp/redis.pid`

User=www

Group=www

  

[Install]

WantedBy=multi-user.target

推荐教程:《linux视频教程》

以上就是linux怎样添加开机启动脚本?的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

Linux创建文件夹命令是什么

Linux shell ftp按照日期去下载文件的方法

Linux系统查看磁盘空间的命令是什么

Linux是用什么语言编写的

如何保留某一时间点的磁盘数据状态――快照

ubuntu如何卸载apache服务

Linux was乱码的解决办法

Linux打开iso文件怎么打开

哪些Linux命令可以用于文件读取

Linux之ubuntu挂载3t硬盘或大于2t磁盘

更多相关阅读请进入《Linux》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...