NFS mount does not work: "Program version wrong"

I am trying to connect to my Ubuntu Server (8.04) with an NFS share. With OS X 10.6 everything worked fine, using Lion I get the following error in the log file:
04.10.11 17:45:50,295 com.apple.netauth.user.auth: mount_nfs: can't mount /home/poldi from pc-poldi onto /Volumes/poldi: Program version wrong
Seems like the NFS client on Lion and the Ubuntu server are not compatible anymore. Anyone knows a solution? A server side upgrade of 'nfs-common' and 'nfs-user-server' did not help.
Thanks.

Hey folks, I had this problem and used the nfsvers=2 workaround to fix it, which worked. I wasn't satisfied however, because NFS version 2 isn't as capable in a number of ways as NFS version 3.
What I learned is that in Snow Leopard, if a mount attempt with NFS version 3 fails, the NFS client will fall back by default to NFS version 2. In Mountain Lion (and possibly Lion, not sure), this fallback doesn't happen and you simply get an error instead. So if you're seeing this after an OS X upgrade from 10.6, then you should not assume that it is a problem on the OS X side (as I did), it may be a problem with the NFSv3 support from the servers you're accessing.
Linux Details
In my case, the root cause was a partially failed upgrade of my Linux server from Ubuntu 10.04 to 12.04. The NFS server was only partially working. If I restarted nfs-kernel-service, I saw the following in the messages log:
Dec 16 21:11:07 myth kernel: [   28.495314] svc: failed to register lockdv1 RPC service (errno 97).
Dec 16 21:11:07 myth kernel: [   28.496034] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
Dec 16 21:11:07 myth kernel: [   28.528396] NFSD: starting 90-second grace period
Also, if you ran "rpcinfo -p" against the server, it was clear that the only versions advertised by mountd were 1 and 2, although the nfs and nlockmgr services were advertising version 3.
The solution in my case was to re-run the package installers for nfs-kernel-service and nfs-common. Once I did this and restarted the nfs kernel service, I was back to serving NFSv3 from my Linux box, and the original mounts (without the nfsvers=2 qualifier) that had been working under Snow Leopard were working just fine under Mountain Lion.

