Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp
Knowledge Base
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 08:49 PM
05-17-2002 08:49 PM
now i want to tranfser one dir from server A to server B and i user nfs but i got a message that rcp is not registed can u give me the full way hwo to do nfs
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 08:54 PM
05-17-2002 08:54 PM
Re: nfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 09:20 PM
05-17-2002 09:20 PM
Re: nfs
# /sbin/init.d/nfs.server stop
# /sbin/init.d/nfs.client stop
# /sbin/init.d/nfs.server start
# /sbin/init.d/nfs.client start
-Niraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 09:26 PM
05-17-2002 09:26 PM
SolutionOn the server side where you have directory with data
#/sbin/init.d/nfs.server start
Check these processes are running
#ps -ef| grep rpcd
#ps -ef | grep portmap ( in HP-UX 10.20 )
#ps -ef | grep rpcbind ( in HP-UX 11.X )
#ps -ef | grep nfsd
now export that directory with data
#exportfs -i /datadir
On the client server where you want to copy the
data.
#/sbin/init.d/nfs.client start
#ps -ef | grep rpc.mountd ( shoulf be running)
Mount the data directory from the first server
#mount nfsserver:/datadir /data
Now /datadir in mounted under /data directory of the local machine.
#cd /data
#ll
you will be able to see the files in the nfs server.
Now use cp command to copy the files.
if it is done.
unmount the directory
#umount /data
On the server unexport that /datadir directory
#exportfs -iu /datadir
To check
#exportfs
output should not show /datadir directory.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 09:26 PM
05-17-2002 09:26 PM
Re: nfs
On the server side where you have directory with data
#/sbin/init.d/nfs.server start
Check these processes are running
#ps -ef| grep rpcd
#ps -ef | grep portmap ( in HP-UX 10.20 )
#ps -ef | grep rpcbind ( in HP-UX 11.X )
#ps -ef | grep nfsd
now export that directory with data
#exportfs -i /datadir
On the client server where you want to copy the
data.
#/sbin/init.d/nfs.client start
#ps -ef | grep rpc.mountd ( shoulf be running)
Mount the data directory from the first server
#mount nfsserver:/datadir /data
Now /datadir in mounted under /data directory of the local machine.
#cd /data
#ll
you will be able to see the files in the nfs server.
Now use cp command to copy the files.
if it is done.
unmount the directory
#umount /data
On the server unexport that /datadir directory
#exportfs -iu /datadir
To check
#exportfs
output should not show /datadir directory.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 09:27 PM
05-17-2002 09:27 PM
Re: nfs
On the server side where you have directory with data
#/sbin/init.d/nfs.server start
Check these processes are running
#ps -ef| grep rpcd
#ps -ef | grep portmap ( in HP-UX 10.20 )
#ps -ef | grep rpcbind ( in HP-UX 11.X )
#ps -ef | grep nfsd
now export that directory with data
#exportfs -i /datadir
On the client server where you want to copy the
data.
#/sbin/init.d/nfs.client start
#ps -ef | grep rpc.mountd ( shoulf be running)
Mount the data directory from the first server
#mount nfsserver:/datadir /data
Now /datadir in mounted under /data directory of the local machine.
#cd /data
#ll
you will be able to see the files in the nfs server.
Now use cp command to copy the files.
if it is done.
unmount the directory
#umount /data
On the server unexport that /datadir directory
#exportfs -iu /datadir
To check
#exportfs
output should not show /datadir directory.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 09:30 PM
05-17-2002 09:30 PM
Re: nfs
On the server side where you have directory with data
#/sbin/init.d/nfs.server start
Check these processes are running
#ps -ef| grep rpcd
#ps -ef | grep portmap ( in HP-UX 10.20 )
#ps -ef | grep rpcbind ( in HP-UX 11.X )
#ps -ef | grep nfsd
now export that directory with data
#exportfs -i /datadir
On the client server where you want to copy the
data.
#/sbin/init.d/nfs.client start
#ps -ef | grep rpc.mountd ( shoulf be running)
Mount the data directory from the first server
#mount nfsserver:/datadir /data
Now /datadir in mounted under /data directory of the local machine.
#cd /data
#ll
you will be able to see the files in the nfs server.
Now use cp command to copy the files.
if it is done.
unmount the directory
#umount /data
On the server unexport that /datadir directory
#exportfs -iu /datadir
To check
#exportfs
output should not show /datadir directory.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 09:31 PM
05-17-2002 09:31 PM
Re: nfs
On the server side where you have directory with data
#/sbin/init.d/nfs.server start
Check these processes are running
#ps -ef| grep rpcd
#ps -ef | grep portmap ( in HP-UX 10.20 )
#ps -ef | grep rpcbind ( in HP-UX 11.X )
#ps -ef | grep nfsd
now export that directory with data
#exportfs -i /datadir
On the client server where you want to copy the
data.
#/sbin/init.d/nfs.client start
#ps -ef | grep rpc.mountd ( shoulf be running)
Mount the data directory from the first server
#mount nfsserver:/datadir /data
Now /datadir in mounted under /data directory of the local machine.
#cd /data
#ll
you will be able to see the files in the nfs server.
Now use cp command to copy the files.
if it is done.
unmount the directory
#umount /data
On the server unexport that /datadir directory
#exportfs -iu /datadir
To check
#exportfs
output should not show /datadir directory.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 09:37 PM
05-17-2002 09:37 PM
Re: nfs
regret the multiple posts. browser error.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 09:55 PM
05-17-2002 09:55 PM
Re: nfs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-17-2002 11:32 PM
05-17-2002 11:32 PM
Re: nfs
To trasfer one directory from server A to server B , there are diff. options.
1)configuring nfs
2)Using ftp
3)using rcp.
nfs
Please see the nfsdaemon nfsd is runng ,using ps -aef |grep nfsd.
if already running kill it and start the service again
If not then start the service using
/sbin/init.d/nfs.server start
Then export the dir which u want then mount on the client.(See man export )
2)you can use ftp also to trasfer files
3)U can use rcp (see man rcp)
For using ftp ,enable system/user wide equivalency using /etc/hosts.equiv or $HOME/.rhosts