面试题:让1个服务开机自启动 有什么方法

运维学习交流群-点我加群:598972270

此题也可以称为:
让1个脚本或命令通过service 管理或chkconfig或systemctl 管理

方法1 CentOS6和CentOS7

/etc/rc.local

注意:

CentOS 7中使用rc.local之前 需要加上执行权限
chmod +x /etc/rc.d/rc.local

方法2 CentOS 6中

可以通过chkconfig(check config)管理开机自启动

1.书写1个脚本放在/etc/init.d/目录下

[root@oldboyedu-54-final ~]# cat /etc/init.d/oldboyd 
#!/bin/bash
hostname

2.脚本要有执行权限

[root@oldboyedu-54-final ~]# chmod +x /etc/init.d/oldboyd

3.脚本的开头要有chkconfig要求的格式

[root@oldboyedu-54-final ~]# cat  /etc/init.d/oldboyd
#!/bin/bash
# chkconfig: 2345 99 99
hostname
# chkconfig: 2345 99 99
默认格式 默认开机自启动级别 开机顺序 关机顺序

4.把脚本加入到chkconfig管理

[root@oldboyedu-54-final ~]# chkconfig --add oldboyd 
[root@oldboyedu-54-final ~]# chkconfig |grep oldboy
oldboyd         0:off   1:off   2:on    3:on    4:on    5:on    6:off

方法3 CentOS 7中 systemctl 控制开机自启动

systemctl start/restart/enable/disable rsync 通过配置文件实现

1.放在 /usr/lib/systemd/system/rsyncd.service 目录下

systemctl配置文件的格式

创建centos7 可以被systemctl管理配置文件的格式

[unit] 部分
#写注释说明
After与Before 依赖
After在xxxx服务之后运行
Before 在xxxx服务之前运行
ConditionPathExists 如果文件或目录存在

[Service]
写服务开启或关闭命令
ExecStartPre启动服务之前运行
ExecStartPre=/usr/bin/rm -f /run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t
ExecStart=/usr/sbin/nginx #启动nginx的命令
ExecReload=/bin/kill -s HUP $MAINPID #重启 重新读取配置文件
KillSignal=SIGQUIT
man kill 查询更多信号

[Install]
WantedBy=multi-user.target #指定运行级别

例子nginx启动

[root@oldboyedu-54-final ~]# cat /usr/lib/systemd/system/rsyncd.service
[Unit] 
Description=fast remote file copy program daemon
ConditionPathExists=/etc/rsyncd.conf

[Service]
EnvironmentFile=/etc/sysconfig/rsyncd
ExecStart=/usr/bin/rsync --daemon --no-detach "$OPTIONS"

[Install]
WantedBy=multi-user.target

例子rsyncd启动

[root@oldboyedu-54-final ~]# cat /usr/lib/systemd/system/nginx.service 
[Unit]
Description=The nginx HTTP and reverse proxy server
After=network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
PIDFile=/run/nginx.pid

ExecStartPre=/usr/bin/rm -f /run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t
ExecStart=/usr/sbin/nginx
ExecReload=/bin/kill -s HUP $MAINPID
KillSignal=SIGQUIT
TimeoutStopSec=5
KillMode=process
PrivateTmp=true

[Install]
WantedBy=multi-user.target

参考文档:

https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7

你可能感兴趣的:(面试题:让1个服务开机自启动 有什么方法)