1.啟動nfs服務 systemctl start nfs-server.service
2.設定開機自啟動 systemctl enable nfs-server.service
3.停止開機自啟動 systemctl disable nfs-server.service
4.檢視服務當前狀態 systemctl status nfs-server.service
5.重新啟動某服務 systemctl restart nfs-server.service
6.檢視所有已啟動的服務 systemctl list -units --type=service
開啟防火牆22埠 iptables -I INPUT -p tcp --dport 22 -j accept
如果仍然有問題,就可能是SELinux導致的 關閉SElinux:
修改/etc/selinux/config檔案中的SELINUX=””為disabled,然後重啟。
徹底關閉防火牆: sudo systemctl status firewalld.service sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
1.啟動nfs服務 systemctl start nfs-server.service
2.設定開機自啟動 systemctl enable nfs-server.service
3.停止開機自啟動 systemctl disable nfs-server.service
4.檢視服務當前狀態 systemctl status nfs-server.service
5.重新啟動某服務 systemctl restart nfs-server.service
6.檢視所有已啟動的服務 systemctl list -units --type=service
開啟防火牆22埠 iptables -I INPUT -p tcp --dport 22 -j accept
如果仍然有問題,就可能是SELinux導致的 關閉SElinux:
修改/etc/selinux/config檔案中的SELINUX=””為disabled,然後重啟。
徹底關閉防火牆: sudo systemctl status firewalld.service sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service