linux中ls卡死的問題

michaelchengjl發表於2024-03-18

linux中ls卡死的問題

linux操作部分目錄出現ls 卡死的情況

  • 產生原因
    該資料夾中有一個服務掛載在該資料夾某一目錄下,因突然關機等異常情況導致該服務無限制等待,機器重啟後也不能正常連線

  • 解決辦法:

#檢視與該資料夾相應的服務掛載情況
mount -l

#找到掛載的目錄,取消掛載資料夾
sudo umount -l 資料夾

#取消掛載後,看下nfs的伺服器是否啟動成功。
#檢視NFS服務的狀態
 systemctl status nfs 
 
#若沒有啟動,則重新啟動
systemctl enable nfs
systemctl start nfs
systemctl enable rpcbind
systemctl start rpcbind

#啟動成功,則重新掛載目錄
mount -t nfs 遠端掛載伺服器ip:遠端服務磁碟地址 當前伺服器磁碟地址

相關文章