Cluster der kan alt/Configure NFS server, Apt cacher and SSH auto login

From Teknologisk videncenter
< Cluster der kan alt
Revision as of 13:15, 6 November 2013 by Thni (talk | contribs) (NFS Clienter)
Jump to: navigation, search

NFS Server

Installer NFS Server

apt-get install nfs-kernel-server -y

Edit the exports file

nano /etc/exports

Add this line at the bottom

/home/      10.0.0.0/24(rw,no_root_squash,no_subtree_check,async)

Export the new share

exportfs

Restart the NFS server service

service nfs-kernel-server restart

Enter the idmapd.conf file

nano /etc/idmapd.conf

Change the domain to "Cluster"

Domain = Cluster

Restart the idmapd service

service idmapd restart

Apt-Cacher

Apt-cacher

Indtast apt-getinstall apt-cacher.

Ændre i /etc/apt-cacher/apt-cacher.conf

path_map = ubuntu de.archive.ubuntu.com/ubuntu; ubuntu-updates de.archive.ubuntu.com/ubuntu ; ubuntu-security security.ubuntu.com/ubuntu
allowed_hosts=*

Ændre i /etc/default/apt-cacher også:

AUTOSTART=1

Og genstart apt-cacher:

/etc/init.d/apt-cacher restart