- 在/opt 目录下创建一个.sh脚本,命名为start_srs.sh
#!/bin/bash
# 进入指定目录
cd /opt/srs/trunk
# 执行命令
./objs/srs -c conf/srs.conf
勿忘授权
chmod +x start_srs.sh
- 在/etc/systemd/system/目录下创建一个srs.service文件
编辑srs.service
[Unit]
Description=SRS Service
[Service]
Type=forking
ExecStart=/path/to/start_srs.sh
[Install]
WantedBy=multi-user.target
Type可以为forking或者simple
- 设置开机自动启动服务
systemctl daemon-reload
systemctl enable srs.service
systemctl start srs.service