linux之service命令
Posted wx580ec8c84ec69
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux之service命令相关的知识,希望对你有一定的参考价值。
命令语法
service(选项)(参数)
命令选项
-h:显示帮助信息;
--status-all:显示所服务的状态。
命令参数
- 服务名:自动要控制的服务名,即
/etc/init.d
目录下的脚本文件名; - 控制命令:系统服务脚本支持的控制命令。
当修改了主机名、ip 地址等信息时,经常需要把网络重启使之生效。
service network status
配置设备:
lo eth0
当前的活跃设备:
lo eth0
service network restart
正在关闭接口 eth0: [ 确定 ]
关闭环回接口: [ 确定 ]
设置网络参数: [ 确定 ]
弹出环回接口: [ 确定 ]
弹出界面 eth0: [ 确定 ]
重启 mysql
service mysqld status
mysqld (pid 1638) 正在运行...
service mysqld restart
停止 MySQL: [ 确定 ]
启动 MySQL: [ 确定 ]
原文链接:https://rumenz.com/rumenbiji/linux-service.html
微信公众号:入门小站
以上是关于linux之service命令的主要内容,如果未能解决你的问题,请参考以下文章
工作总结之linux防火墙配置命令适用centos7centos8
What's the difference between @Component, @Repository & @Service annotations in Spring?(代码片段