0

We have a solaris nfs server and we have a share that was shared to everyone, now i would like to know which clients are mounting this share, on linux i can use showmount -a nfsserver, but on solaris showmount doesn't work

c4f4t0r
  • 5,301
  • 3
  • 31
  • 42

1 Answers1

2

Solaris is not Linux. Linux is not UNIX. Solaris is UNIX.

Having said that :

$ dfmounts
RESOURCE     SERVER PATHNAME                  CLIENTS
  -            nfssvr /export/bootfs          192.168.35.214,nfsclient

So use dfmounts.

paul lanken
  • 123
  • 1
  • 9
  • but this command need to be given on nfs server or on the client? because i have a solaris 10 cluster with a nfs server share clustered but i didn' see any output – c4f4t0r Dec 23 '13 at 09:10