Link to home
Start Free TrialLog in
Avatar of bwsaul
bwsaul

asked on

Share areas not mounted

    Well, our system administrator is on vacation leaving us poor general programmers to deal with whatever happens to the network.    For the record it is a Solaris network.   Well, we had to reboot one of our servers this morning.   When it rebooted two of our 'share areas' or drive
areas were not mounted.
      Can someone tell us how to mount the areas which were
not mounted at bootup?

       Thanks.
ASKER CERTIFIED SOLUTION
Avatar of tfewster
tfewster
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jlevie
jlevie

One caution, you need to see if the file systems didn't mount because they didn't fsck at boot. As tfewster pointed out, check the vfstab to see what should have happened at boot. If they are in vfstab and should have been mounted, you need to go back to a single user boot and fsck the filesystems. If I had an entry in vfstab like:

/dev/dsk/c0t1d0s0 /dev/rdsk/c0t1d0s0 /nfs0    ufs     3       yes     -

And it didn't mount because of a problem with the fs, I'd boot to single user mode ("shutdown -y -i0 -g0" and "boot -s" at the boot prompt). The enter the root password when prompted and:

fsck /nfs0
Avatar of bwsaul

ASKER


      Thanks both.  It did the trick!


                 BWsaul