转:https://www.jianshu.com/p/1958878646bd

1. 创建pfly.service文件

[转] ubuntu16.04添加系统 service, 并设置开机自动启动-LMLPHP

2.  执行 systemctl daemon-reload

3. 执行 systemctl enable pfly.service

重启ubuntu系统,就可以看到pfly程序已经开机自动启动了。oh yeah!!!

pfly是由go build -o pfly p.go 编译出来的。

 package main

 import (
"fmt"
"time"
"os"
) func main() {
for {
f, err := os.OpenFile("/root/test.txt", os.O_APPEND|os.O_WRONLY, 0644)
if err != nil {
fmt.Println(err)
return
}
newLine := "File handling is easy." + time.Now().Format(time.RFC3339)
fmt.Fprintln(f, newLine) time.Sleep(2*time.Second)
}
}

  

-----------------------------------------------------------------------------------------------------------------------

Ubuntu 16.04 增加bash脚本为service,开机自启服务脚本配置

------------------------------------------------------------------------------------------------

1. 首先在/lib/systemd/system/目录下,创建服务脚本:nginx-1.13.0.service

[Unit]
Description=nginx-1.13.0
After=syslog.target network.target remote-fs.target nss-lookup.target [Service]
Type=forking
ExecStart=/usr/local/nginx-1.13.0/sbin/nginx -c /usr/local/nginx-1.13.0/conf/nginx.conf
ExecStop=/usr/local/nginx-1.13.0/sbin/nginx -s stop
PrivateTmp=true [Install]
WantedBy=multi-user.target

2. 设置让脚本开机自动启动

sudo systemctl enable nginx-1.13.0.service

3. 常用命令

作者:baymin_
链接:https://www.jianshu.com/p/1958878646bd
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

05-11 10:59