Difference between revisions of "NFS server (HPA) for config files"

From Lsdf
(Configuration on the HPSS nodes)
(Configuration on the HPSS nodes)
Line 33: Line 33:
 
<b>/etc/auto.master</b>
 
<b>/etc/auto.master</b>
   
/hppsconfig /etc/auto.hpssconfig
+
/hppsadmin /etc/auto.hpssadmin
   
 
<b>/etc/auto.hpssconfig</b>
 
<b>/etc/auto.hpssconfig</b>
   
config -fstype=nfs 172.18.95.59:/export/HPSS
+
backup -fstype=nfs hpa:/export/HPSS/backup
  +
config -fstype=nfs hpa:/export/HPSS/config
  +
software -fstype=nfs hpa:/export/HPSS/software
   
 
Starting autofs - <b>/etc/init.d/autofs start</b>
 
Starting autofs - <b>/etc/init.d/autofs start</b>

Revision as of 14:55, 5 February 2016

The directory on the HPSS servers for the configuration files is: /hpssconfig/config
With changing to this directory the automount will be active.
The mount will be unmounted after 3 minutes without access.

Configuration on the HPA server (172.18.95.59)

  • the directory for the config files was created: /export/HPSS
  • The file /etc/exports was modified:
      /export/HPSS 172.18.95.0/22(rw,no_subtree_check,sync,wdelay)
  • nfs-utils was updated with yum
  • nfs was startetd with systemctl start nfs.service

Configuration on the HPSS nodes

  • autofs was installed
   yum install autofs

alternative

   cd /tmp 
wget ftp://mirror.switch.ch/pool/4/mirror/scientificlinux/6.7/x86_64/os/Packages/hesiod-3.1.0-19.el6.x86_64.rpm wget ftp://mirror.switch.ch/pool/4/mirror/scientificlinux/6.4/x86_64/os/Packages/autofs-5.0.5-73.el6.x86_64.rpm
rpm -ivh hesiod-3.1.0-19.el6.x86_64.rpm rpm -ivh autofs-5.0.5-73.el6.x86_64.rpm

for the configuration the following files was changed:

/etc/auto.master

 /hppsadmin   /etc/auto.hpssadmin

/etc/auto.hpssconfig

 backup  -fstype=nfs  hpa:/export/HPSS/backup
 config  -fstype=nfs  hpa:/export/HPSS/config
 software  -fstype=nfs  hpa:/export/HPSS/software

Starting autofs - /etc/init.d/autofs start