自己的服务开机自启动
第一步:准备配置文件
- 配置文件示例:xxx.service
[unit] description=你的服务名称 service conditionpathexists=/home/user/install/xxxxxxx after=network.target [service] type=simple user=root environmentfile=/home/user/install/env // 环境变量, 不需要则置为空 workingdirectory=/home/user/install execstart=/home/user/install/xxxxxxx -c /home/user/install/config.yml restart=on-failure restartsec=10 standardoutput=syslog standarderror=syslog syslogidentifier=xxxxxxx [install] wantedby=multi-user.target
- ps:env示例
ld_library_path=$ld_library_path:/home/user/project
第二步:启动服务
- 命令
sudo cp xxx.service /etc/systemd/system sudo systemctl start xxx.service sudo systemctl enable xxx.service
备注
- 命令
/etc/systemd/system ### 自定义服务存放路径 systemctl start xxx.service ### 启动 systemctl enable xxx.service 加入开机自启动 systemctl disable xxx.service 移除开机自启动 systemctl start xxx.service 启动 systemctl daemon-reload 修改了文件后重新加载
查询日志
- 查看指定服务日志
journalctl -u 服务名
- 查看指定日期日志
journalctl --since="2021-10-10 10:10:00" --until="2021-10-11 10:10:00" -u 服务名
- 类似tail -f
journalctl -f -n 20 -u 服务名
-n
查看尾部多少行-f
滚动形式
查看日志占用的磁盘空间
journalctl --disk-usage
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持代码网。
发表评论