NFS mount on Solaris 8


 
Thread Tools Search this Thread
Operating Systems Solaris NFS mount on Solaris 8
# 1  
Old 05-06-2011
NFS mount on Solaris 8

Hello Admins;

I am working around on an issue of NFS mount on Solaris 8 server.
I am trying to mount a remote directory (which is on vlan 146 -solaris 10 server ) on solaris 8 client which is on vlan 10. The firewall rules have been opened, ports are opened.

But when I do
code: mount -F nfs x.x.146.x:/restore /nfs_test
I am getting error as below:

nfs mount: x.x.146.x: : RPC: Timed out
nfs mount: retrying: /nfs_test

I can telnet to that nfs server.

The same thing works good with solaris 10 client i.e. I can mount directory on sol 10 client. Not sure what needs to be done on solaris 8...

Let me know if you need further info.

Thanks
# 2  
Old 05-06-2011
What does
Code:
 rpcinfo -p

show on both boxes

NFS uses ports: 111 and 2049, plus ports 4000-4002 should be open. You can use telnet to verify open ports across firewalls in both directions.

IMO it is a firewall thing. We have 8, 9, and 10 with NFS mounts to each other. No issues setting them up either.
# 3  
Old 05-06-2011
Below is from Sol :8 client:

Code:
  rpcinfo -p

program vers proto   port  service
    100000    4   tcp    111  rpcbind
    100000    3   tcp    111  rpcbind
    100000    2   tcp    111  rpcbind
    100000    4   udp    111  rpcbind
    100000    3   udp    111  rpcbind
    100000    2   udp    111  rpcbind
    300598    1   udp  32786
    300598    1   tcp  32782
 805306368    1   udp  32786
 805306368    1   tcp  32782
    100249    1   udp  32787
    100249    1   tcp  32783
    100232   10   udp  48487  sadmind
    100011    1   udp  48488  rquotad
    100002    2   udp  48489  rusersd
    100002    3   udp  48489  rusersd
    100002    2   tcp  62467  rusersd
    100002    3   tcp  62467  rusersd
    100012    1   udp  48490  sprayd
    100008    1   udp  48491  walld
    100001    2   udp  48492  rstatd
    100001    3   udp  48492  rstatd
    100001    4   udp  48492  rstatd
    100083    1   tcp  62468
    100221    1   tcp  62469
    100068    2   udp  48493
    100068    3   udp  48493
    100068    4   udp  48493
    100068    5   udp  48493
    300326    4   tcp  62470
    100229    1   tcp  62471  metad
    100230    1   tcp  62472  metamhd
    100021    1   udp   4045  nlockmgr
    100021    2   udp   4045  nlockmgr
    100021    3   udp   4045  nlockmgr
    100021    4   udp   4045  nlockmgr
    100024    1   udp  48616  status
    100024    1   tcp  64271  status
    100133    1   udp  48616
    100133    1   tcp  64271
    100021    1   tcp   4045  nlockmgr
    100021    2   tcp   4045  nlockmgr
    100021    3   tcp   4045  nlockmgr
    100021    4   tcp   4045  nlockmgr

Below is from Sol-10 NFS server:

Code:
: rpcinfo -p

program vers proto   port  service
    100000    4   tcp    111  rpcbind
    100000    3   tcp    111  rpcbind
    100000    2   tcp    111  rpcbind
    100000    4   udp    111  rpcbind
    100000    3   udp    111  rpcbind
    100000    2   udp    111  rpcbind
    100001    2   udp  56686  rstatd
    100001    3   udp  56686  rstatd
    100001    4   udp  56686  rstatd
    100068    2   udp  56687
    100068    3   udp  56687
    100068    4   udp  56687
    100068    5   udp  56687
    100083    1   tcp  59817
    100026    1   udp  56688  bootparam
    100026    1   tcp  59818  bootparam
    100249    1   udp  56692
    100249    1   tcp  59819
    100021    1   udp   4045  nlockmgr
    100021    2   udp   4045  nlockmgr
    100021    3   udp   4045  nlockmgr
    100021    4   udp   4045  nlockmgr
    100024    1   udp  56698  status
    100024    1   tcp  59820  status
    100133    1   udp  56698
    100133    1   tcp  59820
    100021    1   tcp   4045  nlockmgr
    100021    2   tcp   4045  nlockmgr
    100021    3   tcp   4045  nlockmgr
    100021    4   tcp   4045  nlockmgr
    100011    1   udp  56702  rquotad
    100005    1   udp  62545  mountd
    100005    1   tcp  61323  mountd
    100005    2   udp  62545  mountd
    100005    2   tcp  61323  mountd
    100005    3   udp  62545  mountd
    100005    3   tcp  61323  mountd
    100003    2   udp   2049  nfs
    100003    3   udp   2049  nfs
    100227    2   udp   2049  nfs_acl
    100227    3   udp   2049  nfs_acl
    100003    2   tcp   2049  nfs
    100003    3   tcp   2049  nfs
    100003    4   tcp   2049  nfs
    100227    2   tcp   2049  nfs_acl
    100227    3   tcp   2049  nfs_acl

