CentOS 6和CentOS 7管理系统服务的区别

简介:

管理系统服务

CentOS 6

CentOS 7

firewalld.service可简写成firewalld

httpd.service可简写成httpd

关闭防火墙

# service iptables stop

# systemctl stop firewalld.service

禁止防火墙开机自启

# chkconfig iptables off

# systemctl disable firewalld.service

查看防火墙是否运行

# service iptables status

# firewall-cmd --state

暂时关闭SELinux

# setenforce 0

禁止SELinux开机自启

(永久关闭SELinux)

# vim /etc/selinux/config  -->   SELINUX=disabled  # reboot

查看SELinux状态

# getenforce

启动httpd服务

# service httpd start

# systemctl start httpd.service

停止httpd服务

# service httpd stop

# systemctl stop httpd.service

重启httpd服务

# service httpd restart

# systemctl restart httpd.service

条件式重启httpd服务

(服务之前已经启动-->重启

服务之前没有启动-->不做任何操作)

# service httpd condrestart

# service httpd try-restart

# systemctl condrestart httpd.service

# systemctl try-restart httpd.service

重载httpd服务

# service httpd reload

# systemctl reload httpd.service

重载或重启httpd服务

(服务支持重载-->重载

服务不支持重载-->重启)

# systemctl reload-or-restart httpd.service

重载或条件式重启httpd服务

(服务支持重载-->重载

服务不支持重载且之前已经启动-->重启

服务不支持重载且之前没有启动-->不做任何操作)

# systemctl reload-or-try-restart httpd.service

查看httpd服务是否运行

# service httpd status

# systemctl is-active httpd.service

# systemctl status httpd.service

设定httpd服务开机自启

# chkconfig httpd on

# systemctl enable httpd.service

禁止httpd服务开机自启

# chkconfig httpd off

# systemctl disable httpd.service

查看httpd服务是否开机自启

# chkconfig --list httpd

# systemctl is-enabled httpd.service

# systemctl status httpd.service

列出所有正在运行的服务

# systemctl list-units --type service

列出所有服务的开机自启状态

# chkconfig --list

# systemctl list-unit-files --type service

禁止设定httpd服务开机自启

(禁用# systemctl enable httpd.service)

# systemctl mask httpd.service

取消禁止设定httpd服务开机自启

(恢复# systemctl enable httpd.service)

# systemctl unmask httpd.service

查看httpd服务的依赖关系

# systemctl list-dependencies httpd.service

结束所有httpd进程

# killall httpd

# systemctl kill httpd




      本文转自Marion0728  51CTO博客,原文链接:http://blog.51cto.com/qiuyue/1950471,如需转载请自行联系原作者







相关文章
|
2月前
|
Linux 网络安全 Apache
CentOS 7.2配置Apache服务httpd(上)
CentOS 7.2配置Apache服务httpd(上)
305 1
|
2月前
|
Web App开发 搜索推荐 Unix
Linux系统之MobaXterm远程连接centos的GNOME桌面环境
【10月更文挑战第21天】Linux系统之MobaXterm远程连接centos的GNOME桌面环境
472 4
Linux系统之MobaXterm远程连接centos的GNOME桌面环境
|
1月前
|
Linux 开发工具 Windows
CentOS8 64位系统 搭建内网穿透frp
【10月更文挑战第23天】本文介绍了如何在Linux系统上搭建frp内网穿透服务,并配置Windows客户端进行访问。首先,通过系统信息检查和软件下载,完成frp服务端的安装与配置。接着,在Windows客户端下载并配置frpc,实现通过域名访问内网地址。最后,通过创建systemd服务,实现frp服务的开机自动启动。
89 14
|
2月前
|
Linux 网络安全 数据安全/隐私保护
Linux系统之Centos7安装cockpit图形管理界面
【10月更文挑战第12天】Linux系统之Centos7安装cockpit图形管理界面
112 1
Linux系统之Centos7安装cockpit图形管理界面
|
1月前
|
存储 Linux Docker
centos系统清理docker日志文件
通过以上方法,可以有效清理和管理CentOS系统中的Docker日志文件,防止日志文件占用过多磁盘空间。选择合适的方法取决于具体的应用场景和需求,可以结合手动清理、logrotate和调整日志驱动等多种方式,确保系统的高效运行。
99 2
|
1月前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,包括准备工作、下载源码、编译安装、配置 MySQL 服务、登录设置等。同时,文章还对比了编译源码安装与使用 RPM 包安装的优缺点,帮助读者根据需求选择最合适的方法。通过具体案例,展示了编译源码安装的灵活性和定制性。
166 2
|
2月前
|
监控 安全 Linux
CentOS7下安装配置ntp服务的方法教程
通过以上步骤,您不仅能在CentOS 7系统中成功部署NTP服务,还能确保其配置合理、运行稳定,为系统时间的精确性提供保障。欲了解更多高级配置或遇到特定问题,提供了丰富的服务器管理和优化资源,可作为进一步学习和求助的平台。
174 1
|
3月前
|
网络协议 Linux Shell
CentOS7系统命令学习笔记(一)
CentOS7系统命令学习笔记(一)
100 12
|
2月前
|
Linux PHP Apache
CentOS 7.2配置Apache服务httpd(下)
CentOS 7.2配置Apache服务httpd(下)
59 1
|
3月前
|
Linux
CentOS7系统命令学习笔记(二)
CentOS7系统命令学习笔记(二)
67 10

热门文章

最新文章