0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

proxmoxからnfsマウント失敗する場合の対処

Last updated at Posted at 2015-03-15

バックアップ先をnfsにしていた場合、バックアップされていなかった。
調査したところnfsマウントが外れていた。

スクリーンショット 2015-03-16 4.49.59.png

WebUIだけでは解決しなかったので以下実施。

原因

proxmox側でnfsマウントを解除せずにnfsサーバをOS入れ替えの再セットアップを行った。
proxmox側で再度nfsマウントし一見問題なさそうに見えたが、前のnfsマウント情報が残っていて、nfsマウントに影響が出ていた様子。

対処

nfsマウントが外れている場合
# df -h
df: `/mnt/pve/nfs2tb': Stale NFS file handle
df: `/mnt/pve/nfs2tb2': Stale NFS file handle

もしくはプロンプトが帰ってこない。

umount
# umount -f /mnt/pve/nfs2tb
# umount -f /mnt/pve/nfs2tb2
ディレクトリ削除
# ls /mnt/pve/
nfs2tb  nfs2tb2
# rmdir /mnt/pve/nfs2tb/
# rmdir /mnt/pve/nfs2tb2/

再度WebUIからStorageの追加をすればよい。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?