标签:one server rest cheng share config nfs image har
systemctl命令是系统服务管理器指令,它实际上将 service 和 chkconfig 这两个命令组合到一起。
实例:
启动nfs服务:systemctl start nfs-server.service
设置开机自启动:systemctl enable nfs-server.service
停止开机自启动:systemctl disable nfs-server.service
查看服务当前状态:systemctl status nfs-server.service
重新启动某服务:systemctl restart nfs-server.service
查看所有已启动的服务:systemctl list -units –type=service
开启防火墙22端口:iptables -I INPUT -p tcp –dport 22 -j accept
标签:one server rest cheng share config nfs image har
原文地址:http://www.cnblogs.com/zhangmingcheng/p/6050270.html