nfs question
Hi! Could any user (not the root) mount a export with the command mount ? I use the insecure option on the export-options but doesn work. Thank you -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
nfs question
Hello list, I've set up a nfs server, and I was having a problem when booting the system. I was getting the following message: rpc.nfsd: nfssvc: Address already in use Well, I found out the problem. My server is a nfs server but also a nfs client (through netfs). Redhat setup application made boot service order like that: 1) nfslock 2) netfs 3) nfs Starting nfslock and after netfs makes nfs 2049 port unavailable. So I forced netfs to be started after netfs and the problem was solved. Does anyone knows why that happens? Is my solution the best one? Why redhat setup application does not put the correct boot order in this case? Thanks, Joao. -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: nfs question
I believe rpc services need to be running as well... Check dependencies to be sure -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, August 21, 2003 12:06 PM To: [EMAIL PROTECTED] Subject: nfs question What services are needed to export an ext3 driver? Does realy need this 3 services: nfs, nfslock and portmap? Thanks, Diego -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
nfs question
What services are needed to export an ext3 driver? Does realy need this 3 services: nfs, nfslock and portmap? Thanks, Diego -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: NFS Question
use options like intr,soft to softmount ricky On Thursday 14 August 2003 20:29, Gerry Doris wrote: > I sometimes manually mount NFS volumes on my internal lan. This works > fine until the system containing the NFS volumes is rebooted or turned > off. > > Once this happens I can't find a way to umount those volumes except > rebooting the client machine. What is the correct way to get my client > machine to release those volumes? > > > Gerry -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: NFS Question
I'm jumping into the middle of this thread, so please forgive if I'm ignorant of what you've alread discussed, but this "soft" option seems to be the answer to a problem I periodically have. How do you specify "soft" in the /etc/fstab? For example, I'm currently mounting NFS drives via my fstab with: GW2000:/usr /mnt/GW2000/usr nfs GW2000:/home/mnt/GW2000/homenfs GW2000:/mnt /mnt/GW2000/mnt nfs How would I change this to include "soft"? Thanks! Bill Johnson On Thu, 14 Aug 2003, Rigler, Steve wrote: > Is your client mounting the NFS exports with the "soft" option? > > -Steve > > > -Original Message- > > From: Gerry Doris [mailto:[EMAIL PROTECTED] > > Sent: Thursday, August 14, 2003 10:00 AM > > To: [EMAIL PROTECTED] > > Subject: NFS Question > > > > > > I sometimes manually mount NFS volumes on my internal lan. This works > > fine until the system containing the NFS volumes is rebooted or turned > > off. > > > > Once this happens I can't find a way to umount those volumes except > > rebooting the client machine. What is the correct way to get > > my client > > machine to release those volumes? > > > > > > Gerry > > > > > > -- > > redhat-list mailing list > > unsubscribe mailto:[EMAIL PROTECTED] > > https://www.redhat.com/mailman/listinfo/redhat-list > > > > > -- Bill Johnson "Call unto me, and I will answer thee, and shew thee great and mighty things that thou knowest not." Jeremiah 33:3 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: NFS Question
Is your client mounting the NFS exports with the "soft" option? -Steve > -Original Message- > From: Gerry Doris [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 14, 2003 10:00 AM > To: [EMAIL PROTECTED] > Subject: NFS Question > > > I sometimes manually mount NFS volumes on my internal lan. This works > fine until the system containing the NFS volumes is rebooted or turned > off. > > Once this happens I can't find a way to umount those volumes except > rebooting the client machine. What is the correct way to get > my client > machine to release those volumes? > > > Gerry > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
NFS Question
I sometimes manually mount NFS volumes on my internal lan. This works fine until the system containing the NFS volumes is rebooted or turned off. Once this happens I can't find a way to umount those volumes except rebooting the client machine. What is the correct way to get my client machine to release those volumes? Gerry -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: NFS Question
> Is your client mounting the NFS exports with the "soft" option? > > -Steve In my /etc/exports file I just have the rw option. After that I manually mount the nfs volume by doing: mount -t nfs host:/home/gerry /mnt/nfs This successfully mounts host:/home/gerry on the mount point /mnt/nfs. The problem I'm getting is if I forget and reboot "host" then I can't umount this volume. Generally I end up having to reboot to get this to release. It sure doesn't unmount just by umount /mnt/nfs There's got to be a more gracefull way of unmounting an nfs volume if the server disappears. Gerry -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
RE: NFS Question
Try using the "soft" option on the client when you mount the filesystem. mount -o soft host:/home/gerry /mnt/fns Read "man mount" for other options. -Steve > -Original Message- > From: Gerry Doris [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 14, 2003 12:07 PM > To: [EMAIL PROTECTED] > Subject: RE: NFS Question > > > > Is your client mounting the NFS exports with the "soft" option? > > > > -Steve > > In my /etc/exports file I just have the rw option. After > that I manually > mount the nfs volume by doing: > > mount -t nfs host:/home/gerry /mnt/nfs > > This successfully mounts host:/home/gerry on the mount point > /mnt/nfs. > The problem I'm getting is if I forget and reboot "host" then I can't > umount this volume. Generally I end up having to reboot to > get this to > release. It sure doesn't unmount just by > > umount /mnt/nfs > > There's got to be a more gracefull way of unmounting an nfs > volume if the > server disappears. > > Gerry > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED] > https://www.redhat.com/mailman/listinfo/redhat-list > -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list
Re: NFS question
On 29 Jan 2003, Thomas E. Dukes wrote: > > Maybe you don't have permissions? How is the C$ (or whatever) share > > configured on XP? > I noticed that it doesn't add anything to smb.com but it does add to the > fstab. Also, when I set it up with a user name and password, the user > name and password are in plain text in the fstab which probably isn't > too good. Ah, so you aren't sharing FROM Windows XP, but from Linux. That makes a difference. You're going to need to use smbpasswd to configure your SMB passwords file; recent versions of Windows use encrypted passwords unless deliberately broken by hacking the registry. Man smbpasswd for more info. -- "Of course I'm in shape! Round's a shape, isn't it?" -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: NFS question
On Tue, 2003-01-28 at 22:52, Samuel Flory wrote: > >You can have a samba mount (or nfs mount) only for a directory, and > any dirs under it. I guess you could export /. You may need special > options to span filesystems and follow links. > I tried mounting it as "/", but it gives an error as invalid share name. I also tried without the username and password but I get access denied because the password show up in fstab as plain text. Maybe it can't mount a whole drive. Thanks -- Palmetto Shopper http://palmettoshopper.com Serving all of South Carolina and beyond! -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: NFS question
On Wed, 2003-01-29 at 01:38, Todd A. Jacobs wrote: > On 28 Jan 2003, Thomas E. Dukes wrote: > > > I can see the shared drive (in webmin), it just won't mount. > > Maybe you don't have permissions? How is the C$ (or whatever) share > configured on XP? It is shared with "both the network users and other users of this computer" as C I noticed that it doesn't add anything to smb.com but it does add to the fstab. Also, when I set it up with a user name and password, the user name and password are in plain text in the fstab which probably isn't too good. TIA -- Palmetto Shopper http://palmettoshopper.com Serving all of South Carolina and beyond! -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: NFS question
On 28 Jan 2003, Thomas E. Dukes wrote: > I can see the shared drive (in webmin), it just won't mount. Maybe you don't have permissions? How is the C$ (or whatever) share configured on XP? -- "Of course I'm in shape! Round's a shape, isn't it?" -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: NFS question
Thomas E. Dukes wrote: After I sent that I thought I may have used the wrong terminology. I am using disk and network files systems under webmin to mount a directory through the network. I think its using samba. I can mount a shared directory, just can't figure out how to do the whole drive -- other than by individual directories. I can see the shared drive (in webmin), it just won't mount. You can have a samba mount (or nfs mount) only for a directory, and any dirs under it. I guess you could export /. You may need special options to span filesystems and follow links. -- There is no such thing as obsolete hardware. Merely hardware that other people don't want. (The Second Rule of Hardware Acquisition) Sam Flory <[EMAIL PROTECTED]> -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: NFS question
After I sent that I thought I may have used the wrong terminology. I am using disk and network files systems under webmin to mount a directory through the network. I think its using samba. I can mount a shared directory, just can't figure out how to do the whole drive -- other than by individual directories. I can see the shared drive (in webmin), it just won't mount. TIA On Tue, 2003-01-28 at 22:18, Bret Hughes wrote: > On Tue, 2003-01-28 at 20:26, Thomas E. Dukes wrote: > > How do I mount a drive using NFS. I can mount any specific shared > > directory on my XP box but can't seem to do the whole drive. The drive > > itself is shared. Do I have to share each individual directory? > > > > > unless I am missing something, you are mixing apples and oranges. XP > and NFS do not normally go together. If you are wanting to mount shared > dirs from an xp box on a redhat box then that is a different question > than mounting a nfs exported directory from a redhat box. > > Bret > > > > -- > redhat-list mailing list > unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe > https://listman.redhat.com/mailman/listinfo/redhat-list -- Palmetto Shopper http://palmettoshopper.com Serving all of South Carolina and beyond! -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: NFS question
On Tue, 2003-01-28 at 20:26, Thomas E. Dukes wrote: > How do I mount a drive using NFS. I can mount any specific shared > directory on my XP box but can't seem to do the whole drive. The drive > itself is shared. Do I have to share each individual directory? > unless I am missing something, you are mixing apples and oranges. XP and NFS do not normally go together. If you are wanting to mount shared dirs from an xp box on a redhat box then that is a different question than mounting a nfs exported directory from a redhat box. Bret -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
NFS question
How do I mount a drive using NFS. I can mount any specific shared directory on my XP box but can't seem to do the whole drive. The drive itself is shared. Do I have to share each individual directory? TIA -- Palmetto Shopper http://palmettoshopper.com Serving all of South Carolina and beyond! -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
RES: NIS NFS Question
Todd You can use autofs. When a user logoff his mounting point is dropped. Stop NFS /etc/exports /home *(rw) No blanks between * and ( exportfs -a or exportfs -r restart portmap restart NFS In my net is OK. in my clients I´m usind autofs. Edit auto.home and auto.master --- My auto.home - Change Server IP address * -fstype=nfs,soft,intr,rsize=8192,wsize=8192,nosuid 10.12.116.10:/home/& --- My auto.master - /home /etc/auto.home --timeout=60 Start autofs in yours clients Good luck Flávio Brito -Mensagem original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]Em nome de Todd E. Siuta Enviada em: segunda-feira, 12 de agosto de 2002 20:35 Para: [EMAIL PROTECTED] Assunto: NIS NFS Question I am looking for a little help. I am relatively new to the world of Linux and I have not been able to find an answer to a problem I am having. I have setup NIS and NFS on a small network. The users are able to log in fine and their home directory and share directory are mounting as expected. The problem I am seeing is that if user Mary logs in her home directory /home/mary is exported and mounted with no problem, but when she logs out and user Bob logs in and does a df, he sees mount points /home/bob and home/mary. Now /home/mary is not accessible by bob, but I would prefer /home/mary umount when she logs out. What am I missing that would umount her /home/mary exported directory? Thanks in advance for your assistance. The Linux Rookie -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.381 / Virus Database: 214 - Release Date: 02/08/02 -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
NIS NFS Question
I am looking for a little help. I am relatively new to the world of Linux and I have not been able to find an answer to a problem I am having. I have setup NIS and NFS on a small network. The users are able to log in fine and their home directory and share directory are mounting as expected. The problem I am seeing is that if user Mary logs in her home directory /home/mary is exported and mounted with no problem, but when she logs out and user Bob logs in and does a df, he sees mount points /home/bob and home/mary. Now /home/mary is not accessible by bob, but I would prefer /home/mary umount when she logs out. What am I missing that would umount her /home/mary exported directory? Thanks in advance for your assistance. The Linux Rookie -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redhat.com/mailman/listinfo/redhat-list
Re: theoretical nfs question
On Tue, 18 Jun 2002, Emmanuel Seyman wrote: > On Tue, Jun 18, 2002 at 01:11:59PM -0700, Keith Morse wrote: > > > > I also have a reference to www.samag.com. You'll need to search on their > > website. > > It was in #3, vol. 11 cover date March 2002. > I'm afraid the article isn't availible via sam's website. I had a problem with access to the URL before, but since have gotten it. This is the one I've recorded to my bookmarks: http://www.samag.com/documents/s=4072/sam0203d/sam0203d.htm I'm not sure if that's the one you were referencing or not. ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: theoretical nfs question
On Tue, Jun 18, 2002 at 01:11:59PM -0700, Keith Morse wrote: > > I also have a reference to www.samag.com. You'll need to search on their > website. It was in #3, vol. 11 cover date March 2002. I'm afraid the article isn't availible via sam's website. Emmanuel ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: theoretical nfs question
On Tue, 18 Jun 2002, daniel wrote: > is it possible to tunnel nfs through ssh? > if so, how? > I also have a reference to www.samag.com. You'll need to search on their website. ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: theoretical nfs question
Hello daniel, Tuesday, June 18, 2002, 1:09:34 PM, you textually orated: d> is it possible to tunnel nfs through ssh? d> if so, how? Some questions best left for Google searches. ;) http://www.google.com/search?hl=en&ie=UTF8&oe=UTF8&q=tunnel+nfs+through+ssh Have fun, -- _ Brian Ashe CTO [EMAIL PROTECTED] Dee-Web Software Services, LLC. http://www.dee-web.com/ - ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
theoretical nfs question
is it possible to tunnel nfs through ssh? if so, how? _ daniel a. g. quinn starving programmer without law or compulsion, men would dwell in harmony - lau tzu, "tao te ching: chapter xxxii" ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: hypothetical nfs question (newbie)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ed Wilts wrote: >> how stupid/dangerous would it be to run a server from home running nfs so >i >> could access it from work? > >Bluntly put, very stupid and dangerous. NFS is affectionately known to >stand for No F*cking Security. Basically the protocol works by trusting the >client. Since you can not trust the client in a wide-area scenario, you're >opening yourself up for disaster. You could get away with exposing a small >subset of your files to read-only NFS access, but anything other than that >can be written is wide-open to the world. No quarrel with the above, but I'd suggest that it's more justifiable if you are restricting the export to a net block which you control, or to a single address. If you're only connecting from a single static IP address, and you have faith that you alone control that address, you might be ok with this. But be aware that we're talking about cleartext traffic here, so the data itself is exposed, which may or may not matter to you. The preferred quick-and-dirty here is definitely an ssh tunnel, and even then only from a trusted client. - -d - -- David Talkington PGP key: http://www.prairienet.org/~dtalk/0xCA4C11AD.pgp - -- http://setiathome.ssl.berkeley.edu/pale_blue_dot.html -BEGIN PGP SIGNATURE- Version: PGP 6.5.8 Comment: Made with pgp4pine 1.75-6 iQA/AwUBPGMx179BpdPKTBGtEQKAPgCfUd+zyVmoPfbpfzzizrtzygHSnPwAn3us bOmU4rrCtYomz7trHzSs4L6S =sKpt -END PGP SIGNATURE- ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: hypothetical nfs question (newbie)
> how stupid/dangerous would it be to run a server from home running nfs so i > could access it from work? Bluntly put, very stupid and dangerous. NFS is affectionately known to stand for No F*cking Security. Basically the protocol works by trusting the client. Since you can not trust the client in a wide-area scenario, you're opening yourself up for disaster. You could get away with exposing a small subset of your files to read-only NFS access, but anything other than that can be written is wide-open to the world. .../Ed Ed Wilts Mounds View, MN, USA mailto:[EMAIL PROTECTED] ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: hypothetical nfs question (newbie)
daniel wrote: > just a quick hypothetical question: > > as i understand it, nfs allows linux boxes to mount another computer's > directory structure onto the host machine, so my question is: > > how stupid/dangerous would it be to run a server from home running nfs so i > could access it from work? I've done it--once, 9 years ago, for 10 minutes. (FTP wasn't working, and I needed to move a file to a server I was maintaining in Bulgaria.) It's not a good idea, as anyone able to connect to the network in between can listen to your traffic (see your files) as the traffic goes across the wire. Even if you protect your server so that only certain clients can send NFS requests to it, a man-in-the-middle attack could change your IO requests... Investigate scp (man ssh, man sshd) and winscp (winscp.org) for moving your files around instead. Alan -- Alan Peery [EMAIL PROTECTED] ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: hypothetical nfs question (newbie)
On Thu, 2002-02-07 at 16:25, Tom Curl wrote: > Not a good idea at all Dan, unless you tunnel it through ssh or a VPN. > Otherwise you risk a good chance that someone else can mount the volume > you are exporting. > > Tom > I'll second that. All of your files would be accessed in the clear, where anyone could intercept them. Security aside, running NFS mounts over a potentially slow network (imagine <= 56k) would be excruciatingly painful. Dan, you could try using gftp in combination with sftp if you just need to transfer files back and forth. Carey -- == <> Carey F. Cox, PhD | PHONE: (318) 257-3770 <> <> Assistant Professor| FAX: (318) 257-2306 <> <> Dept. of Mech. Eng.| EMAIL: [EMAIL PROTECTED]<> <> Louisiana Tech University | WEB: http://www.latech.edu/~cfcox <> == ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: hypothetical nfs question (newbie)
Not a good idea at all Dan, unless you tunnel it through ssh or a VPN. Otherwise you risk a good chance that someone else can mount the volume you are exporting. Tom On Thu, 2002-02-07 at 17:11, daniel wrote: > just a quick hypothetical question: > > as i understand it, nfs allows linux boxes to mount another computer's > directory structure onto the host machine, so my question is: > > how stupid/dangerous would it be to run a server from home running nfs so i > could access it from work? > > > > ___ > Redhat-list mailing list > [EMAIL PROTECTED] > https://listman.redhat.com/mailman/listinfo/redhat-list ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
hypothetical nfs question (newbie)
just a quick hypothetical question: as i understand it, nfs allows linux boxes to mount another computer's directory structure onto the host machine, so my question is: how stupid/dangerous would it be to run a server from home running nfs so i could access it from work? ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
NFS question
Hey there, got a question for you. I am setting up a cluster that requires a nfs mounted /home. I have the exports file setup correctly. /home (rw,no_root_squash) # Home mounted from server The problem I am having is that I had this setup working and the machines would mount /home automatically. I then shutdown the whole setup and I get an error stating that I have an 'mount : RPC: Time Out'. Does anyone have any clues as to how to fix this? I am running an Intel box with RH6.2 and ALL available updates. Now mind you, I can mount this /home directory via NFS on the same machine. I can't do it from the 6 other slave nodes. Any help would be appreciated. Thanks Kevin -- Kevin Wood Atipa Linux Solutions 850 East Industrial Park Drive Suite 8 Manchester, NH 03109 P(603)622-7171 x 15 F(603)622-7272 ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
Re: NFS Question
On Fri, 27 Oct 2000 [EMAIL PROTECTED] wrote: > Hey there, question for you. > > I did a server install on a group of machine and then applied the > updates. I am running RH6.2. The problem I have is that when the > machine starts up, I get all the NFS daemons starting up, but when I do > a ps ax, I get no listing. Also, when I restart the daemons from the > command line, all I get is a carriage return, no NFS OK and so on. > I am using the command /etc/rc.d/init.d/nfs stop and start and it does > this. Anybody have any ideas what is up? Any help would be apprciated. > > Kevin You probably don't have anything in /etc/exports. Try it as a test: put anything in /etc/exports /mnt/cdrom for example (assuming you first mounted a cd on /mnt/cdrom) Then run /etc/rc.d/init.d/nfs start you will see several messages saying that it is starting up nfs services (Starting NFS services, Starting NFS quotas, Starting NFS mountd, Starting NFS daemon) Look at ps (ps aux | grep nfs) and you will see several nfsd's running). Then /etc/rc.d/init.d/nfs status will also tell you that nfs is running. Then /etc/rc.d/init.d/nfs stop and it will tell you Shutting donw NFS mountd Shutting down NFS daemon ... and ps will show that nfs stopped. Thus, if /etc/exports is non-existant or empty, nfs will not successfully start up. Be sure you know how you want to export file systems (read only? read/write? available to whole world or only to certain systems?) before you leave nfs up. -- *** Jerry WinegardenOIT/Technical Support Duke University [EMAIL PROTECTED]http://www-jerry.oit.duke.edu *** ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
NFS Question
Hey there, question for you. I did a server install on a group of machine and then applied the updates. I am running RH6.2. The problem I have is that when the machine starts up, I get all the NFS daemons starting up, but when I do a ps ax, I get no listing. Also, when I restart the daemons from the command line, all I get is a carriage return, no NFS OK and so on. I am using the command /etc/rc.d/init.d/nfs stop and start and it does this. Anybody have any ideas what is up? Any help would be apprciated. Thanks Kevin -- Kevin Wood Atipa Linux Solutions 850 East Industrial Park Drive Suite 8 Manchester, NH 03109 P(603)622-7171 x 15 F(603)622-7272 ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo/redhat-list
NFS Question -FIXED!
It would appear that I needed to move the NFS daemon from S60nfs to S20nfs. For some reason with it loading sooner, it fixed the problem. Thought someone might be interested in what I found. Thanks -- Kevin Wood DCG Computers, Inc./Atipa Linux Solutions 850 East Industrial Park Drive Suite 8 Manchester, NH 03109 P(603)622-7171 x 15 F(603)622-7272 -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.
NFS Question
Hey there, got a question for you all: I have setup a cluster running RH 6.2. Each system mounts /home from the server. I have this added into the /etc/fstab as such: 192.168.0.250:/home/homedefaults1 1 I also have /home exported on the server as /home (rw,insecure,no_root_squash) The problem I am running into is that when the systems start and mount /home I get an 'RPC communication error: Connection Refused' yet, when I log in and type 'mount /home', it goes through like nothing is wrong. Any ideas on how to fix this? Let me know. Thanks Kevin -- Kevin Wood DCG Computers, Inc./Atipa Linux Solutions 850 East Industrial Park Drive Suite 8 Manchester, NH 03109 P(603)622-7171 x 15 F(603)622-7272 -- To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.
PCNFS/NFS Question
Hi, We have a RH 4.2 box setup at work to be used as a NFS server for a couple of PC's running DOS and PCNFS (very old version of PCTCP). Each morning the systems are rebooted (DOS systems) and they load up PCTCP and mount a directory on our Linux box, download some files, then reboot without PCTCP. As far as I can tell there is no log made of this action anywhere on the Linux box. I know that I could modify the autoexec.bat to write a file to the Linux system when this happens but I'm trying to avoid this if possible. What I would like is to be able to see if this action really took place or not and at what time/date it happened. Is there anyway to find out if this action actually happened or a log file that I might be missing of what actually happened on the Linux box? Looking though all the NFS documentation I could locate I don't see anywhere that a log file is created or logged to, on a simple mounting of a Linux drive and copying of files. Any help would be appreciated. Thanks. [EMAIL PROTECTED] -- PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES! http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.
Re: NFS Question
Steve Curry wrote: > > Ok thanks ahead of time for reading this email. > > I would like to have a question about Linux NFS explain to me. It's in my > understanding that if we(my company) have Linux with NFS and Samba > installed, we can from say from a Win95/NT box install software to the > Linux hard drive and then access that application via the Win95/NT machine. > So say for example if I'm installing Office 97 and in the setup wizard I > could choose the Linux box as the hard drive I would like the software > installed to. And then after installation I can double click on my Office > 97 Word application and it will load up? If anyone could direct me to some > books it would be great. > > Thanks, > > Steve Curry > Just to give you some help on how to narrow your search, Samba is actually what you are wanting to use to share Linux drives to Win95/NT machines. I don't think that there is a free version of NFS for Windows (could be wrong). With Samba you can set up your linux box to act as a NT server or just another workstation, but it does understand Windows Shares. If you are looking for info on Samba, http://samba.anu.edu.au/samba appears to be a good source. -- Keith Schoenefeld -- ~ ~ Keith Schoenefeld Systems Manager ~ ~ The University of Tulsa[EMAIL PROTECTED] ~ ~ Keplinger Hall Room #L1-A (918) 631-2548 ~ ~ 600 S. College Ave~ ~ Tulsa, OK 74104-3189 ~ ~ -- PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES! http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.
NFS Question
Ok thanks ahead of time for reading this email. I would like to have a question about Linux NFS explain to me. It's in my understanding that if we(my company) have Linux with NFS and Samba installed, we can from say from a Win95/NT box install software to the Linux hard drive and then access that application via the Win95/NT machine. So say for example if I'm installing Office 97 and in the setup wizard I could choose the Linux box as the hard drive I would like the software installed to. And then after installation I can double click on my Office 97 Word application and it will load up? If anyone could direct me to some books it would be great. Thanks, Steve Curry -- PLEASE read the Red Hat FAQ, Tips, Errata and the MAILING LIST ARCHIVES! http://www.redhat.com/RedHat-FAQ /RedHat-Errata /RedHat-Tips /mailing-lists To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe" as the Subject.