Mount nfs filesystem


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Mount nfs filesystem
# 1  
Old 03-08-2002
Question Mount nfs filesystem

I try to share a directory from a wortstation to a server.
the share command was no problem.
Solaris 8

on mars
share -F nfs -o rw /dir/dir2

on the server
mount mars:/dir/dir2 /mount_point

RPC: Program not registered <--- What is the meaning of this ?

Thanks for you help !

Last edited by joerg; 03-08-2002 at 04:52 AM..
# 2  
Old 03-08-2002
When the system boots, the NFS server is not enabled unless there are NFS exports listed in /etc/dfs/dfstab.

To start the nfs server after adding an entry to dfstab, issue the following command:

# /etc/init.d/nfs.server start

Note that it isn't currently possible to start the nfs server using the "nfs.server" script unless there are entries in /etc/dfs/dfstab.

If you want to do automatic sharing, you need to export at least one other filesystem if you're running Solaris 2.6 or earlier.

your problem is nfsd and mountd weren't running. It turns out that if
there are no shared entries in /etc/dfs/dfstab, then those daemons aren't
started at boot time. The solution is o put the share command in
/etc/dfs/dfstab, and then execute

# /etc/init.d/nfs.server start (as stated above)

Also, you can issue the commands manually:

/usr/lib/nfs/nfsd -a 16
/usr/lib/nfs/mountd

This must all be done as root, naturally.
Hope this helps
# 3  
Old 03-08-2002
Thanks killerserv

Thanks for your fast help!
I think that was the reasen. (nfsd mountd not running)
regards joerg
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Mount NFS Share On NFS Client via bash script.

I need a help of good people with effective bash script to mount nfs shared, By the way I did the searches, since i haven't found that someone wrote a script like this in the past, I'm sure it will serve more people. The scenario as follow: An NFS Client with Daily CRON , running bash script... (4 Replies)
Discussion started by: Brian.t
4 Replies

2. UNIX for Dummies Questions & Answers

Mounting NFS filesystem

Hi All, I need to mount an nfs filesystem as below. xxx.xx.xx.xxx:/media/nss/Rocky Catherine/logs For the above as there is space in between the name, hoping it will not mount, if i give it with double quotes as below will it work? mount "xxx.xx.xx.xxx:/media/nss/Rocky... (2 Replies)
Discussion started by: Rockyc3400
2 Replies

3. UNIX for Dummies Questions & Answers

Can't mount filesystem

I have 2 Linux servers. rcwlo-ods10g and rcwlo-10gdev I can mount one filesystem from rcwlo-ods10g onto rcwlo-10gdev fine: RCWLO-10gDev:/ # mount -F rcwlo-ods10g:/SAN /backup but when I try another one I get: RCWLO-10gDev:/ # mount -F rcwlo-ods10g:/backup /backup mount:... (0 Replies)
Discussion started by: jamie_collins
0 Replies

4. AIX

Mount Filesystem in AIX Unable to read /etc/filesystem

Dear all, We are facing prolem when we are going to mount AIX filesystem, the system returned the following error 0506-307The AFopen call failed : A file or directory in the path name does not exist. But when we ls filesystems in the /etc/ directory it show -rw-r--r-- 0 root ... (2 Replies)
Discussion started by: m_raheelahmed
2 Replies

5. AIX

Filesystem in nfs

Hello Do you know how to list the FS nfs from / etc / filesystems? I am a newbie on AIX 5.3, thank you for your help. Hus (4 Replies)
Discussion started by: hus83
4 Replies

6. IP Networking

Can't see home folder on one NFS mount but can in another mount on another share

Hello, I have a few Ubuntu 9.10 laptops I'm trying to learn NFS sharing with. I am just experimenting on this right now, so no harsh words about the security of what I'm playing with, please ;) Below are the configs /etc/exports on host /home/woodnt/Homeschool... (2 Replies)
Discussion started by: Narnie
2 Replies

7. UNIX for Dummies Questions & Answers

mount -o llock -F nfs vs mount -F nfs

Hi, We encountered NFS issue (solaris) especially running on Oracle application. Problem such as forms hang when close button is click, concurrent job shows running status all time. Understand we need to use mount -o llock -F nfs instead of mount -F nfs to eliminate? this problem.. Can... (1 Reply)
Discussion started by: KhawHL
1 Replies

8. Solaris

Remote mount an already mounted nfs filesystem

Hello all, We're using JET to build our systems.. I'm in the process of needing to build a centrally located JET box with access to all our networks rather that 2 or 3 dotted around. Part of the means I need to locate the boot & OS images on an NFS mount (via NETAPP filer).. However in the... (1 Reply)
Discussion started by: itsupplies
1 Replies

9. UNIX for Dummies Questions & Answers

How can I tell if a filesystem is NFS mounted?

I would like to know if there is a command or set of commands that I can run to verify that there are no 'extraneous' nfs mounted filesystems on our server. I didn't see anything in doing a search on NFS. We think that we may have some filesystems that are still nfs mounted when the link should... (3 Replies)
Discussion started by: giannicello
3 Replies

10. UNIX for Dummies Questions & Answers

Mount a Filesystem

I want help about mount a filesystem to use a cdrom to install a software that be in the cd cdrom.. you can send a mail ::removed emails:: (5 Replies)
Discussion started by: amauryrgrullon
5 Replies
Login or Register to Ask a Question