当前位置: 首页 > article >正文

linux开机自启动三种方式

方式一、 1:rc.local 文件

1、执行命令:编辑 “/etc/rc.local”

vi /ect/rc.local

2、然后在文件最后一行添加要执行程序的全路径。
例如,每次开机时要执行一个 hello.sh,这个脚本放在 / usr 下面,那就可以在 “/etc/rc.local” 中加一行 “/usr/./hello.sh”,或者 "cd /usr/ && ./hello.sh

在这里插入图片描述
注意,你的命令应该添加在:exit 0 之前

3、添加完保存后设置 rc.local 可执行权限
chmod +x /etc/rc.local

方式二 :在 / etc/init.d 目录下添加自启动脚本

linux 在 “/etc/rc.d/init.d” 下有很多的文件,每个文件都是可以看到内容的,其实都是一些 shell 脚本或者可执行二进制文件
Linux 开机的时候,会加载运行 / etc/init.d 目录下的程序,因此我们可以把想要自动运行的脚本放到这个目录下即可。系统服务的启动就是通过这种方式实现的。
PS:添加完后务必设置文件的可执行权限 chmod +x filename

方式三:制作 Linux 服务并设置开机自启动

1.在这个目录下创建服务:
/etc/systemd/system
文件名为 XXXX.service

2.对应XXXX.service内容:

[Unit]
Description=XXXX(你程序的名字)
After=network.target(在哪个服务之后)
 
[Service]
Type=simple
ExecStart=/root/xxx/xxx/XXXX         #启动程序  对应路径或绝对路径
WorkingDirectory=/root/xxx/xxx       #程序工作目录(这个和上面这一项可自由搭配)
StandardOutput=null                  #日志相关
Restart=always                       #程序自动重启(守护线程)
RestartSec=10                        #程序重启间隔
StartLimitInterval=5                 #间隔内重启最大次数
User=root                            #使用者
 
[Install]
WantedBy=multi-user.target

3.完成后,设置程序的启动或开机自启:
通用命令:
systemctl start WEI-iEdge.service (启动服务)
systemctl enable WEI-iEdge.service (启动服务的开机自启)

  1. #重新加载配置
    systemctl daemon-reload

示例一 设置minio为服务,并设置开机自启动

/usr/local/minio/etc/minio.conf

MINIO_VOLUMES="/usr/local/minio/data"
 #文件存储地址
MINIO_OPTS="-C /usr/local/minio/etc --address xxxxx:9000   --console-address xxxxx:8848"
MINIO_ACCESS_KEY="minioadmin" 
#用户名
MINIO_SECRET_KEY="xxxxxx" 
#密码
[Unit]
Description=MinIO
Documentation=https://docs.min.io
Wants=network-online.target
After=network-online.target
AssertFileIsExecutable=/usr/local/minio/bin/minio

[Service]
# User and group
User=minio
Group=minio

EnvironmentFile=/usr/local/minio/etc/minio.conf
ExecStart=/usr/local/minio/bin/minio server $MINIO_OPTS $MINIO_VOLUMES

# Let systemd restart this service always
Restart=always
# Specifies the maximum file descriptor number that can be opened by this process
LimitNOFILE=65536

# Disable timeout logic and wait until process is stopped
TimeoutStopSec=infinity
SendSIGKILL=no

[Install]
WantedBy=multi-user.target

启动服务
#启动minio服务
systemctl start minio.service

#添加开机自启动
systemctl enable minio.service

#查看状态
systemctl status minio.service
#关闭服务:
systemctl stop minio
#重新加载配置
systemctl daemon-reload

示例二 ,设置niginx的服务为自启服务

[Unit]
Description=The NGINX HTTP and reverse proxy server
After=network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
PIDFile=/usr/local/nginx/logs/nginx.pid
ExecStart=/usr/local/nginx/sbin/nginx
ExecStop=/usr/local/nginx/sbin/nginx -s quit
ExecReload=/usr/local/nginx/sbin/nginx -s reload
PrivateTmp=true

[Install]
WantedBy=multi-user.target

启动服务
#启动minio服务
systemctl start nginx.service

#添加开机自启动
systemctl enable nginx.service

#查看状态
systemctl status nginx.service
#关闭服务:
systemctl stop minio
#重新加载配置
systemctl daemon-reload

在这里插入图片描述


http://www.kler.cn/a/374983.html

相关文章:

  • 2024年北京市安全员-A证证模拟考试题库及北京市安全员-A证理论考试试题
  • 说说Dubbo有哪些核心组件?
  • windows@命令行中获取环境变量取值不展开取值(原值)
  • 安装fpm,解决*.deb=> *.rpm
  • 组队学习专用——task05
  • 吉林大学2023级数据结构上机实验第(1~2周)参考答案(关注我,在系统关闭后持续更新)
  • PySpark的使用
  • 一、Go语言快速入门之基础语法
  • python的socket库的基本使用总目录
  • 大语言模型推理源码解读(基于llama3模型:来源github)
  • SpringBoot旋律线:Web音乐网站构建
  • 基于SSM医药进出口交易系统的设计
  • 无线基础配置
  • 深入解析C/C++中的__attribute__((packed)):内存对齐与紧打包技术
  • 目录遍历漏洞
  • AE制作太阳光线穿过手指间隙的教程
  • A*算法求第k短路
  • 机器学习:我们能用机器学习来建立投资模型吗
  • 解决宝塔安装wxwork_finance_sdk出现free():invalid pointer Aborted (core dumped)
  • leetcode 2710 移除字符串中的尾随零
  • 车载总线系列 --- CAN FD简介
  • 【自动化运维从 0-1 保姆级教程-超细-超长篇】
  • 遥感辐射传输方程中的格林函数
  • 如何保护网站安全
  • 大家觉得做一个大模型检索增强生成(RAG)系统,最难搞定的是那部分工作?
  • Java:网络初识