- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- startup order for emulex driver
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
09-07-2006 06:30 AM
09-07-2006 06:30 AM
startup order for emulex driver
I'm running RHAS 3 on a bl20p G4. This system has an emulex card in it that starts the driver after the mount script is run when booting. Is there away to have the emulex start up before the mount script so my san disk can be mounted via /etc/fstab?
Thanks
diane
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2006 11:06 AM
09-07-2006 11:06 AM
Re: startup order for emulex driver
I know it's cheating but can you not just put a "mount -a " in rc.local after the script that has done the scan for LUN's?
HTH
Ian
## ---------------------------------------------------------------------------##
Which is the only cheese that is made backwards?
Edam!
Tweets: @2techie4me
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 12:05 AM
09-11-2006 12:05 AM
Re: startup order for emulex driver
How would I get around the intial mount? When the system boots it tries to mount all the disks in fstab. When it gets to the san device it's unable to mount it because the emulex driver hasn't been started. So then the systems gives you an option to go into maintenance mode or reboot.
diane
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 02:09 AM
09-11-2006 02:09 AM
Re: startup order for emulex driver
I have this in one of our RHES3 servers with Emulex FC cards:
---- begin /etc/rc.modules -------------
#!/bin/sh
# Load SAN modules and do necessary init
# -- mkurkela 4.8.2004
. /etc/init.d/functions
action "Load Linux multipath support" modprobe multipath
action "Load Emulex FibreChannel storage driver" modprobe lpfc
action "Identify SAN volumes" devlabel reload
------ end /etc/rc.modules -------------
If you cannot arrange the driver to load before the mount phase, add the option "noauto" to the FC disk lines in /etc/fstab.
The mount script (and the mount -a command) will skip all disks marked with "noauto" option. You must then have explicit "mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-11-2006 03:18 AM
09-11-2006 03:18 AM
Re: startup order for emulex driver
I'll give the /etc/rc.modules a try.
diane