- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Can't startup service
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 01:21 PM
12-16-2004 01:21 PM
Can't startup service
#ll nfs
-rwxr-xr-x 1 root root 4522 Aug 1 2002 nfs
# pwd
/etc/rc.d/init.d
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 01:36 PM
12-16-2004 01:36 PM
Re: Can't startup service
if you're on a RH machine, using the command 'chkconfig --add nfs' will do it for you (if it's set up right), otherwise you'll need to manually create '/etc/rc.d/rc3.d/S60nfs' (or some such) to make sure it starts when the system hits run-level 3.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 04:56 PM
12-16-2004 04:56 PM
Re: Can't startup service
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 05:49 PM
12-16-2004 05:49 PM
Re: Can't startup service
chkconfig --list nfs
it should report that run levels 345 are ':on'. Runlevels 0126 are off. This is a good thing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 07:12 PM
12-16-2004 07:12 PM
Re: Can't startup service
Is there any error ?
use ps -ax|grep nfs
Is there nfs daemon ?
Secound
When your server start did you see messege like:
Starting NFS server or similar ?
Did you check /var/log/messages for error ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 08:52 PM
12-16-2004 08:52 PM
Re: Can't startup service
suse: "chkconfig -s mysqld on" or "yast->system->runlevel editor"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 09:36 PM
12-16-2004 09:36 PM
Re: Can't startup service
first check whether you have correct runlevel setting:
chkconfig --list | grep nfs
you should see somthing like this
nfs 0:off 1:off 2:off 3:on 4:off 5:off 6:0ff
if nfs is off on runlevel you boot, enable that by :
chkconfig --level 3 nfs on
(the principle is about adding start/stop links to rcx.d which start/stop service form init.d, therefore adding only nfs to init.d isn't sufficient)
rgds Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 09:45 PM
12-16-2004 09:45 PM
Re: Can't startup service
if you are using only nfs client,only running portmaper (AKA rcpbind) is needed
on server side must be running
mountd (AKA rpc.mountd)
nfslock (AKA rcp.lockd)
status (AKA nfstat or rpc.statd)
nfsserver (AKA nfs, nfsd)
nfs_acl
get it rpcinfo -p IP of server
nfstat you can get by
nfstat -s
rgds Jan