Skip to main content

Setting Up NFS Services for Sharing directories in Solaris10

NFS, or Network File System, is a server-client protocol for sharing files between computers on a common network. NFS enables you to mount a file system on a remote computer as if it were local to your own system. You can then directly access any of the files on that remote file system. The server and client do not have to use the same operating system. The client system just needs to be running an NFS client compatible with the NFS server.

Setting Up NFS Services

How to Start the NFS Services


  1. Become an administrator.
  2. Enable the NFS service on the server.
    Type the following command.
    # svcadm enable network/nfs/server
    This command enables the NFS service.

    Note - The NFS server starts automatically when you boot the system. Additionally, any time after the system has been booted, the NFS service daemons can be automatically enabled by sharing the NFS file system. 

How to Stop the NFS Services

  1. Become an administrator.
  2. Disable the NFS service on the server.
    Type the following command.
    # svcadm disable network/nfs/server
Problems
svcadm fails to enable nfs/server

When trying to enable nfs/server, you keep getting this message that another entity has disabled the service but I cannot find where the problem is.

Code:
hostname:> svcadm -v enable -s svc:/network/nfs/server
svc:/network/nfs/server:default enabled.
svcadm: Instance "svc:/network/nfs/server:default" has been disabled by another entity.

svcs doesn't really tell anything about what the problem is. In fact, svcs says that it is disabled by an administrator.

Code:
hostname:> svcs -xv nfs/server
svc:/network/nfs/server:default (NFS server)
 State: disabled since Tue Aug 12 19:59:12 2008
Reason: Disabled by an administrator.
   See: Sun Message ID: SMF-8000-05
   See: man -M /usr/share/man -s 1M nfsd
Impact: This service is not running.

Solution
This generally occurs when you try to enable NFS server service without sharing any directory. or file /etc/dfs/dfstab doesn't exists
You need to setup share in the /etc/dfs/dfstab
mkdir /export/test
vi /etc/dfs/dfstab and add:

share -F nfs /export/test


Nfs client mount RPC Error: Program not registered.

When trying to mount nfs partition in nfs client, you keep getting this message that Nfs client mount RPC Error: Program not registered.
Code:
# mount -t nfs 10.10.4.150:/data/pops_sva /mnt
mount: mount to NFS server '10.10.4.150' failed: RPC Error: Program not registered.
#

Solution
This generally occurs when you try to mount NFS partition without sharing any directory from server or due to access restriction in server.
On NFS client, check the output of:
It should show some shared directory as shown in output below
Code:
showmount -e <ip of server>
rpcinfo -p <ip of server>
e.g.
bash-3.2# showmount -e 172.16.10.11
export list for 172.16.10.11:
/share (everyone)

If output of 'showmount' command is blank or specific IP then you need to check settings on server or share it to client IP 


1st at server end run these command
mkdir /share
vi /etc/dfs/dfstab    (Add below line)
/usr/sbin/share -F nfs -o rw -d "" /share
svcadm -v restart -s svc:/network/nfs/server   << For Public Share
/usr/sbin/share -F nfs  -o ro=192.168.111.10/32 -d "" /share << For Specific IP Share
showmount -e 1.2.3.4 (your ip address=1.2.3.4 change as per ur req)
now at client machine
showmount -e 1.2.3.4
mkdir /share2
mount -t nfs 1.2.3.4:/share /share2
ls /share2    (share2 will list the contents of Server share)

Comments

Popular posts from this blog

INSTALL CISCO VPN CLIENT ON WINDOWS 10 (32 & 64 BIT). FIX REASON 442

This article shows how correctly install Cisco VPN Client (32 & 64 bit) on Windows 10 (32 & 64 bit) using simple steps, overcome the ‘ This app can’t run on this PC ’ installation error , plus fix the Reason 442: Failed to enable Virtual Adapter error message . The article applies to New Windows 10 installations or Upgrades from earlier Windows versions and all versions before or after Windows 10 build 1511 .  To simplify the article, we’ve broken it into the following two sections: How to Install Cisco VPN client on Windows 10 (clean installation or upgrade from previous Windows), including Windows 10 build prior or after build 1511 . How to Fix Reason 442: Failed to enable Virtual Adapter on Windows 10 Figure 1. The Cisco VPN Client Reason 442: Failed to enable Virtual Adapter error on Windows 10 HOW TO INSTALL CISCO VPN CLIENT ON WINDOWS 10 (NEW INSTALLATIONS OR O/S UPGRADES) The instructions below are for new or clean Windows 10 inst...

Linux File and Directory Permissions

file & directory protection is a essential of any OS and Linux OS is no exception for it! These authorizations allow you to choose exactly who can access your files & directory, providing an overall improved system security. There was one of the major flaws in the older Windows operating-system where, by standard, all users can see each other people's information (Windows 95, 98, Me). For overcoming it, editions of the Windows based computer system such as NT, 2000, XP and 2003 lot more security features added. They fully support file & directory permissions, just as Linux system has since the beginning. Together, we'll now assess a directory listing from our Lab Linux system hosting server, to help us understand the information provided. a simple 'ls' command will give you the file and directory listing within a given directory, including the option  '-l' will display number of new areas that we are going to discuss here:

How to create a Hirens Boot CD 15.2 USB Disk

Hiren’s BootCD (HBCD) is a bootable CD that contains a set of tools that can help users to fix their computer if their system fails to boot. More specifically, HBCD contains hardware diagnostic programs, partition tools, data recovery utilities, antivirus tools and many other tools to fix your computer problems.  I write this article because I use Hiren’s BootCD frequently to troubleshoot computer problems, specially when a computer doesn’t boot anymore due to a virus attack or due to a corrupted file system. In this article you will find instructions on how to put Hiren’s BootCD on a USB flash drive (stick) in order to troubleshoot computer problems in the future.