- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How do I restart the biod
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
06-01-2004 03:16 AM
06-01-2004 03:16 AM
I guess I can start it from SAM (Networking and Communication / Network Services - select NFS server and Clint - action: restart) - but can this be done without 'side effects' ie. affecting ongoing reads/writes to nfs-mounts?
From what I have read elsewhere the biod is not absolutely necessary - it 'just' improves performance. Any comments on that?
Is biod needed on both server and client?
Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2004 03:24 AM
06-01-2004 03:24 AM
SolutionYOu don't need biod to mount nfs directories on the client side but is highly recommended as it improves performance and soves file locking problems .
TO restart it , simply restart the client services .
#/sbin/init.d/nfs.client start .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2004 03:25 AM
06-01-2004 03:25 AM
Re: How do I restart the biod
you can use this :
#/sbin/init.d/nfs.client stop
#/sbin/init.d/nfs.client start
remember that this will stop all your process so you can try to start the biod with the start option first to see if it restarting the process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2004 03:25 AM
06-01-2004 03:25 AM
Re: How do I restart the biod
If NFS_SERVER is set to 1 in /etc/rc.config.d/nfsconf, you can easily start biod (and other necessary NFS server processes) by running /sbin/init.d/nfs.server start.
Jeff Traigle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2004 03:30 AM
06-01-2004 03:30 AM
Re: How do I restart the biod
Edit /etc/rc.config.d/nfsconf and set to 1 value all services that you need activate.
To activate NFS Client, execute:
# /sbin/init.d/nfs.client start
To activate NFS Server, execute:
# /sbin/init.d/nfs.server start
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-01-2004 03:36 AM
06-01-2004 03:36 AM
Re: How do I restart the biod
Jeff Traigle