习惯centos 7的服务管理

前端之家收集整理的这篇文章主要介绍了习惯centos 7的服务管理前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  • sshd
# 启动
systemctl restart sshd.service

# 开机自启动
systemctl enable sshd.service
  • mariadb
# 启动
systemctl restart mariadb.service

# 开机自启动
systemctl enable mariadb.service
  • 防火墙(最操蛋的一个)
# 关闭
systemctl stop firewalld.service

# 开机也关闭
systemctl disable firewalld.service
  • 列出所有服务
systemctl list-unit-files --type=service
原文链接:https://www.f2er.com/centos/379910.html

猜你在找的CentOS相关文章