2021年10月27日水曜日

NFS for ubuntu

環境:
MacOS:11.6
Raspberry pi(Ubuntu)


<ubuntu側>


手順:

1)nfsのインストールを行う。

apt -y install nfs-kernel-server

  

2)以下、ドメイン名を記載します。

vi /etc/idmapd.conf









3)nfs用のマウントディレクトリを作成

mkdir /home/nfsshare 

chmod 777 /home/nfsshare



4)nfsのマウント対象のパス(権限)を記載

vi /etc/exports


ポイント:

以下の権限の付与が不十分だと、volumeの作成ができないので注意
















5)サービスの再起動を行う。

sudo systemctl restart nfs-server rpcbind

sudo systemctl enable nfs-server rpcbind



オプション:

クライアント版を導入(k8s node:全台対象)

sudo apt-get install nfs-common




<mac側>

手順:

1)ボリューム作成

sudo mkdir /Volumes/nfs


2)マウントを行う

sudo mount -o vers=4,resvport -t nfs 192.168.13.30:/home/nfsshare /Volumes/nfs



無事、マウント完了。



0 件のコメント:

コメントを投稿

php log(ECS ログ出力)

# PHPエラーログの設定 ENV PHP_INI_DIR /usr/local/etc/php RUN { \ echo 'log_errors = On' ; \ echo 'error_log = /proc/self/...