df h執行卡住不動問題解決

2021-08-21 12:46:41 字數 1411 閱讀 6528

昨天生產環境報日誌寫不進去了,因此 登陸線上環境後,習慣用df -h命令檢視空間使用情況,結果發現該命令執行半天也沒有返回。

因此使用mount命令檢視該機器上的目錄:

[conversant@swiftmedia-esc ~]$ mount

proc on /proc type proc (rw)

sysfs on /sys type sysfs (rw)

devpts on /dev/pts type devpts (rw,gid=5,mode=620)

tmpfs on /dev/shm type tmpfs (rw)

/dev/sda1 on /boot type ext4 (rw)

none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)

sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)

203.116.18.239:/opt/storage-escape on /opt/storage-scms type nfs (rw,addr=203.116.18.239)

203.116.18.239:/opt/storage-escape on /opt/storage-escape type nfs (rw,addr=203.116.18.239)

203.116.18.239:/ta/data/swiftcoder/input/local/escape on /ta/data/swiftcoder/input/local/escape type nfs (rw,vers=4,addr=203.116.18.239,clientaddr=203.116.18.233)

發現有三個nfs目錄,因此登陸203.116.18.239 檢視目錄問題 發現/ta/data/swiftcoder/input/local/escape 這個目錄已經被刪除了

因此使用umount命令來解除安裝

umount

umount -l /ta/data/swiftcoder/input/local/escape來解除安裝裝置。選項 –l 並不是馬上umount,而是在該目錄空閒後再umount。

device is busy

fuser :identify processes using files or sockets

fuser -m -v /ta/data/swiftcoder/input/local/escape

fuser -m -v -i -k  /ta/data/swiftcoder/input/local/escape 使用i引數會問你是否kill掉這個某個程序,按y就把它kill了。

lsof |grep 『ta/data』

kill –9 pid

MYSQL啟動問題解決

我在安裝成功後啟動mysql服務時,服務啟動不了,原因 缺少乙個 data資料夾 需要命令生成,方法入下 安裝好mysql後,開啟cmd命令視窗 管理員身份執行 並且進入到mysql安裝目錄中的bin目錄,然後輸入如下命令回車即可 mysqld initialize insecure user my...

網頁左右晃動問題解決

不知道大家做網頁時候有沒有發現有個問題,網頁內容為margin 0 auto 居中時,開啟網頁的一瞬間網頁會向左擺一下,進了另乙個頁面時,網頁又會向右擺一下,然後又向左擺回來,如果經常在頁面中跳轉,會看得頭暈,原因是網頁的高度不夠時,右邊的滾動條是不會出來的,這裡網頁的寬要加上滾動條的寬,margi...

啟動問題解決辦法

前提 xx公司在做xx專案中遇到乙個問題導致系統無法正常開機,本文件就此問題給出解決方案 症狀 開機提示找不到ntoskrnl.exe 原因 主引導硬碟在第二個分割槽,重新分割槽,或者修改boot.ini檔案即可解決問題 解決方法 1.對出現問題的計算機執行重新啟動的操作 2.按f12或者放入引導光...