Answers to: what is RPC error program not registered error while mounting NFS on boot can't mount at boothttp://linuxexchange.org/questions/304/what-is-rpc-error-program-not-registered-error-while-mounting-nfs-on-boot-cant-mount-at-boot<p>what is RPC error program not registered error when mounting NFS on boot can't mount at boot using FSTAB</p> <p>I added fstab entry as</p> <p>host.foo.com:/nfsshare /pub nfs defaults 0 0</p> <p>at the boot time it report RPC failed program not registered. what i do?</p>enTue, 21 Feb 2012 05:55:33 -0500Answer by jasonhttp://linuxexchange.org/questions/304/what-is-rpc-error-program-not-registered-error-while-mounting-nfs-on-boot-cant-mount-at-boot/2786<p>Make sure you have the right IP addresss inside <strong>/etc/hosts.allow</strong> , otherwise you will get this error when trying to access your NFS folder from another computer... </p> <p><strong>Example:</strong></p> <p>portmap mountd nfsd statd lockd rquotad : 192.168.1.*</p>jasonTue, 21 Feb 2012 05:55:33 -0500http://linuxexchange.org/questions/304/what-is-rpc-error-program-not-registered-error-while-mounting-nfs-on-boot-cant-mount-at-boot/2786Comment by rfelsburg on Sanil's questionhttp://linuxexchange.org/questions/304/what-is-rpc-error-program-not-registered-error-while-mounting-nfs-on-boot-cant-mount-at-boot#2430<p>Please accept an answer so the question/answer can be finished. Or provide more details so we can help.</p>rfelsburgWed, 20 Apr 2011 13:57:12 -0400http://linuxexchange.org/questions/304/what-is-rpc-error-program-not-registered-error-while-mounting-nfs-on-boot-cant-mount-at-boot#2430Answer by codebunnyhttp://linuxexchange.org/questions/304/what-is-rpc-error-program-not-registered-error-while-mounting-nfs-on-boot-cant-mount-at-boot/317<p>For NFS to run, you need to have the RPC daemons running. The two required daemons are rpc.portmap and rpc.statd. These are normally started at bootup time. If these are not running, you will not be able to mount NFS partitions. So you need to start them.</p> <p>In Slackware, as root, you would go to /etc/rc.d and make rc.rpc executable and then</p> <pre><code>/etc/rc.d/rc.rpc start </code></pre> <p>In other distributions, you would look in your startup services, and turn on the RPC daemons, and then start them. Once your system has the RPC daemons running, then you will be about to mount your NFS partition.</p>codebunnyWed, 05 May 2010 21:08:05 -0400http://linuxexchange.org/questions/304/what-is-rpc-error-program-not-registered-error-while-mounting-nfs-on-boot-cant-mount-at-boot/317