linux服务器(centos 7.*)配置服务开机自启
配置.service文件
进入目录/usr/lib/systemd/system
配置添加 *.service
[Unit]:服务的说明
Description:描述服务 Description=nginx
After:描述服务类别 After=network.target
[Service]服务运行参数的设置
Type=forking是后台运行的形式
ExecStart=为服务的具体运行命令
ExecReload=为重启命令
ExecSto=p为停止命令
PrivateTmp=True表示给服务分配独立的临时空间
[Install]运行级别下服务安装的相关设置,可设置为多用户,即系统运行级别为3
WantedBy=multi-user.target
注意:[Service]的启动、重启、停止命令全部要求使用绝对路径
#例如:
[Unit]
Description=zigBee
After=network.target
[Service]
Type=forking
ExecStart=/home/project/zigBee_9906/zigbee-demo.sh start
ExecReload=/home/project/zigBee_9906/zigbee-demo.sh restart
ExecStop=/home/project/zigBee_9906/zigbee-demo.sh stop
PrivateTmp=true
[Install]
WantedBy=multi-user.target
服务操作命令
systemctl start redis.service #启动redis服务
systemctl stop redis.service #停止redis服务
systemctl restart redis.service #重新启动服务
systemctl status redis.service #查看服务当前状态
systemctl enable redis.service #设置开机自启动
systemctl disable redis.service #停止开机自启动
systemctl daemon-reload #重新加载某个服务的配置文件
systemctl daemon-reload
systemctl start redis.service
systemctl enable redis.service