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
09-17-2001 09:06 AM
09-17-2001 09:06 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 09:27 AM
09-17-2001 09:27 AM
Re: NFS
place exported directory in /etc/exports. Example: on nfshost /var/mydir -access=host1:host2
This allows only host1 and host1 machines to NFS mount /var/mydir.
ON host1 and host2, edit /etc/fstab to something like: "nfshost:/var/mydir /local/mydir nfs rw,suid,soft,timeo=14 0 0" where nfshost is the hostname of the NFS server above.
Also make sure NFS server is running on "nfshost" and NFS clients are running on "host1" and "host2" above. See /etc/rc.config.d/nfsconf to activate NFS server and client at boot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 09:37 AM
09-17-2001 09:37 AM
Re: NFS
On the NFS client side, make sure NFS_CLIENT is set to 1 and make sure the daemons are running. Then edit /etc/fstab, make the mount point directories and do a mountall.
If all is okay, then the filesystems you exported from the server should be mounted on the client.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 10:01 AM
09-17-2001 10:01 AM
Re: NFS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 10:06 AM
09-17-2001 10:06 AM
Re: NFS
You can configure the NFS Server, NFS client, directory export from NFS server server and Mounting exported directories at the client using SAM.
On the Server from where you want to export the directories which should get mounted by clients, use sam to configure the NFS server server capability and export the directory or filesystem.
On the system you want to mount these directories using Sam enable the NFS Client capability and If you want to mount the direcories automatically at the system boot, add them into /etc/fstab using sam.
If on the other hand you want to mount these direcotories as and when required, use the mount command on the command prompt to mount these directory/directories.
hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 10:15 AM
09-17-2001 10:15 AM
Re: NFS
I suspect what is missing on your NFS clients is the mountpoint. Create a mountpoing via mkdir /remotefs1. The mount -F nfs remote_host:/remote_fs /remotefs1.
You must also edit /etc/rc.config.d/nfsconf on both the clients and the server and set NFS_CLIENT=1 and NFS_SERVER=1. You should make sure that you can resolve hostnames in both directions. You can then start the services manually, via SAM, or simply reboot.
Once you can mount manually, you can then either make /etc/fstab entries on the clients or setup the automounter on the clients.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2001 10:27 AM
09-17-2001 10:27 AM
Solutionon server: if you are exporting /home
1.edit /etc/exports on server
/home
2.edit /etc/rc.config.d/nfsconf
NFS_SERVER=1
3.start nfs server
#/etc/rc2.d/K900nfs.sever start
4 #exportfs -ev (to export filesystems)
On client
1. cd /
2. mkdir tmp_home
3. edit /etc/rc.config.d/nfsconf
NFS_CLIENT=1
4. start nfs client
#/sbin/rc2.d/S430nfs.client start
5. mount server:/home /tmp_home
man shoumount. useful command.
Sachin