系统相关
首页 > 系统相关> > CentOS6 CenOS7 服务管理(大数据学习第二天)

CentOS6 CenOS7 服务管理(大数据学习第二天)

作者:互联网

CentOS 6服务管理

查看被占用的端口号
命令

netstat -tnip

在这里插入图片描述

CentOS 6 服务管理命令主要有两个 service chkconfig

service 命令: 
命令格式:
	service 参数 | <servicename> 命令 •
	主要参数: --status-all 所有服务及状态信息 •
	主要命令command: start|stop|status|restart

在这里插入图片描述

chkconfig:
可对配置运行级别,还可配置是否开机启动:


关闭某服务启动状态在指定的运行级别中:

如关闭防火墙
chkconfig --level 2345 iptables off

在这里插入图片描述

CentOS 7

systemctl 服务管理:

RHEL 7 之后,systemctl成为服务的主要管理工具,
其集成了service 和chkconfig两个命令的功能,可方便的完成服务管理工作

在这里插入图片描述

常用

systemctl list-unit-files #显示所有单元状态列表 
systemctl list-unit-files --type=service #显示所有服务状态列表 
systemctl status *.service #查询服务运行状态 
systemctl enable *.service #启用服务(开机自动运行) 
systemctl disable *.service #禁用服务(开机不自动运行) 
systemctl start *.service #启动服务 
systemctl stop *.service #停止服务
systemctl restart *.service #重启服务

service与chkconfig 被整合

标签:status,命令,服务,service,CenOS7,CentOS6,第二天,systemctl,chkconfig
来源: https://blog.csdn.net/wangwangshuibingbing/article/details/97415506