---------- Post updated at 10:33 AM ---------- Previous update was at 10:30 AM ----------

Yes I can telnet to each other...I have added 4001 in /etc/services for telnet.

---------- Post updated at 01:41 PM ---------- Previous update was at 10:33 AM ----------

Any suggestions guys...

Last edited by vbe; 05-12-2011 at 05:16 AM.. Reason: code tags please
# 4  
Old 05-12-2011
Will try and updateSmilie
# 5  
Old 05-12-2011
Ok...Thanks .....
# 6  
Old 05-14-2011
Hi,
I had a similar problem before, it was a compatibility issue between Solaris 10 NFS client (Vers 4) with Solaris 8 NFS server (vers 3). Try to mount the nfs share using the flag 'nfsvers=3'
This User Gave Thanks to corrupted inode For This Post:
# 7  
Old 05-16-2011
Hi....

It didn't work......any more suggestion...



Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

NFS write error on host xyz: Stale NFS file handle - Solaris 10

Oct 13 12:19:15 xyz nfs: NFS write error on host xyz: Stale NFS file handle. Oct 13 12:19:15 xyz nfs: (file handle: 68000000 1bc5492e 20000000 377c5e 1ce9395c 720a6203 40000000 bdfb0400) Oct 13 12:19:15 xyz nfs: NFS write error on host zyz: Stale NFS file handle. Oct 13 12:19:15 xyz nfs: ... (5 Replies)
Discussion started by: psychocandy
5 Replies

2. Solaris

Solaris 10 NFS client cannot mount a share from a Windows server

I have a Solaris 10 server, I'm trying to mount a share from a Windows nfs server. If I add this entry (tst-walnut:/test_sap_nfs - /majid nfs - yes rw,soft) to my /etc/vfstab, then I can mount, but when I create a file by root:root, the file owner changes to... (1 Reply)
Discussion started by: Hiroshi
1 Replies

3. Shell Programming and Scripting

Mount NFS Share On NFS Client via bash script.

I need a help of good people with effective bash script to mount nfs shared, By the way I did the searches, since i haven't found that someone wrote a script like this in the past, I'm sure it will serve more people. The scenario as follow: An NFS Client with Daily CRON , running bash script... (4 Replies)
Discussion started by: Brian.t
4 Replies

4. Solaris

NFS mount from SCO to Solaris

Hi, I'm using Solaris 10 and OS/2 warp. There is a share on OS/2 warp which I'm trying to mount on Solaris. I get the following error message $mount -F nfs -o rw 10.5.170.16:D:\audio /AudioSCRAFT nfs mount: 10.5.170.16:D:audio: no applicable versions of NFS supportedAny idea how I mount the... (5 Replies)
Discussion started by: maverick_here
5 Replies

5. Solaris

Solaris 9 as a nfs client -- centos as a nfs server.

Hello, I have a centos as nfs server, its name is centos_A. After I finish the setup of the nfs server, the other linux can access this nfs server immediately via /net/centos_A/* But, My solaris 9 can not access /net/centos_A/* immediately. I have to leave /net/centos_A, and wait for about... (1 Reply)
Discussion started by: bruceharbin
1 Replies

6. IP Networking

Can't see home folder on one NFS mount but can in another mount on another share

Hello, I have a few Ubuntu 9.10 laptops I'm trying to learn NFS sharing with. I am just experimenting on this right now, so no harsh words about the security of what I'm playing with, please ;) Below are the configs /etc/exports on host /home/woodnt/Homeschool... (2 Replies)
Discussion started by: Narnie
2 Replies

7. Solaris

how to mount Windows NFS share on solaris

Hi, How can i mount an NFS share on a solaris machine a filesystem ? I have enabled nfs on a windows server and the shares has given read/write access to it to all the users. I would like to mount it on around 10 different solaris boxes with different versions of solaris. Thanks in advance. (2 Replies)
Discussion started by: uxadmin007
2 Replies

8. UNIX for Dummies Questions & Answers

backup to NFS mount Redhat-Solaris

Hi guys, I have a redhat laptop and a sun solaris 8 server networked together I created an nfs share on the sun server and backed up an image of the Redhat laptop to it. The Hard disk size of the laptop is 40Gb but I have about 38Gb free space on the sun server. So I compressed the image... (9 Replies)
Discussion started by: Stin
9 Replies

9. Solaris

how to mount NFS drive from Window XP to Solaris 10?

Is there a free tool that will allow me to mount an NFS network drive from a Window XP computer onto a Solaris 10 x86 system? So when this is done, I would have a mapped network drive on my Windows XP system, say network drive N, that is mounted onto the directory /export/home/data on my Solaris... (2 Replies)
Discussion started by: serendipity1276
2 Replies

10. UNIX for Dummies Questions & Answers

mount -o llock -F nfs vs mount -F nfs

Hi, We encountered NFS issue (solaris) especially running on Oracle application. Problem such as forms hang when close button is click, concurrent job shows running status all time. Understand we need to use mount -o llock -F nfs instead of mount -F nfs to eliminate? this problem.. Can... (1 Reply)
Discussion started by: KhawHL
1 Replies
Login or Register to Ask a Question