linux中添加重启自动

Posted 数据轨迹

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux中添加重启自动相关的知识,希望对你有一定的参考价值。

今天又要维护新的服务器了,翻了一下网上Redis自动启动,结果配置一大堆,其实很多没什么用,也不好理解,所以干脆把我自己的记录给写这里给大家参考。

第一步:创建Redis启动服务

在系统开机启动项目录 /lib/systemd/system 目录添加 redis.service 文件

[root@iZ23evimvf8Z ~]# vi /lib/systemd/system/redis.service
第二步:写入启动命令

[Unit]
Description=The redis-server Process Manager
Documentation=https://redis.io/
After=network.target
 
[Service]
Type=forking
ExecStart=/usr/local/redis/bin/redis-server /usr/local/redis/redis.conf
ExecStop=/usr/local/redis/bin/redis-cli shutdown
 
[Install]
WantedBy=multi-user.target
说明:大家要有自己的启动命令之后,改成自己的路径即可。

第三步:设置服务开机自启

[root@iZ23evimvf8Z ~]# systemctl enable redis
第四步:使用命令

# 启动 nginx
[root@iZ23evimvf8Z ~]# systemctl start redis
# 停止
[root@iZ23evimvf8Z ~]# systemctl stop redis
# 查看redis运行状态
[root@iZ23evimvf8Z ~]# systemctl status redis
 
[root@iZ23evimvf8Z ~]# ps aux | grep redis
第五:扩展了解

这个是用户启动项,意思是只有这个用户登陆的时候才启动:
/usr/lib/systemd/system/

这个是系统开机启动项,意思是开机就启动,不管哪个用户登录:
/lib/systemd/system/

查看所有的开机启动项:
systemctl list-unit-files |grep enabled

 

常见命令:

下面以nfs服务为例:

1.启动nfs服务

systemctl start nfs-server.service

2.设置开机自启动

systemctl enable nfs-server.service

3.停止开机自启动

systemctl disable nfs-server.service

4.查看服务当前状态

systemctl status nfs-server.service

5.重新启动某服务

systemctl restart nfs-server.service

6.查看所有已启动的服务

systemctl list -units --type=service

开启防火墙22端口

iptables -I INPUT -p tcp --dport 22 -j ACCEPT

如果仍然有问题,就可能是SELinux导致的

关闭SElinux:

修改/etc/selinux/config文件中的SELINUX=”” 为 disabled,然后重启

彻底关闭防火墙:

sudo systemctl status  firewalld.service
sudo systemctl stop firewalld.service          
sudo systemctl disable firewalld.service

以上是关于linux中添加重启自动的主要内容,如果未能解决你的问题,请参考以下文章

linux服务器挂掉自动重启脚本(转)

如何写个linux shell脚本自动重启系统

redhat7重启网卡命令

Linux,怎样让某个用户一开机就进入图形界面自动执行一个程序,程序退出就自动锁定或重启?

ubuntu18每次启动linux都要source /etc/profile生效java环境变量

linux服务器自动重启,不知道啥原因,求高手指点