博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
服务管理--systemctl命令
阅读量:6719 次
发布时间:2019-06-25

本文共 1130 字,大约阅读时间需要 3 分钟。

摘要: systemctl 是系统服务管理器命令,它实际上将 service 和 chkconfig 这两个命令组合到一起。

任务 旧指令 新指令
使某服务自动启动 chkconfig --level 3 httpd on systemctl enable httpd.service
使某服务不自动启动 chkconfig --level 3 httpd off systemctl disable httpd.service
检查服务状态 service httpd status systemctl status httpd.service (服务详细信息) systemctl is-active httpd.service (仅显示是否 Active)
显示所有已启动的服务 chkconfig --list systemctl list-units --type=service
启动某服务 service httpd start systemctl start httpd.service
停止某服务 service httpd stop systemctl stop httpd.service
重启某服务 service httpd restart systemctl restart httpd.service

 

下面以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

转载地址:http://gscmo.baihongyu.com/

你可能感兴趣的文章
swift历史
查看>>
mysql导入大量数据时报MySQL server has gone away错误的解决办法
查看>>
socket简单理解
查看>>
过滤HTML
查看>>
临时表 表变量 游标
查看>>
关于 iTunes Store 授权和取消授权
查看>>
React文档(十三)思考React
查看>>
公司部门和职位
查看>>
python内置函数中的map,filter,reduce函数例子
查看>>
我的Android进阶之旅------>对Java中注释/**@hide*/的初步认识
查看>>
mybatis--Mapper 常见报错总结(持续总结)
查看>>
一个农民工写的Json组件,让大神们情何以堪.
查看>>
Python3向网页POST数据
查看>>
经常生气的人,身体有什么变化?
查看>>
linux之SQL语句简明教程---CREATE VIEW
查看>>
CentOS7.4中安装MySQL5.6
查看>>
LeetCode OJ - Gas Station
查看>>
MacOSX中降频的方法
查看>>
audio音频暂停和播放
查看>>
Windows下安装Python requests模块
查看>>