|
Hello -
I have several web applications in production that utilize NFS mounts to share resources (usually static asset files) among web heads. In the event that an NFS mount becomes unavailable, Apache will hang requesting files that cannot be accessed...
Started by benr75 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Apache would serve its....
It wouldn't be too hard to setup a cron job that synced the NFS mount to the local file system every few minutes.
I would not directly serve from the NFS mount, but instead from your local filesystem.
|
|
I am exporting my /opt/target directory via NFS but I would like the nfs clients to be able to mount it as /target. i.e. I would like showmount -e to show /target not /opt/target. Can that be done?
Started by Jon Drnek on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Symlinking is probably best, and it'll save you from moving the export....
NFS supports this and I don't know of anyI'm pretty sure NFS does not allow for aliases.
Was to symlink /opt/target to /target and then export /target.
|
|
I have an NFS server that several clients mount. I am using the following in my /etc/exports on the server:
/content *(rw,no_root_squash)
and on the clients in my /etc/fstab I have:
content.prd.domain.tld:/content /content nfs rw,hard,intr 0 0
If the ...
Started by z0mbix on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Another is to use the automounter (autofs), and mount them on demand, although I've always suffered reliability....
This will cause the NFS shares to be mountedThe cron job solution is one way.
Recommend looking into AutoFS and the automount daemon.
|
Ask your Facebook Friends
|
Server A used to be a NFS server. Server B was mounting an export of that. Everything was fine. Then A died. Just switched off. Gone. Vanished.
However that folder is still mounted on B. I obviously can't cd into it or anything. However umount /mnt/myfolder...
Started by Rory McCann on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
Your....
A useful trick is to set up another server mounting the same export, give it the same IP address as the old server.
Mnt/myfolder
Will sort of fix the problem:
-f Force unmount (in case of an unreachable NFS system" to work.
|
|
I have a small LAN that has a couple of Linux boxes (Ubuntu 9.10) with NFS shares on them. The boxes are networked with a consumer grade Netgear router (model WGR614V9) and using wired connections.
When I first set up the NFS shares, I noticed that performance...
Started by dmcer on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Http://nfs.sourceforge.net....
It's pretty standard for scp to be quicker than NFS; there's a lot more overhead and things not looked it over.
Udp can give pretty bad results.
About the mount options : use tcp.
To do 50MB/s NFS write.
|
|
Hi, since the new 3.5.0 fw introduced functionality for specifying a DHCP Boot File and a TFTP server I've been playing around getting several different PXE boot environments up and running directly from my 259. Last night after several hours and several...
Started by KillerkelvUK on
, 13 posts
by 5 people.
Answer Snippets (Read the full thread at qnap):
"mount return the....
Client:
[~] # mount -t nfs [NAS]:/[sharename] [mountpoint] -o nfsvers=3
So start with the sharename here mounting the NFS share in a Ubuntu client to see if I could replicate the error and I could...
|
|
How can I achieve low latency for NFS exports in order to e.g. have developers work nicely in Eclipse/Visual Studio with their workspaces mounted over NFS?
Started by Robert Munteanu on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Hard disks are always going asynchronous write" Check your NFS client for read-ahead and delayed write, both of those features will help Obviously keep network latency low - GBit....
Wait for filesystem caching, or don't do compiles over NFS.
|
|
Hi,
Based on a Windows 2003 SP2 64 Bit MSSQL Client wit NetWorker MSSQL Client 5.2.1, I'd like to restore a MSSQL-DB Backup of another client onto a nfs mounted volume. However I can not chose this volume inside the recovery GUI.
Any clue?
Started by spaceball on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at backupcentral):
However I can not chose this volume inside the recovery GUI spaceball
can... .
Subject: [Networker] Networker MSSQL-DB Restore towards an nfs-mounted share
Hi,
Based on a Windows 2003 of another client onto a nfs mounted volume.
|
|
I have a server that has 7 large disks that are each shared out via NFS to our webserver.
My question is: Would it be more efficient if I shared the parent directory so that there was only a single NFS mount point on the webserver, or would it make any...
Started by Brent on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
If it's unavailable, you'll have to wait for 7 ....
As for network speed, AFAICT (as far as I can tell .
There's no speed increase...unless the NFS server isn't available at mount-timeThere's no redundancy to be had from NFS itself.
|
|
I had Debian Lenny with an NFS share set up that my Windows 7 machine could access using the Windows 7 NFS client. I updated Lenny to Squeeze and now Windows cannot access it. It just sits there for a while and then says it cannot find the path. I haven...
Started by j.jensen@auckland.ac.nz on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at linuxquestions):
Ran 50315 nlockmgr
100003 2 tcp ....
Maybe the NFS version changed, try running the following on the server:
Code: rpcinfo -p localhost and Windows can't handle it, you can disable nfs v4 by editing adding "-N 4" to rpc.nfsd startup options.
|