好好爱自己!

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

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

1. 创建pfly.service文件

 

 

2.  执行 systemctl daemon-reload

3. 执行 systemctl enable pfly.service

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

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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. 常用命令

重新加载service文件:systemctl daemon-reload

启动一个服务:systemctl start nginx-1.13.0.service

关闭一个服务:systemctl stop nginx-1.13.0.service

重启一个服务:systemctl restart nginx-1.13.0.service

显示一个服务的状态:systemctl status nginx-1.13.0.service

在开机时启用一个服务:systemctl enable nginx-1.13.0.service

在开机时禁用一个服务:systemctl disable nginx-1.13.0.service

查看服务是否开机启动:systemctl is-enabled nginx-1.13.0.service

查看已启动的服务列表:systemctl list-unit-files|grep enabled

查看启动失败的服务列表:systemctl --failed



作者:baymin_
链接:https://www.jianshu.com/p/1958878646bd
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
posted @   立志做一个好的程序员  阅读(6846)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 25岁的心里话
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
历史上的今天:
2016-11-25 ubuntu 安装LNMP
2016-11-25 cakephp2.3.0 lib中的Model.php有一个bug

不断学习创作,与自己快乐相处

点击右上角即可分享
微信分享提示