- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Netapp FS Mount During boot
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-09-2007 09:52 PM
12-09-2007 09:52 PM
Netapp FS Mount During boot
I want to mount netapp NFS during boot on my system in some rcX.d directory. but when this script tries to run, it hangs there and system is not coming up. but the all file systems came up properly when i put that script in /sbin/rc file.
Please suggest.
Thanks
Awadhesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2007 10:17 PM
12-09-2007 10:17 PM
Re: Netapp FS Mount During boot
Specify Directory you want to mount in /etc/fstab file
>>when this script tries to run, it hangs there and system is not coming up
Did u try to put the script in /etc/rc.config.d direcotry or /sbin/init.d directory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2007 11:24 PM
12-09-2007 11:24 PM
Re: Netapp FS Mount During boot
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2007 03:13 AM
12-11-2007 03:13 AM
Re: Netapp FS Mount During boot
NFS software has to be started, before you can mount netapp directories!
Check your '/etc/rc.log', but I believe that you try to mount the directories too early!
At least you have to wait till:
Start NFS client subsystem
Output from "/sbin/rc2.d/S430nfs.client start" ....
So you can't run your script before this.
Maybe you also have to wait till:
Start NFS server subsystem
Output from "/sbin/rc3.d/S100nfs.server start"
----------------------------
That you've to test in which rcX.d you can include your script.
HTH
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2007 03:33 AM
12-11-2007 03:33 AM
Re: Netapp FS Mount During boot
What is the reason? You want it up sooner? You don't want it up permanently?
>my script is under /sbin/init.d directory.
As Volkmar mentions you need to read rc(1m) and link your script into the appropriate rcX.d directory and give it the appropriate sequence name, so your NFS client subsystem is up to do the mount.
>i put that script in /sbin/rc file.
You actually changed that file?