- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HP-UX startup message!
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
05-12-2003 08:19 PM
05-12-2003 08:19 PM
when my hp L2000 system startup and goes to the start application section, it says:configuring unconfigured software filesets...???and wait for about 10 miniutes, is it ok?
two of my servises in /sbin/rc2.d , named: S360xxx & S950XXX not started when system started, but in /var/adm/rc.log, it says the services has successfully started, why? the scipts is right, for when I excute /sbin/rc2.d/S360xxxx start, it runs ok!
thanks a lot!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 08:35 PM
05-12-2003 08:35 PM
Re: HP-UX startup message!
I've seen a few times where some services have indicated that they have started, but didn't. Unless you can afford another reboot to make sure, make a note for next time this system boots.
Regards
Michael
"When I have trouble spelling, it's called fat finger syndrome"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 08:39 PM
05-12-2003 08:39 PM
Re: HP-UX startup message!
The startup time depends on the applications you'll start at boot time, but 10 minutes seems to be ok.
"OK" in the rc.log means that return-code of the script is 0.
A possible problem is that you misses Environment settings in the startup script and you have set this environment in the loginshell.
Do you have an example of the startupscript ??
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 08:39 PM
05-12-2003 08:39 PM
Re: HP-UX startup message!
nslookup
ps -ef | grep named
You are porbably okay. There is no relationship to the configuring unconfigured filesets message and the services message.
The filesets message happens every time the system starts, and its somewhat analogous to Windows doing setup on a recently installed patch or program after a forced restart.
SEP
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
05-12-2003 08:56 PM
05-12-2003 08:56 PM
Re: HP-UX startup message!
1. some previously installed software are not configured. and hence the system is trying to configure the same. does this happen everytime you reboot?
swlist -l fileset -a state | grep installed.
there should be no output for this and all the sw filesets should be in configured set. if not, do an swconfigure manually look for any errors in sw logs.
2. as others have pointed out, the problem is most probably with your environment variables and related configurations files in /etc/rc.config.d/. check if there are any errors in them. also, see that there are no backup copies of configuration files in /etc/rc.config.d/ directory.
my 2 paise.
-balaji
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 10:38 PM
05-12-2003 10:38 PM
Re: HP-UX startup message!
Following is an example of my scripts!,please see what's wrong with it,why it not started! my 9000 system can't reboot arbitary for its services is important!thanks!
#!/sbin/sh
case $1 in
start)
/usr/local/sbin/sshd2 &
;;
stop)
ps -ef |grep sshd|grep -v grep|awk '{print $2}'|xargs kill
;;
esac
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 11:01 PM
05-12-2003 11:01 PM
Re: HP-UX startup message!
I had the same problem especially with sshd2 from openssh
try this:
...
case $1 in
start)
/usr/local/sbin/sshd2 &
sleep 90
;;
...
I don't know why, but it works
By the way: with your stop-command you 'll kill all sshd, so you will disconnect all users, especially yourself if you are connected via ssh
I append my sshd start-script so check what you need from it
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2003 11:03 PM
05-12-2003 11:03 PM
SolutionThe log which shows what happened when you tried to start ssh2d is found in /etc/rc.log.
In your script, you started ssh2d as a background process but it will be terninated when the script finishes. You must add nohup to protect ssh2d.
Bill Hassell, sysadmin