nfs/server not starting

Hi Gurus

Sorry to ask this question again but left with no option

I have entry in /etc/dfs/dfstab for resources which i am welling to shaer over the netwrok. Idelay once i execute shaerall it should enabel the nfs/server servcie in Solaris 10, however it was not stared and later i tried starting it with

svcadm -v enabel -r -t nfs/server 

but its again getting disbaled in a moment.

My /etc/dfs/dfstab entery is like below

share -F nfs -d /flararch 

Where am i going wrong? Please help

Thanks

  1. (optional) mount an extra disk on the machine that will be the NFS server.

  2. enable NFS sever by running the following:
    svcadm -v enable -r network/nfs/server

  3. Run the following command to share via NFS
    share -F nfs -o rw /flararch
    Note: The above share command will not persist over reboots. To persist over reboots, add an entry to /etc/dfs/dfstab

share -F nfs -o rw /flararch

  1. Run the following command to mount from the client side:
    mount -F nfs server:/flararch /mount_point
    Note: The above mount command will not persist over reboots. To persist over reboots, add the following line in /etc/vfstab:

server:/flararch - /mount_point nfs - yes rw,soft

Thanks incredible

My dfstab entry was wrong