Similar Messages

  • Is it possible that i download an older version of firefox, mainly version 4. trend micro does not work with version 5 yet

    is it possible to download firefox version 4, because trend micro does not work with version 5 yet

    Yes you can download them at Firefox's Archive on just chose your os
    url:
    http://releases.mozilla.org/pub/mozilla.org/firefox/releases/4.0/

  • Thinkpad laptop, red "mouse" button/nub in keyboard does not work with version 4.0, Why?

    IBM and/or Lenova laptop computers have the red button/nub in the center of the keyboard that acts with "mouse" functions such as scrolling up and down pages. After downloading Version 4.0 of Firefox this feature does not work anymore. Is it locked in some settings?

    i figured it out!
    1) go to control panel
    2) click on mouse
    3) click on the UltraNav tab at the top
    4) for the TrackPoint, i have the Enable TrackPoint box checked and the "Use as pointing device with advanced features
    5) click on Settings
    6) click on settings again towards the bottom right
    7) for "Scrolling Type" click on Smooth.
    that should work!

  • HT1267 IPhone4..Model MC603C/Ser#850441XGXA4S: I have update to 5.1.1. I am not alerted to my emails unless I tap on the mail app. Then the alert/banner appears. When I start up, the alert sounds but after that it does not work. Whats wrong?

    Ever since I updating my IPhone 4 to 5.1.1. my alert/banner does not work with my mail app. Initial startup it works but after that, it does
    not work. The only way I know there is a message by tapping on the mail app and then I hear the alert and the banner shows up. Prior
    to updating, it always worked. Is there a 'bug' in the system or is there something I am missing here.

    Yeah this was my first time connecting my phone to the computer since I went to iOS 5.0 and iCloud, so I wasn't familiar with the fact that it did not automatically create a backup on iTunes during the Sync process.  Should have right-clicked on the phone device and did a manual backup.
    But still, after restoring the backup from iCloud, I don't understand why data from certain apps got hosed (anything before October 2011, which was my last iTunes backup), while other apps' data appears to be fully intact.

  • Gvfs-mount does not work in Networkmanager dispatcher

    Helo everyone
    i have changed recently from windows xp to Arch Linux+LXDE- Everything works fine except one very annoying thing.
    I have a USB HDD connected to my EasyBox803A Router which i can access from my Windows 7 Client (using the Windows Explorer) and also from my Arch Linux (using gvfs-mount). After connecting manually, using gvfs-mount smb://easybox/Dokumente, i can browse the folder, create new files etc. everything works fine.
    But now i want to connect the drives automatically if my wlan connection is up and running. And here comes the headache...
    If i am using the following in my /etc/Networkmanager/dispatcher.d/handler.sh
    #!/bin/sh
    # Verbinde Netzlaufwerke
    INTERFACE=$1 # interface über das die Verbindung aufgebaut wurde
    STATUS=$2 # Status der Verbindung
    echo $0", "$1"/"$2 > /tmp/nfs.log
    case "$STATUS" in
    up) # interface active
    ESSID=$(iwconfig wlan0 | grep ESSID | cut -d ":" -f 2 | sed -e 's/"//g$
    echo "ESSID: "$ESSID >> /tmp/nfs.log
    PERS=$(whoami)
    echo "User: "$PERS >> /tmp/nfs.log
    gvfs-mount smb://easybox/Dokumente>> /tmp/nfs.log
    PERS=$(whoami)
    echo "User2: "$PERS >> /tmp/nfs.log
    'down') # interface ist down
    gvfs-mount -s smb://easybox/Dokumente
    esac
    i get the following in my /tmp/nfs.log
    /etc/NetworkManager/dispatcher.d/30_netfs.sh, wlan0/up
    ESSID: ASAK_HEIM
    User: root
    User2: root
    so it doesn't prompt something like "cannot connect drive" or anything else. But now i have no entry in my ~/.gvfs directory.
    I thought this is because gvfs-mount is run as root and so i changed the call of gvfs-mount to
    su sakphul -c gvfs-mount smb://easybox/Dokumente
    but this also didn't work. It still won't connect my drives.
    Since 3 days i have tried even more things which all didn't work....and i now really don't know why. Does anyone know why it won't run?
    I can also connect via smbclient //easybox/Dokumente -U% to my easybox and browse the folder. So it is really working...but not if it is run from the dispatcher...
    P.S. mount -t cifs won't work because it looks like the easyboox does not support cif
    Last edited by Sakphul (2012-02-07 22:28:42)

    Hey folks, I had this problem and used the nfsvers=2 workaround to fix it, which worked. I wasn't satisfied however, because NFS version 2 isn't as capable in a number of ways as NFS version 3.
    What I learned is that in Snow Leopard, if a mount attempt with NFS version 3 fails, the NFS client will fall back by default to NFS version 2. In Mountain Lion (and possibly Lion, not sure), this fallback doesn't happen and you simply get an error instead. So if you're seeing this after an OS X upgrade from 10.6, then you should not assume that it is a problem on the OS X side (as I did), it may be a problem with the NFSv3 support from the servers you're accessing.
    Linux Details
    In my case, the root cause was a partially failed upgrade of my Linux server from Ubuntu 10.04 to 12.04. The NFS server was only partially working. If I restarted nfs-kernel-service, I saw the following in the messages log:
    Dec 16 21:11:07 myth kernel: [   28.495314] svc: failed to register lockdv1 RPC service (errno 97).
    Dec 16 21:11:07 myth kernel: [   28.496034] NFSD: Using /var/lib/nfs/v4recovery as the NFSv4 state recovery directory
    Dec 16 21:11:07 myth kernel: [   28.528396] NFSD: starting 90-second grace period
    Also, if you ran "rpcinfo -p" against the server, it was clear that the only versions advertised by mountd were 1 and 2, although the nfs and nlockmgr services were advertising version 3.
    The solution in my case was to re-run the package installers for nfs-kernel-service and nfs-common. Once I did this and restarted the nfs kernel service, I was back to serving NFSv3 from my Linux box, and the original mounts (without the nfsvers=2 qualifier) that had been working under Snow Leopard were working just fine under Mountain Lion.

  • Saving of variant Dynpro of the screen - does not work in version 6

    In the specified theme [/people/alvaro.tejadagalindo/blog/2007/05/22/save-a-variant-from-a-dynpro-screen|/people/alvaro.tejadagalindo/blog/2007/05/22/save-a-variant-from-a-dynpro-screen] examples on use of the module for preservation dynpro the screen are resulted. But the given action passes for programs in version 4,5
    In version 6 work FM successfully interrupts with an error "the Screen xxxx does not contain objects".
    Who or knows why генерирется such error in other version? And how it to bypass? Or can be there will be another FM which correctly to work in version 6?
    Or... It is impossible basically?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Color picker does not work, " program error when I click, photoshop cc

    I am user of photoshiop cc and it worked fine until several days ago but suddenly it shows " program error " when I click color picker, and I can not use changing color. Please help me to resolve this issue.

    There was a bug with photoshop CC concerning the color picker and its swatches. Make sure you have the latest version and then if it still exists, reset your tools in the upper left hand corner which would be the very first icon in the top tool bar. That should fix it. If not let us know and maybe someone can think of something else.

  • "Move To New Window" Does Not Work in Version 5. It opens a new window, but it's blank, and the tab I wanted as the new window stays where it is. Is this a bug?

    Right mouse-clicking on a tab and selecting "Move To New Window" should open the contents of the tab in a new window, and then close the original tab on the original instance of FF. But in Version 5, that action simply spawns a new window that is totally blank, and the tab I wanted opened in a new window stays attached to the original window.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • Firefox s3 organizer does not work with version 4

    i recently upgraded to Firefox 4.0 I and wish that i hadn't....my S3 organizer for Amazon no longer works....I tried to reinstall anew and all it does it go around in circles. It will download then I restart Firefox and then it just reopens the download page......When I check in the tool options, the plug-in is not there....
    I really need S3 Organizer to work as i am getting ready to launch a campaign soon....
    Any help would be appreciated
    Thanks

    i figured it out!
    1) go to control panel
    2) click on mouse
    3) click on the UltraNav tab at the top
    4) for the TrackPoint, i have the Enable TrackPoint box checked and the "Use as pointing device with advanced features
    5) click on Settings
    6) click on settings again towards the bottom right
    7) for "Scrolling Type" click on Smooth.
    that should work!

  • JDeveloper 11g Using EJB, JPA AND ADF DOES NOT WORK IN VERSION 11.1.1.1.0

    Hi all,
    I'm facing serious problems after the migration from jdev 11.1.1.0 version to new release 11.1.1.1.0, as i published with a sample at
    Problems with create new record o in JDev 11 R1
    is this a big bug in the ide? Should i return to previous version?
    Thanks in advance
    Enrique

    Hi,
    my best recommendation is to work with customer supports in this testcase.
    Frank

  • Ipod 4g does not work with gps mount anymore, with iOS lower than 6.0.1 it worked

    After updating my iPod to iOS 6.0.1 and 6.1 my gps mount does not work anymore. It used to work perfectly.
    Have checked with a TomTom app if satelites are connected and it has good connection but navigation app does not work.
    All advices given in the community did not help so far.

    Have yo look here:
    TS1702 magellan External gps not...: Apple Support Communities
    after updating to iOS 6 gps signals are...: Apple Support Communities
    Otherwise I know of no solution.
    For the future just saying "All advices given in the community did not help so far." provides us with no information as to what that is.

  • Manage On Demand Does Not Work on the Web Site

    Trying to Manage on Demand on the web site.  Page does not load correctly.  IE Crashes.  Firefox just does not work.  Something wrong with the web site.

    I've had same problem for 3 months.They've been to the house twice about this issue and still no fix.They won't pay attention until enough of us cancel and that is exactly what I plan to do

  • I want to run a streaming quotes program on Scottrade. They tell me that their product does not work if I have more than one Java application on my Mac. How do I delete the older versions? Thanks

    I want to run a streaming quotes program on Scottrade. They tell me that their product does not work if I have more than one Java application on my Mac. How do I delete the older versions? Thanks

    I have the same problem, they never told me that, just that the newest version of Java "locks" up streaming quotes.

  • I have a license of the PSE 11, recently expired, to find out what was going on I have PSE 11 uninstalled. Reinstall does not work because the license has expired. Can I purchase the upgrade version of PSE 12 now or should I buy a full program?

    I have a license of the PARTY 11, recently expired, to find out what was going on I have PSE 11 uninstalled. Reinstall does not work because the license has expired. Can I purchase the upgrade version of PSE 12 now or should I buy a full program?

    Ok thank you, I better can wait then.
    Greetings, Evert Annen
    Op 8 sep. 2014 19:45 schreef "Peru Bob" <[email protected]>:
        I have a license of the PSE 11, recently expired, to find out what
    was going on I have PSE 11 uninstalled. Reinstall does not work because the
    license has expired. Can I purchase the upgrade version of PSE 12 now or
    should I buy a full program?  created by Peru Bob
    <https://forums.adobe.com/people/Peru+Bob> in Photoshop Elements - View
    the full discussion <https://forums.adobe.com/message/6711348#6711348>

  • I would like to use my work exchange email on my macbook pro.  But I cannot insult it.  I have not problem as on my iPhone or iPad.  My work IT person does not know what is wrong.

    I would like to use my work exchange email on my macbook pro.  But I cannot install it.  I have no problem my work email on my iPhone or iPad.  My work IT person does not know what is wrong.  Why I try to set up the email I get the message that it cannot connect to this server. 

    Try going into System Prefereces then Mail, Cintacts & Calendars then click on the Microsoft Exchange link on the right. Type in your email address and password and allow it to set it up automatically.
    Make sure your Mac is updated to the newest version of Mail.
    If that still fails then I suggest you switch email clients. I don't care for the built in mail program. IMHO it is very buggy.

