To restart NFS server in HPUX
How to do it :
Please make a note that all exported NFS mount points will be unavailable to all clients during this restart.
Stop NFS
1
2
3
4
5
6
7
8
9
10
11
12
|
# /sbin/init.d/nfs.server stop
killing rpc.mountd
# /sbin/init.d/nfs.client stop
killing nfs4cbd
# /sbin/init.d/nfs.core stop
killing nfsmapid
killing rpcbind
|
:
Start NFS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# /sbin/init.d/nfs.core start
Starting NFS CORE networking
Starting up the rpcbind
/usr/sbin/rpcbind
# /sbin/init.d/nfs.client start
Starting NFS CLIENT subsystem
Starting up nfs4cbd daemon
/usr/sbin/nfs4cbd
Starting up nfsmapid daemon
/usr/sbin/nfsmapid
Mounting remote NFS file systems ...
Mounting remote CacheFS file systems ...
# /sbin/init.d/nfs.server start
Starting NFS SERVER subsystem
Reading in /etc/dfs/dfstab
Starting up the mount daemon
/usr/sbin/rpc.mountd
Starting up the NFS server daemon
/usr/sbin/nfsd
Starting up nfsmapid daemon
|
Make sure you follow the sequence while stopping and starting as mentioned above.
0 comments:
Post a Comment