[nb500.cn]CentOS8.3服务启动方法
2021-02-10/2023-11-26
fogsun
[nb500.cn]CentOS8.3服务启动方法
方法一:命令格式: service xxx command
这里分为三部分:
1、service 固定命令
2、xxx 为服务名称
3、command 为具体命令 例如: start stop
目前已使用的范围有:
1、sshd
2、httpd 一款apache的linux服务可支持web访问
3、
方法二:命令格式: systemctl command xxx
与方法一类似
举例:
yum install httpd -y 安装apache
yum install httpd-manual -y 安装apache的另一个服务
systemctl start httpd 启动服务
systemctl enable httpd
systemctl stop firewalld.service systemctl 停止 firewalld.service
systemctl disable firewalld.service