----- Original Message ----- From: "Sathish S. Vadhiyar" <vss@xxxxxxxxxxxxxxxxxx> To: <fedora-list@xxxxxxxxxx> Sent: Sunday, August 15, 2004 8:32 AM Subject: HELP: NFS on fedora core 2 > > Hi, > > I have a NFS server by the name garl-intel1 (192.168.252.1). It has the > following in /etc/exports: > /garl/garl-intel1/local 192.168.252.*(ro) > > I rebooted garl-intel1 to be sure. > > Now I have a NFS client, garl-intel2 (192.168.252.1) whose /etc/fstab > reads: > garl-intel1:/garl/garl-intel1/local /garl/garl-intel1/local nfs ro,defaults > > Iam not able to mount the file from garl-intel2 > > [root@garl-intel2 ~]# mount garl-intel1:/garl/garl-intel1/local /garl/garl-intel1/local > mount to NFS server 'garl-intel1' failed. > [root@garl-intel2 ~]# > > Both are running FC 2. Am I missing something here? Help will be greatly > appreciated since Iam trying to meet some deadlines: > > Thanks, > Sathish Are portmap, nfslock and nfs on on garl-intel1? Issue these commands on garl-intel1: for i in portmap nfslock nfs; do chkconfig $i on; service $i restart Next, are portmap and nfslock on on garl-intel2? Issue these commends on garl-intel2: for i in portmap nfslock; do chkconfig $i on; service $i restart Hope this helps! Thomsa