Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languageactionscript3
mkdir -p /home/share/jira
chmod 755 /home/share/jira
chown -R twoseed:twoseed /home/share/jira

/etc/exports 파일에 추가

vi /etc/exports

Code Block
languageactionscript3
/home/share/jira 192.168.0.*(rw, no_root_squash, sync)
# [/경로] [허용할 IP주소. *은 모두 허용](옵션)

...

Code Block
languageactionscript3
mkdir /data/jira
chmod 755 /data/jira
chown -R twoseed:twoseed /data/jira

NFS 공유 폴더 마운트

Code Block
languageactionscript3
mount -t nfs 192.168.0.2:/home/share/jira /data/jira

...