Mounting 2012R2 NFS Share on Solaris 10


 
Thread Tools Search this Thread
Operating Systems Solaris Mounting 2012R2 NFS Share on Solaris 10
# 1  
Old 05-13-2015
Reference Mounting 2012R2 NFS Share on Solaris 10

Hi all, new here.

I'm attempting to mount an NFS share I've created on a 2012r2 esx VM on my solaris 10 vm, I'm using the following command:

Code:
mount 2012box:/sharename /mnt

and I get the following result:

Code:
nfs mount: mount: /mnt: Operation not supported

Both vms can ping one another by IP and name, and as far as I can tell the network is clear between them.
The settings for the NFS share are as follows:

Remote path: 2012box:/sharename
Authentication: No server authentication (AUTH_SYS)
Enable unmapped user access
Allow anonymous access
Share permissions: All Machines-Read/Write-Root acess allowed-ANSI
NTFS permissions: Anonymous logon and Everyone have full control and allow

Any help is extremly appreciated!

UPDATE:
I've run
Code:
snoop

on my server as I send the mount request and noticed there was a
Code:
NFS4ERR_MINOR_VERS_MISMATCH

, this seems to be coming from the 2012R2 box?

Last edited by Meshuggener; 05-14-2015 at 12:23 AM..
# 2  
Old 05-14-2015
Let's ensure that the NFS handle is being published
What says:

Code:
# showmount <ip address>

Are you sure that there are no userid/passwd credentials required?

The error implies that there may be a NFS version mismatch.

Try specifying the NFS version (2, 3 or 4) on the mount command. Try each of them.

Last edited by hicksd8; 05-14-2015 at 07:49 AM.. Reason: Insert code tag
# 3  
Old 05-14-2015
Code:
showmount -e server

--
Try to force a version 3 mount; see
Code:
man mount_nfs

# 4  
Old 05-14-2015
The share looks to be available

Code:
 
# showmount -e
export list for x.x.x.x:
/sharename (everyone)

Forcing to mount on a lower nfs version now comes up with:

Code:
 
# mount 2012box:/sharename /mnt
nfs mount: 2012box: : RPC: Program not registered
nfs mount: retrying: /mnt

And it gets stuck like that, snoops shows this happening over and over while it's stuck:

Code:
 
solaris10vm -> 2012box.fqdn.com PORTMAP C GETPORT prog=100005 (MOUNT) vers=3 proto=UDP
 
2012box.fqdn.com -> solaris10vm PORTMAP R GETPORT port=0

And due to flooding nobody else will be coming in today...

---------- Post updated at 09:49 AM ---------- Previous update was at 09:37 AM ----------

Haha! Fixed!

On the 2012box under server manager > tools > services for NFS > server for NFS > properties I changed the transport protocol to UDP.

So it was a combination of the the version mismatch between Solaris 10's NFS 4 and 2012R2's NFS 4.1 and the wrong Transport Protocol (by default TCP+UDP)! Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

RHEL NFS share on Solaris 11.3 vers=4

NFS server: RHEL:6 /nfsdb 192.168.8.10/28(rw,sync,no_root_squash) 192.168.7.10/28(rw,sync,no_root_squash) Client: Solaris 11.3 vfstab entry : 192.168.8.9:/nfsdbarch - /archive_data nfs - yes rw,soft,vers=4 # ls -ld /archive_data drwxr-xr-x 4 root root... (3 Replies)
Discussion started by: Shirishlnx
3 Replies

2. Solaris

Solaris 10 NFS Share Issue

Hello all, I am having an issue with an NFS share I have created between two Solaris 10 boxes. I want the share to have read/write permissions, but for some reason it is coming up as read-only on the client side mount despite "rw" being specified in the mount options. Here is what I have... (6 Replies)
Discussion started by: fallersaur
6 Replies

3. Solaris

Help mounting nfs on boot on Solaris 11

Hello, I am looking for some assistance in mounting an nfs drive on boot, on a Solaris 11 machine. On my Solaris 9/10 machines, I have an entry for my nfs mount in /etc/vfstab, however when I add the same entry to my vfstab on Solaris 11, the drive will not mount on boot. After booting up, I... (5 Replies)
Discussion started by: bstring
5 Replies

4. UNIX for Advanced & Expert Users

NFS : Invalid argument (Remote share mounting issue)

Hi Guru's, I am unable to mount NFS share on unix system (DG/UX) which is nfs client. Error: mount: /nfsshare: Invalid argument mount: giving up on: /mountpoint i tried following command mount -t nfs remotehost:/nfsshare /mountpoint Error: (5 Replies)
Discussion started by: Justin John
5 Replies

5. Solaris

Can't access NFS Share on Solaris Server from a Linux Client

Hi, I am trying to access a NFS shared directory on Solaris 10 Server from a client which is RHEL 4 Server. On the NFS Server, in /etc/dfs/, I added following line to dfstab file. & then ran the following On the client machine, while running the mount command, I am... (0 Replies)
Discussion started by: SunilB2011
0 Replies

6. IP Networking

Problem Mounting NFS share

I have one machine "The server" ip: 192.168.1.1, it runs ubu 8.04(LTS) and - I have a folder (/shareme) that I want to share with other linux machines on my LAN. - The server runs NFS server and common and portmap and so do the other machines on my LAN. - The server has the export file with the... (2 Replies)
Discussion started by: fcron
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

Mounting an NFS share: Kickstart Postinstall

For my kickstart install I use an NFS share on another machine in order to install the packages. For the most part, all configuration required after each time I reimage is set up in the kickstart file, but this one portion is giving me issues. I'm trying to mount an NFS share in the kickstart post... (0 Replies)
Discussion started by: Colton
0 Replies

9. Solaris

problem NFS mounting onto Solaris 10

On my Solaris 10 server, I want to share out the directory /export/home/data, so in the /etc/dfs/dfstab file, I have this line: share -F nfs -o rw /export/home/data In the /etc/hosts.equiv file, I have this: + When I do a "ps -ef" command, I see that the "nfsd' daemon is started. ... (2 Replies)
Discussion started by: serendipity1276
2 Replies

10. Solaris

solaris 8 NFS mounting problem

While mounting nfs file system I get the following error . # mount -F nfs jewelex:/back2 /oback2 nfs mount: jewelex:/back2: Permission denied Following is the permission for oback2 drwxr-xr-x 2 root other 512 Apr 9 18:39 oback2 Directory permission on jewelex server is ... (4 Replies)
Discussion started by: Hitesh Shah
4 Replies
Login or Register to Ask a Question