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
01-25-2006 11:37 PM
01-25-2006 11:37 PM
Running 11i.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2006 11:50 PM
01-25-2006 11:50 PM
SolutionApplies to servers to.
/sbin/init.d
# contains startup scripts
/sbin/rc1.d rc2.d rc3.d
# contains soft links to startup scripts.
Softlink starting with a capital S starts something.
Softlink starting with a K stops something.
A script called init starts them all.
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2006 11:50 PM
01-25-2006 11:50 PM
Re: Startup
The standard HP-UX startup sequence is controled by '/sbin/rc' and the files in /sbin/init.d' ordered by the collating sequence of the names of symbolic link files called (S)tart and (K)ill scripts in '/sbin/rc?.d/'. Configuration variables for these scripts are found in 'etc/rc.config.d'.
The manpages for 'rc(1)' give a good, quick overview.
The document, below, gives an in-depth view:
http://docs.hp.com/en/934/startup.pdf
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2006 11:56 PM
01-25-2006 11:56 PM
Re: Startup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 12:33 AM
01-26-2006 12:33 AM
Re: Startup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 01:16 AM
01-26-2006 01:16 AM
Re: Startup
To see what startup programs are configured, you can take a look at, /sbin/init.d/ dir. It has got all the entries what you are looking for.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 01:46 AM
01-26-2006 01:46 AM
Re: Startup
here is an attachment about setting startup
scripts
Good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 01:47 AM
01-26-2006 01:47 AM
Re: Startup
here is an attachment about setting startup
scripts
Good Luck,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-26-2006 01:50 AM
01-26-2006 01:50 AM
Re: Startup
The HPUX startup scripts are, as the others have said, in multiple locations
/sbin/init.d
This scripts in this directory contain the commands to start and stop an application (all in one script per application). ther is a template script in this directory as well. The scripts do not actually get executed from here
/sbin/rcX.d
These directories actually execute the start/stop portions of the script. the X in the dorectory name denote the run level at the command execute. You will also note that the links in these directories all start with either a K or S followed by a number and a name. The S means run the start portion of the script, the K means run the stop portion of the script. The S's are eceuted as the system comes up, the K's are executed as the system comes down. You will find an interesting fact in the number portion of the name. the numbers of the complementry S and K links should add up to 1000.
/etc/rc.config.d
The directory contains a flag fle referenced in the dcript in /sbin/init.d. If the flag is 0 the script will not run. If it is 1, the script will run. This is useful if you do not want an application to startup.