- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- "recursion too deep"
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-03-2001 06:04 PM
12-03-2001 06:04 PM
"recursion too deep"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 07:28 PM
12-03-2001 07:28 PM
Re: "recursion too deep"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 07:57 PM
12-03-2001 07:57 PM
Re: "recursion too deep"
Try this,
quote //
This message is caused by a problem in one of the startup scripts on the system.
The easiest way to isolate the offending script is with the following command:
/usr/bin/ksh -x /sbin/rc
Usually reading the offending script will reveal a syntax error.
//unquote
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:21 PM
12-03-2001 08:21 PM
Re: "recursion too deep"
I've seen this happening when you have some application that transverse directories and you have a symlink pointing to the parent directory.
Just a 2-cent tip.
Regards,
Paga
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:31 PM
12-03-2001 08:31 PM
Re: "recursion too deep"
S320hostname references /etc/rc.config and /etc/rc.config references a FOR loop to load all the system variables specified in /etc/rc.config.d/* and /etc/TIMEZOME:
=============================
for CFG_FILE in /etc/rc.config.d/* /etc/TIMEZONE
do
...
done
=============================
In this case, the "recursion too deep" likely lies with accessing /etc/rc.config.d/*. Check your configuration files in /etc/rc.config.d.
Hope this helps. Regards.
Steven Sim Kok Leong
Brainbench MVP for Unix Admin
http://www.brainbench.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2001 08:45 PM
12-03-2001 08:45 PM
Re: "recursion too deep"
PLease make sure that root shell in /etc/passwd is /sbin/sh
also check permission and syntax of file in rc directory.