Mounting NFS (CentOS5.6 x64bit) issue on CentOS6.4 x64bit


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Mounting NFS (CentOS5.6 x64bit) issue on CentOS6.4 x64bit
# 1  
Old 10-01-2013
Mounting NFS (CentOS5.6 x64bit) issue on CentOS6.4 x64bit

Hello,

We have NFS server setup on CentOS5.6 x64bit with nfs 3 version.

Now we have setup a another server CentOS6.4 x64 bit and going to mount nfs location (Which setup on CentOS5.6 x64bit). Now when i am mounting this location on CentOS6.4 x63 bit, below error is displaying.

PHP Code:
[root@supportrepo ~]# mount -o vers=3 192.xx.xx.xxx:/storage  /nfs/
mountwrong fs typebad optionbad superblock on 192.xx.xx.xxx:/storage,
       
missing codepage or helper program, or other error
       
(for several filesystems (e.gnfscifsyou might
       need a 
/sbin/mount.<typehelper program)
       
In some cases useful info is found in syslog - try
       
dmesg tail  or so 
I also tried other switches also but same issue is occuring

PHP Code:
[root@supportrepo ~]# mount -t nfs4 192.16.17.130:/storage /nfs/
mountwrong fs typebad optionbad superblock on 192.16.17.130:/storage,
       
missing codepage or helper program, or other error
       
(for several filesystems (e.gnfscifsyou might
       need a 
/sbin/mount.<typehelper program)
       
In some cases useful info is found in syslog - try
       
dmesg tail  or so 
# 2  
Old 10-01-2013
2nd code contains full local ip, might want to remove too.

I use this line in my script:
Code:
sudo mount -t cifs -o _netdev,rw,credential="$conf" "//$nas_ip/$share" "$MOUNTPOINT"

Main diffrence i see are the options, which should be optional, and the leading // for the NAS.

In my case i had to install "cifs-utils" first, yum handles the arch selection.

Hope this helps.

Last edited by sea; 10-01-2013 at 10:32 PM..
# 3  
Old 10-03-2013
On the NFS server, what is the output of:
Code:
#showmount -e

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Mounting NFS

Hi, I am having some issues mounting NFS files. for some reason the mount -F nfs is not being recognized.. bash-3.2# mount -F nfs -o rw 192.168.245.129:/mnt/nfs1/ /mnt UX:vxfs mount: ERROR: V-3-20135: FSType nfs not recognized UX:vxfs mount: INFO: V-3-20147: Usage: mount {special |... (5 Replies)
Discussion started by: br1an
5 Replies

2. Red Hat

NFS mounting issue

The server ip is 10.2.2.24. I have installed nfs-utils package the i have edited /etc/exports i have added the following line /home 10.2.2.0/24(rw,sync,no_root_squash,no_all_squash) i have saved, i have started the nfs service, then i am trying to mount nfs sharing from client machine using... (5 Replies)
Discussion started by: ainstin
5 Replies

3. Red Hat

NFS mounting from client pc

The server ip is 10.2.2.24. I have installed nfs-utils package the i have edited /etc/exports i have added the following line /home 10.2.2.0/24(rw,sync,no_root_squash,no_all_squash) i have saved, i have started the nfs service, then i am trying to mount nfs sharing from client machine using... (1 Reply)
Discussion started by: ainstin
1 Replies

4. Red Hat

NFS not mounting using ipaddress of client

Dear All, I have an NFS Server and client. I am trying to include the ipaddress of the client in servers exports file /etc/exports. In this case , I could not mount , saying permission denied. But when I give * symbol in the place of ipaddress ( Global , any IPS ) it is mounting. ... (1 Reply)
Discussion started by: jegaraman
1 Replies

5. UNIX for Dummies Questions & Answers

Mounting NFS filesystem

Hi All, I need to mount an nfs filesystem as below. xxx.xx.xx.xxx:/media/nss/Rocky Catherine/logs For the above as there is space in between the name, hoping it will not mount, if i give it with double quotes as below will it work? mount "xxx.xx.xx.xxx:/media/nss/Rocky... (2 Replies)
Discussion started by: Rockyc3400
2 Replies

6. 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

7. 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

8. 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

9. HP-UX

Mounting of unix NFS to windows XP

is it possible? i will only config on the windows side. is there a third party software to help me accomplish this? tnx (3 Replies)
Discussion started by: Amaru
3 Replies

10. Linux

NFS not mounting during kickstart

Hi, Re-building linux server from a kickstart image on cdrom. We have a kickstart server. the cdrom contacins the kickstart ks.cfg file and does a NFS mount from an IP to load the iso images and other files needed during the kickstart (re-build) Now for some reason the kickstart stops and... (2 Replies)
Discussion started by: Andrek
2 Replies
Login or Register to Ask a Question