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 3 years have passed since last update.

RHEL NASマウント 関連

Last updated at Posted at 2020-12-01

#シンボリックリンク作成手順

## シンボリックリンク作成手順
# fstabの確認:nasのマウント設定がされているか確認
cat /etc/fstab

# ディレクトリ直下の確認:対象がシンボリックリンクされているか確認
ls -l /lv

# nasの空き容量を確認
df -khT

# シンボリックリンクの作成
ln -s /nas/xxx /lv/nas_xxx

# ディレクトリ直下の確認:対象がシンボリックリンクされたか確認
ls -l /lv

#NASマウント手順

## NASマウント手順
# fstabの更新:nasのマウント設定を記述
echo 'xxx.xxx.xxx.xxx:/lv_nas /nas/xxx nfs defaults 0 0' >> /etc/fstab

# fstabの内容表示
cat /etc/fstab

# hosts.allow で許可設定 ※例
echo 'xxx:xxx.xxx.xxx.xxx' >> /etc/hosts.allow
echo 'xxx:xxx.xxx.xxx.xxx' >> /etc/hosts.allow
echo 'xxx:xxx.xxx.xxx.xxx' >> /etc/hosts.allow
echo 'xxx:xxx.xxx.xxx.xxx' >> /etc/hosts.allow

# /etc/hosts.allowの確認
cat /etc/hosts.allow

# マウント先のディレクトリを作成
mkdir -p -m 777 /nas/xxx
# 対象ディレクトリが作成されたか確認
ls -l /nas

# マウントの実施
mount /nas/xxx
df -khT

# シンボリックリンクの作成
ln -s /nas/xxx /lv/nas_xxx
ls -ld /lv/nas*/

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?