- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Error on make_tape_recovery
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-09-2002 07:38 AM
05-09-2002 07:38 AM
I have been going through the process of updating all my 11.00 server's versions of ignite to version B.3.6.82. I have done this successsfully on several of my servers (N, L and K class servers). I have now one K-460 that is giving me the following errors:
WARNING: '/opt/mqm/bin/amqcrsta' is part of a circular link.
ERROR: Circular link error encountered. Aborting.
ERROR: list_expander returned an error.
ERROR: Failed to get the archive size and the list of files which will be in
archive.
======= 05/09/02 10:46:17 EDT make_tape_recovery completed unsuccessfully
Here is the upgrade process I have used:
1) use swremove to remove old version in this case 2.2.157
2) apply pax patch PHCO_25418
3) use swinstall to install new version.
I have all necessary dependencies for the patch.
Can you guys help me out here. I tried the search function as well as the Technical Knowledge Base to no avail.
Thanks in advance for your help
Chris
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 08:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 08:28 AM
05-09-2002 08:28 AM
Re: Error on make_tape_recovery
The make_tape_recovery is going as we speak.
the /opt/mqm/bin/amqcrsta is supposed to be linked to /opt/mqm/bin/amqcrsta_nd, as verified on my other servers with MQSeries. I wonder if this had any impacting problems with the application. But out of curiosity, why didn't my previous version care about this?
Anyway, thanks a ton!!!
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 08:51 AM
05-09-2002 08:51 AM
Re: Error on make_tape_recovery
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 08:56 AM
05-09-2002 08:56 AM
Re: Error on make_tape_recovery
This document gives an explanation why the old version of ignite, doesn't report the error. The added funtion has the "list_expander error" on that (TKB #8606206505):
http://us-support.external.hp.com/cki/bin/doc.pl/sid=a7c23ef20029ec5165/screen=ckiDisplayDocument?docId=200000055450228
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 09:31 AM
05-09-2002 09:31 AM
Re: Error on make_tape_recovery
Thanks anyways for your assistance
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2002 09:49 AM
05-09-2002 09:49 AM
Re: Error on make_tape_recovery
This was the document - TKB #8606206505:
Problem/Title:
"make_tape_recovery will report success even if error in creating archive"
Fix Text:
Ad following code to generate_flist....()
val_pclose = pclose(fp);
if (WIFEXITED(val_pclose)){
if (WEXITSTATUS(val_pclose)== 1){
Log(LOG_ERROR, LOG_TO_DEF,
"list_expander returned an error.");
return(ERROR_RETURN);
}else if (WEXITSTATUS(val_pclose)== 2){
Log(LOG_WARNING, LOG_TO_DEF,
"list_expander returned a warning,please check the log
file.");
warning_flag++;
}
}else{
Log(LOG_ERROR, LOG_TO_DEF,
"list_expander failed to exit correctly.");
return(ERROR_RETURN);
}
-----------------------------------------------
As this was an additional function that was not in the older version and might have been included in the new ones, I thought will point out this. This function included the 'list_expander' error as described in your original post. Sorry if it didn't help :((
just my 2 cents ..
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2002 07:13 AM
05-10-2002 07:13 AM
Re: Error on make_tape_recovery
Chris