- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: NFS Mounting on Redhat 4.0 AS
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
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
12-22-2005 02:44 PM
12-22-2005 02:44 PM
NFS Mounting on Redhat 4.0 AS
How do I enable nfs mounting services on my redhat 4.0 AS for both 2 Linux boxes?
Thanks/cliff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2005 03:35 PM
12-22-2005 03:35 PM
Re: NFS Mounting on Redhat 4.0 AS
Go through the following web link:
http://www.troubleshooters.com/linux/nfs.htm
Hope this helps!
Chandan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2005 08:05 PM
12-22-2005 08:05 PM
Re: NFS Mounting on Redhat 4.0 AS
Alireza
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2005 10:31 PM
12-22-2005 10:31 PM
Re: NFS Mounting on Redhat 4.0 AS
chkconfig portmap on
chkconfig nfs on
Edit /etc/exports, like this:
/public *(ro,async,root_squash)
Start the service:
service nfs start
On the client:
mount -t nfs server:/public /mount/point
You MUST have a consistent UID/GID scheme on all your servers.
NOTE: nfslock is not needed as the lock is already managed by the kernel on linux-to-linux nfs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-26-2005 08:33 PM
12-26-2005 08:33 PM
Re: NFS Mounting on Redhat 4.0 AS
enable the portmap and nfs service . so that it will start automatically .
# chkconfig portmap on
# chkconfig nfs on
Edit /etc/exports,
add the exported file system like
/home
then
service nfs start
On the client side :
showmount -e (server ip address)
this is to check whether the filsystems exported properly.
then try to mount the fs from client side
mount server:/home /mnt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2005 05:34 AM
12-27-2005 05:34 AM
Re: NFS Mounting on Redhat 4.0 AS
Do the following steps.
#mkdir /dump
#vi /etc/exports
/dump
save and come out..
#service nfs restart
#vi /etc/fstab
Go to client machine..
#vi /etc/fstab
Made an entry in fstab file for automount after restart the machine..
#mount /dump
#df -k
u should able to see the directory mounted..
Hope this will resolve ur issue..
cheers
indrajit