Error unmounting a remote mounted file system


 
Thread Tools Search this Thread
Operating Systems AIX Error unmounting a remote mounted file system
# 8  
Old 08-07-2012
Hi Funksen,

I tried to do that too but it gives the following error.

Code:
#  mount sapsolman:/commbkp /Shared_BKP_fs
nfsmnthelp: 1831-019 sapsolman: Cannot mount a file system that is already remotely mounted.
mount: 1831-008 giving up on:
sapsolman:/commbkp
Cannot mount a file system that is already remotely mounted.

Regards,
Abhishek.

---------- Post updated at 12:40 PM ---------- Previous update was at 12:27 PM ----------

Hi Cero,

That is correct, agreeing to your point, I too feel that if a file system is not mounted then i cannot umount it, however it is not even mounting
When i have checked in the source server (where the FS exists) the type of FS is
Code:
FS :- sapsolman:/commbkp
Mounted on :- /commbkp
Type of FS :- nfs3

This was checked through SMIT.

Regards
Abhishek

Moderator's Comments:
Mod Comment Please use code tags next time for your code and data.

Last edited by zaxxon; 08-07-2012 at 05:06 AM.. Reason: code tags, read your PMs!
# 9  
Old 08-07-2012
/Shared_BKP_fs is a different mountpoint?


try to remove your fs from /etc/filesystems

(rmfs /filesystemname, or delete it with an editor if that wont work)

and remount it over another path

(save /etc/filesystems or the stanza for your filesystem first)

Last edited by funksen; 08-07-2012 at 04:46 AM..
# 10  
Old 08-07-2012
Hi funksen,

Yes
Shared_BKP_fs is a different mount point, originally I was trying to mount at commbkp mount point.

I checked in etc/filesystem no such entry exists for
Code:
'/commbkp'

.

I wont be able to attach the entire output, but as checked by me I was not able to see any entries with the name
Code:
/commbkp


or by the name
Code:
sapsolman:/commbkp

in the filesystems file.

Regards.
Abhishek.Smilie


# 11  
Old 08-07-2012
strange,

you can try to restart nfs services

Code:
stopsrc -g nfs
startsrc -g nfs

# 12  
Old 08-07-2012
Hi,

Do i need to stop the application and database before executing these commands? also i want to know where can i find all the process id's pertaining to a specific filesystem.

Regards
Abhishek
# 13  
Old 08-08-2012
if this is the only nfs mounted filesystem your application is using, and if this server does not share nfs directories itself, then you can run these commands safely

clean way is to see what services are running:

Code:
lssrc -g nfs
Subsystem         Group            PID          Status 
 biod             nfs              2818186      active
 rpc.statd        nfs              6291692      active
 rpc.lockd        nfs              5636344      active
 nfsd             nfs                           inoperative
 rpc.mountd       nfs                           inoperative
 nfsrgyd          nfs                           inoperative
 gssd             nfs                           inoperative


for example

and just restart them

Last edited by funksen; 08-08-2012 at 05:39 AM..
# 14  
Old 08-08-2012
Quote:
also i want to know where can i find all the process id's pertaining to a specific filesystem.
Check this thread:
netstat -anp
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

Related to "NAS" some file system (mounted volumes) were not writable

Dear friends, I have been facing an issue with one of my red hat unix machine, suddenly lost to switch sudo users. My all colleagues lost to switch to access sudo users. Then, we have realized its related to NAS issue which does not allowing to write the file. because of this we got so many... (1 Reply)
Discussion started by: Chand
1 Replies

2. Red Hat

File system mounted or not

Hi, I know something about file system that its a directory to hold files. My query is how to identify file system is mounted or not .Can you give me some examples? OS --- Linux 2.6 (7 Replies)
Discussion started by: Maddy123
7 Replies

3. UNIX for Dummies Questions & Answers

Identify the remote mounted drives

Hi I have a couple directories in my current working environment. i want to identify the remote mounted shares among them . for example My current working directory contains folders dir1 dir2 dir3 ..etc dir1 is a remote share from server xyx dir2 and dir3 are local folders I... (3 Replies)
Discussion started by: rakeshkumar
3 Replies

4. UNIX for Dummies Questions & Answers

What happens if i unmount local file system when is mounted to a different server?

Hi, as title says what happens if i unmount local file system when is mounted to a diffrent server ? (2 Replies)
Discussion started by: galuzan
2 Replies

5. Ubuntu

display the mounted file system types

how can i list/display the mounted partitions in Ubunutu, mount command just display the devices but not the file system used. (4 Replies)
Discussion started by: XP_2600
4 Replies

6. SCO

file system not getting mounted in read write mode after system power failure

After System power get failed File system is not getting mounted in read- write mode (1 Reply)
Discussion started by: gtkpmbpl
1 Replies

7. Solaris

How to find which file system was not mounted ?

Hello all, can someone help on how can i check if all file system were mounted during reboot? I know that we have first to look on /etc/vfstab; the containing of this one should be mounted during boot of system, and after with : df -k we can see if mentioned file system on vfstab were... (3 Replies)
Discussion started by: vitchi
3 Replies

8. UNIX for Dummies Questions & Answers

how to mount a file system of a remote machine to local file system

Hi friends, In my case, there are serveral PCs running Linux in a LAN. I would like to to mount the directory /A_river of machine-A to the file system of another machine machine-B so that I can access files in that directory. I do not know how to do this. The situation is complicated by... (2 Replies)
Discussion started by: cy163
2 Replies

9. UNIX for Dummies Questions & Answers

how many directory can be mounted on one file system

I have a question and seek help. How many directory can be mounted on one file system on UNIX with solaris 9? For example, I have one file system as /dev/dsk/cieit0a6. I have created one directory as /u01/app/oracle and mounted this directory to cieit06. It works. Then I create another directory as... (4 Replies)
Discussion started by: duke0001
4 Replies

10. UNIX for Dummies Questions & Answers

fsck on a mounted file system?

I have a Solaris 7 box. We got a strange error in the syslog, which read as follows: Nov 15 11:50:16 server-01 unix: NOTICE: free inode /mount1/8025691 had size 0x20d I consulted with a fellow sysadmin, and he suggested running "fsck -N" on the filesystem in question without unmounting it. So I... (1 Reply)
Discussion started by: GKnight
1 Replies
Login or Register to Ask a Question