Maybe you are looking for

  • Portal Propagation Rel 16th April Error

    Hi there, We are using the WLP Portal Propagation Tool to move the data from staging to production. But some time we are getting this error No roles propagated: roles set size: 0 'insertNew' boolean: true 'updateExisting' boolean: true And also we ne

  • Random NullPointerException on UIShell

    Hi. I'm using UIShell , and sometimes it appens the following error: java.lang.NullPointerException      at oracle.jbo.server.ViewRowSetIteratorImpl.scrollRange(ViewRowSetIteratorImpl.java:1232)      at oracle.jbo.server.ViewRowSetIteratorImpl.setRan

  • Hard drive install question

    I want to install a second hard drive in my HP dv7-6c95dx. the main drive that is in it now is a, 750GB 5400RPM hard drive with HP ProtectSmart Hard Drive Protection I want to put in a second drive (the one above) for a total of 1.5TB of hard drive s

  • RFWT0010 error

    Hi Experts, I'm updating Customer line item and master data with witholdin tax information. when i go for program RFWT0010 with customer information, its working on quality server but same is not working in production server, what would be the proble

  • Connect JUST Outlook Calendar to Sun Java System Calendar Server

    Is it possible to connect JUST the Outlook Calendar to a Sun Java System Calendar Server, using Sun Java System Connector for Microsoft Outlook 6.0? Leaving all other outlook functionality hooked up to exchange? Hal.