- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- usage:sleep time
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-12-2002 05:56 PM
06-12-2002 05:56 PM
usage:sleep time
The package starts up the database perfectly, but the message:
usage: sleep time
Continues to appear in my package script log until I halt the package.
Any suggestions?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2002 06:07 PM
06-12-2002 06:07 PM
Re: usage:sleep time
The sleep command is likely to be incorrectly used in your script. Search for the sleep command being used in the directory of cluster scripts.
# grep sleep *
Check for invalid syntax. The correct sleep syntax should be:
sleep [no. of seconds]
e.g.
# sleep 60
means sleep for 1 min.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2002 06:15 PM
06-12-2002 06:15 PM
Re: usage:sleep time
Mike-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2002 06:21 PM
06-12-2002 06:21 PM
Re: usage:sleep time
Try inserting print or echo statements in your scripts. Would help identify whether this error occurred outside or within your scripts. If it is within a script, the command could possibly be in another script called within this script.
Hope this helps. Regards.
Steven Sim Kok Leong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2002 07:27 PM
06-12-2002 07:27 PM
Re: usage:sleep time
Had to laugh at myself on this one. Had to assign values to the MONITOR_INTERVAL and TIME_OUT variables in ORACLE.sh to eliminate the usage message.
Thought I had already done it, but I missed it.. Thanx for pointing me in the right direction, as looking at each sleep statement made me realize that I needed to look at those variables.
Mike