systemctl脚本存放在:/usr/lib/systemd/,有系统(system)和用户(user)之分
- 1、/usr/lib/systemd/system #系统服务,开机不需要登陆就能运行的程序(相当于开启自启)
- 2、/usr/lib/systemd/user #用户服务,需要登录后才能运行的程序
/usr/lib/systemd/目录下又存在两种类型的文件:
- 1、*.service # 服务unit文件
- 2、*.target # 开机级别unit
centos7 的每一个服务以。service 结尾,一般分为3部分:【unit】、【service】、【install】
| [Unit] |
| Description=test |
| After=network.target |
| Before=xxx.service |
| |
| [Service] |
| Type=forking |
| User=user |
| Group=user |
| KillMode=control-group |
| PIDFile=/usr/local/test/test.pid |
| Restart=no |
| ExecStart=/usr/local/test/bin/startup.sh |
| PrivateTmp=true |
| |
| [Install] |
| WantedBy=multi-user.target |
字段详细说明
| simple(默认): |
| |
| forking: |
| |
| oneshot : |
| |
| dbus: |
| |
| notify: |
| |
| idle: |
| Environment: |
| 后面接多个不同的shell变量。 |
| 例如: |
| Environment=DATA_DIR=/data/elk |
| Environment=LOG_DIR=/var/log/elasticsearch |
| Environment=PID_DIR=/var/run/elasticsearch |
| EnvironmentFile=-/etc/sysconfig/elasticsearch |
| |
| 连词号(-):在所有启动设置之前,添加的变量字段,都可以加上连词号 |
| 表示抑制错误,即发生错误时,不影响其他命令的执行。 |
| 比如EnviromentFile=-/etc/sysconfig/xxx表示即使文件不存在,也不会抛异常 |
| contorl-group (默认) |
| |
| process : |
| |
| mixed: |
| |
| none: |
| no (默认): |
| |
| on-success : |
| |
| on-failure: |
| |
| on-abnaomal: |
| |
| on-abort : |
| |
| on-watchdog: |
| |
| always: |
| |
| |
| 表示systemd重启服务之前,需要等待的秒数:RestartSec:30 |
| Exec*后面的命令,仅接受‘指令 参数 参数..’格式,不能接受<> |&等特殊字符,很多bash语法也不支持,如果想要支持bash语法,需要设置Tyep=oneshot |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| [Service] |
| Type=forking |
| PIDFile=/home/developer/web/gunicorn.pid |
| ExecStart=/usr/local/bin/forever start |
| ExecReload=/bin/kill -s HUP $MAINPID |
| ExecStop=/bin/kill -s QUIT $MAINPID |
| PrivateTmp=true |
| [Install] |
| WantedBy=multi-user.target |
| |
| |
| |
修改配置文件以后,以754的权限保存在/usr/lib/systemd/system目录下,需要重新加载配置文件方可生效
$ systemctl daemon-reload
这时就可以利用systemctl进行配置了
首先,使用systemctl start [服务名(也是文件名)]可测试服务是否可以成功运行,如果不能运行则可以使用systemctl status [服务名(也是文件名)]查看错误信息和其他服务信息,然后根据报错进行修改,直到可以start,如果不放心还可以测试restart和stop命令。
接着,只要使用systemctl enable xxxxx就可以将所编写的服务添加至开机启动即可。
| 官网nginx.service的地址:https://www.nginx.com/resources/wiki/start/topics/examples/systemd/ |
| 内容如下:Save this file as /lib/systemd/system/nginx.service |
| |
| [Unit] |
| Description=The NGINX HTTP and reverse proxy server |
| After=syslog.target network-online.target remote-fs.target nss-lookup.target |
| Wants=network-online.target |
| |
| [Service] |
| Type=forking |
| PIDFile=/run/nginx.pid |
| ExecStartPre=/usr/sbin/nginx -t |
| ExecStart=/usr/sbin/nginx |
| ExecReload=/usr/sbin/nginx -s reload |
| ExecStop=/bin/kill -s QUIT $MAINPID |
| PrivateTmp=true |
| |
| [Install] |
| WantedBy=multi-user.target |
| |
| |
| 然后执行 |
| systemctl daemon-reload |
| systemctl status nginx-compile.service |
| systemctl start nginx-compile.service |
| |
| systemctl enable nginx-compile.service |
| systemctl status nginx-compile.service |
| |
| [root@aliyun ~] |
| |
| |
| . /etc/init.d/functions |
| args=$1 |
| |
| fun(){ |
| [ $? -eq 0 ] && action "Nginx $args is " /bin/true || echo "Nginx $args is " /bin/false |
| } |
| |
| case $1 in |
| start) |
| netstat -lntup|grep ":8080\b" &>/dev/null |
| if [ $? -eq 0 ] |
| then |
| echo "Nginx is runing..." |
| else |
| /usr/local/nginx/sbin/nginx |
| fun |
| fi |
| ;; |
| stop) |
| /usr/local/nginx/sbin/nginx -s stop |
| fun |
| ;; |
| reload) |
| /usr/local/nginx/sbin/nginx -s reload |
| fun |
| ;; |
| restart) |
| netstat -lntup|grep ":8800\b" &>/dev/null |
| if [ $? -ne 0 ] |
| then |
| /usr/local/nginx/sbin/nginx |
| [ $? -eq 0 ] && echo "Nginx start is ok" || echo "Nginx start is failed" |
| else |
| /usr/local/nginx/sbin/nginx -s stop |
| [ $? -eq 0 ] && echo "Nginx stop is ok" || echo "Nginx stop is failed" |
| sleep 2 |
| /usr/local/nginx/sbin/nginx |
| fun |
| fi |
| ;; |
| status) |
| netstat -lntup|grep ":8080\b" &>/dev/null |
| if [ $? -eq 0 ] |
| then |
| echo "Nginx is runing ..." |
| else |
| echo "Nginx is not runing ..." |
| fi |
| ;; |
| *) |
| echo "Usage: $0 {start|stop|status|restart|reload}" |
| exit 2 |
| esac |
| |
| [root@aliyun ~] |
| [root@aliyun ~] |
| [Unit] |
| Description=Nginx server daemon |
| |
| [Service] |
| Type=forking |
| ExecStart=/root/nginx.sh start |
| ExecStop=/root/nginx.sh stop |
| ExecReload=/root/nginx.sh reload |
| PrivateTmp=true |
| |
| [Install] |
| WantedBy=multi-user.target |