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 被整合