Howdy,
I'm experimenting with setting up an NFS server, but I can't seem to connect to it once I have it set up. Here's what I did
edited /etc/exports to say :
Code:
/srv/NFS *(ro,no_root_squash)
I then restarted the NFS daemon
Code:
#/sbin/service nfs restart
And got green across the board. Everything should be set, but I get:
Code:
#mount 193.168.1.102:/srv/ /net/
mount to NFS server '193.168.1.102' failed: server is down.
I checked the server to see what the status:
Code:
]# /sbin/service --status-all
acpid (pid 2393) is running...
amd is stopped
anacron is stopped
atd (pid 2583) is running...
Configured Mount Points:
------------------------
Active Mount Points:
--------------------
hcid is stopped
sdpd is stopped
hidd is stopped
cpuspeed is stopped
crond (pid 2538) is running...
cupsd (pid 19563) is running...
cups-config-daemon (pid 2624) is running...
dc_client is stopped
dc_server is stopped
Device not specified in /etc/sysconfig/diskdump
gpm (pid 2528) is running...
hald (pid 2635) is running...
ptal-init is stopped.
Table: filter
Chain INPUT (policy ACCEPT)
target prot opt source destination
RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0
Chain FORWARD (policy ACCEPT)
target prot opt source destination
RH-Firewall-1-INPUT all -- 0.0.0.0/0 0.0.0.0/0
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
Chain RH-Firewall-1-INPUT (2 references)
target prot opt source destination
ACCEPT all -- 0.0.0.0/0 0.0.0.0/0
ACCEPT icmp -- 0.0.0.0/0 0.0.0.0/0 icmp type 255
ACCEPT esp -- 0.0.0.0/0 0.0.0.0/0
ACCEPT ah -- 0.0.0.0/0 0.0.0.0/0
ACCEPT udp -- 0.0.0.0/0 224.0.0.251 udp dpt:5353
ACCEPT udp -- 0.0.0.0/0 0.0.0.0/0 udp dpt:631
ACCEPT all -- 0.0.0.0/0 0.0.0.0/0 state RELATED,ESTABLISHED
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:22
REJECT all -- 0.0.0.0/0 0.0.0.0/0 reject-with icmp-host-prohibited
irattach is stopped
irqbalance is stopped
lisa is stopped
mdmpd is stopped
dbus-daemon-1 (pid 3425 2602) is running...
/etc/init.d/microcode_ctl: microcode device /dev/cpu/microcode doesn't exist?
Server address not specified in /etc/sysconfig/netdump
netplugd is stopped
Configured devices:
lo eth0 eth1
Currently active devices:
lo eth1
NetworkManager is stopped
rpc.mountd (pid 8566) is running...
nfsd (pid 8562 8561 8558 8557 8556 8555 8554 8553) is running...
rpc.rquotad (pid 8549) is running...
rpc.statd (pid 2278) is running...
nscd is stopped
ntpd is stopped
portmap (pid 6896) is running...
Process accounting is disabled.
rhnsd (pid 2614) is running...
rpc.idmapd (pid 2311) is running...
saslauthd is stopped
sendmail (pid 2517 2509) is running...
smartd (pid 2383) is running...
snmpd is stopped
snmptrapd is stopped
spamd (pid 18539 18538 18537 18536 18535 18533) is running...
sshd (pid 2474) is running...
syslogd (pid 2233) is running...
klogd (pid 2237) is running...
Xvnc is stopped
winbindd is stopped
xfs (pid 2564) is running...
xinetd (pid 2489) is running...
ypbind is stopped
Can anyone help me sort through this and get my NFS up and running? Thanks so much!