NFS and RPC in Solaris 10


 
Thread Tools Search this Thread
Operating Systems Solaris NFS and RPC in Solaris 10
# 1  
Old 02-28-2008
NFS and RPC in Solaris 10

I have been told to disable the rpc processes such as rstat and rusers on some servers for security concerns, what if I am running NFS on those servers. Would it affect the NFS since both rstat and rusers are nfs daemons??

I MUST have the NFS running on the server. Can I disable rstat and rusers without affecting NFS???

Any feedback is appreciated.Smilie

Thanks,
mitsurughi
# 2  
Old 03-03-2008
Solaris 10 allows you to check the dependencies that different services have on each other. You can check for this using the 'svcs -d' command.

For example, on a Solaris 10 box at work:
$ svcs -d nfs/server
STATE STIME FMRI
disabled Mar_01 svc:/network/rpc/keyserv:default
disabled Mar_01 svc:/network/rpc/gss:default
online Mar_01 svc:/milestone/network:default
online Mar_01 svc:/system/filesystem/local:default
online Mar_01 svc:/network/rpc/bind:default
online Mar_01 svc:/network/nfs/nlockmgr:default
online Mar_01 svc:/network/nfs/mapid:default

So, to run NFS server, you need keyserv and gss services to run (apart from what is already online). Your server will have similar dependencies - check using 'svcs -d'. Note that the services that the command throws as output will have their own dependencies.
# 3  
Old 03-07-2008
Thanks for the reply.

I found out from another post that the NFS server needs to have nfsd, statd, lockd and mountd initiated and NFS client needs to have lockd and statd. So I went ahead and stopped rstat and rusers services.

Mitsurughi Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

NFS write error on host xyz: Stale NFS file handle - Solaris 10

Oct 13 12:19:15 xyz nfs: NFS write error on host xyz: Stale NFS file handle. Oct 13 12:19:15 xyz nfs: (file handle: 68000000 1bc5492e 20000000 377c5e 1ce9395c 720a6203 40000000 bdfb0400) Oct 13 12:19:15 xyz nfs: NFS write error on host zyz: Stale NFS file handle. Oct 13 12:19:15 xyz nfs: ... (5 Replies)
Discussion started by: psychocandy
5 Replies

2. Solaris

nfs mount: RPC: Rpcbind failure - RPC: Timed out

Fails to mount the server (10.125.224.22) during installation of a software on client, throwing the below error: nfs mount: 10.125.224.22: : RPC: Rpcbind failure - RPC: Timed out nfs mount: retrying: /cdrom This happened after complete shutdown of the lab. The server came up fine but most... (1 Reply)
Discussion started by: frintocf
1 Replies

3. Red Hat

Nfs client mount RPC Error: Program not registered.

Hello, I was having few issues on my linux box, I am getting this error whenever I tried to mount a share on a client linux host. # 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. # I see the error and I... (4 Replies)
Discussion started by: bobby320
4 Replies

4. Programming

[C][RPC][Solaris]Not compiling client/server

Hello, I have task to make a program that multiplies polynomials as client(input/output indexes)-server(multiplying) using RPC. However when I try to compile it with gcc it gives the next info: for client: Udefined first symbol referenced Clnt_create client.o for server: Udefined first... (5 Replies)
Discussion started by: manarina
5 Replies

5. Solaris

RPC: Rpcbind failure - RPC: Timed out error (solaris)

C: Rpcbind failure - RPC: Timed out error (solaris) hello an nfs server on my sun fire v440 is not responding , i get the error bellow and lots of my networking services are not reponding, please helppppp its an emergency RPC: Rpcbind failure - RPC: Timed out i also get NFS server... (2 Replies)
Discussion started by: feg
2 Replies

6. Solaris

Solaris 9 as a nfs client -- centos as a nfs server.

Hello, I have a centos as nfs server, its name is centos_A. After I finish the setup of the nfs server, the other linux can access this nfs server immediately via /net/centos_A/* But, My solaris 9 can not access /net/centos_A/* immediately. I have to leave /net/centos_A, and wait for about... (1 Reply)
Discussion started by: bruceharbin
1 Replies

7. Solaris

NFS write failed for server.....error 11 (RPC: Server can't decode arguments)

Hello! I have a Linux nfs server (called server100 below) with a export nfs. My problem is that the Solaris client (called client100 below) doesn't seems to like it. In the Solaris syslog I got following messages (and after a while the solaris client behave liked its hanged/to buzy). Also see... (3 Replies)
Discussion started by: sap4ever
3 Replies

8. AIX

Problem with NFS & rpc.lockd-Help Needed

We have windows clients that access drawing files shared from our AIX server using NFS. The Windows clients are intermittently unable to open files or access the system. For some reason restarting the rpc.lockd temporarily resolves the problem. However, that is the only clue I have to what the... (1 Reply)
Discussion started by: theologic
1 Replies

9. Cybersecurity

Solaris 8, RPC, and CDE need some help.

I just installed Solaris 8 on an Intel based PC and am in the process of securing it. When I disable RPC my CDE desktop does not show up. I get my mouse cursor and a black screen. Also, anyone know how to disable SMC on Solaris 8. Thanks (3 Replies)
Discussion started by: Beauford
3 Replies
Login or Register to Ask a Question