NFS multiple write error.


 
Thread Tools Search this Thread
Operating Systems AIX NFS multiple write error.
# 1  
Old 07-28-2015
NFS multiple write error.

Hi,

We are taking the mksysb backup to NIM server's NFS mount point (/backup). We have mounted /backup to all the clients /backup and full permission. When multiple mksysb backup starting simultaneously to the NIM server's shared NFS mount point then only one backup is running and all others are failing. One by one the backups are completing successfully. We are using soft option for mounting the NFS file systems. How we can write multiple backups simultaneously to the NFS shared mount point

Last edited by rbatte1; 07-28-2015 at 12:26 PM..
# 2  
Old 07-28-2015
  1. Command you use to mount NFS share
  2. grep your-share /etc/exports from NIM server
  3. Command you use to make a mksysb backup

Last edited by rbatte1; 07-28-2015 at 12:25 PM..
# 3  
Old 07-28-2015
What agent.kgb is hinting at is: you shouldn't export filesystems belonging to NIM by hand - never ever! Use the NIMs methods and it will automatically generate the necessary NFS shares, mount them, unmount them and deconfigure them afterwards. A typical problem with failing NIM methods is that supersets of the NIMs working directories are exported by hand.

To do a mksysb backup correctly means executing something similar to the following command from the NIM server:

Code:
 root@nim # nim -o define -t mksysb \
                          -a server=<nim master> \
                          -a location=/nim/path/to/image \
                          -a mk_image=yes \
                          -a source=<client>  image.name

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
# 4  
Old 08-02-2015
Thank you bakunin
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. Shell Programming and Scripting

Is it possible to write write multiple cronjobs in shellscript??

Hi All, I need the answer of below question? 1) How to write multiple cronjobs in shellscript? Is there any way or we cant write in shellscript... Regards, Priyanka (2 Replies)
Discussion started by: pspriyanka
2 Replies

3. Solaris

NFS - concurrent write to same file normal ?

Hi all, Sorry if I sound like a novice , I have always thought that for network file system which can be shared, there will be some access restriction in which when user A is writing/editing fileA, user B is able to view the same fileA but cannot write/edit it until user A has... (6 Replies)
Discussion started by: javanoob
6 Replies

4. Solaris

No write permission on NFS mount point

hi all i have mounted one nfs mount point but i has no write permission on it. when i am going to make a directory it is giving an error # mkdir 1 mkdir: Failed to make directory "1"; Permission denied i shared using command # share -F nfs -o rw -d "backup" /backup mounted using... (3 Replies)
Discussion started by: nikhil kasar
3 Replies

5. AIX

Write once on NFS file system

Hello Guru's We are trying to save some data for 10 -15 yrs. so we created a NFS share file system and mounted on AIX 5.3 servers, keeping in mind that we might need to replace the expired disk/bad disk every 2 yrs or 4 yrs. Now we are trying to solve. How to protect it from getting deleted... (6 Replies)
Discussion started by: Beginner123
6 Replies

6. Red Hat

NFS mount read and write

Dear all, I have a server A and Client B. I am mounting a folder which is Server A using read and write options in client B. I have put entries in /etc/exports file as /mnt1/load *(rw,sync) In the client i cannot create any new file or delete any file eventhough it is read... (3 Replies)
Discussion started by: jegaraman
3 Replies

7. Solaris

Write problem in NFS

Hi Gurus, I am trying to share certain file with NFS. Requirement is to give access to root of another host to some file system which is shared through NFS. Step1. I entered the below line in /etc/dfs/dfstab share -F nfs -o root=sun2 /usr/src ... (3 Replies)
Discussion started by: kumarmani
3 Replies

8. Solaris

NFS write failed for server.....error 11 (RPC: Server can't decode arguments)

Hello! I have a Linux nfs server (called server100 below) with a export nfs. My problem is that the Solaris client (called client100 below) doesn't seems to like it. In the Solaris syslog I got following messages (and after a while the solaris client behave liked its hanged/to buzy). Also see... (3 Replies)
Discussion started by: sap4ever
3 Replies

9. Solaris

NFS write error on host : Stale NFS file handle

:confused:Hi all When i see in the /var/adm/messages, i saw the following error unix: NFS write error on host : Stale NFS file handle. unix: (file handle: 45ca415 3e7 a0000 2c7f6 3ebfc25f a0000 2 3e49) It is using sunOS 5.7. Is anybody know what is this error? Is is related to any network... (2 Replies)
Discussion started by: AirWalker83
2 Replies

10. IP Networking

Write permisson in NFS mounting

Hi all i have done set up for nfs. at server <dir> <client IP>/<netmask>(rw,sync) at client mount -o rw -nfs <server IP>:<dir1><dir2> with this i am successful in mounting the directory with write permission. But the write permission is not activate in client machine for the file which... (5 Replies)
Discussion started by: bhakti
5 Replies
Login or Register to Ask a Question