- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Ignite Create network archive problem - Run the Re...
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-18-2003 04:23 PM
12-18-2003 04:23 PM
Ignite Create network archive problem - Run the Recovery Ui
I try to create archive for the system with HPUX B.10.20 & model: 9000/782/c240+. I am using Ignite-UX-10-20 B.4.3.123. I have a window pup up with error when I do archive:
syntax error:
mnr_ui program terminating due to error found in: /opt/ignite/ui/mnr.ui
Error: The interactive UI failed to start. check you terminal type.
I did try to check the file /opt/ignite/ui/mnr.ui on the error system with the system that I have make_net_recovery completed successfully! they are no different.
would any one help me with the problem. Thank you.
Regards,
Jen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 04:57 PM
12-18-2003 04:57 PM
Re: Ignite Create network archive problem - Run the Recovery Ui
$echo $TERM
Looks like the TERMINAL does not support UI.
From which system are you starting the process?
Just do a
#ttytype -s
and set the TERM value to that.
REvert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 04:59 PM
12-18-2003 04:59 PM
Re: Ignite Create network archive problem - Run the Recovery Ui
you need to export the DISPLAY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2003 05:07 PM
12-18-2003 05:07 PM
Re: Ignite Create network archive problem - Run the Recovery Ui
#unset DISPLAY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2003 01:33 PM
12-19-2003 01:33 PM
Re: Ignite Create network archive problem - Run the Recovery Ui
I check on both systems (Ignite server & client) the command echo, I get the result is dtterm as following:
echo $TERM
dtterm
I do command 'ttytype -s', I get the following:
ttytype -s
TERM='vt200' ; export TERM;
LINES=55; export LINES;
COLUMNS=137; export COLUMNS;
ERASE='^?'; export ERASE;
how come I have in 'ttytype -s' the TERM=vt200, but when I 'echo $TERM' that is dtterm, is that the problem? if it is so how do I make change? I meed help please.
I don't know what is the 'unset DISPLAY' command doing? would you let me know please.
Thank you.
Jen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2003 04:19 PM
12-19-2003 04:19 PM
Re: Ignite Create network archive problem - Run the Recovery Ui
Those TERM types are vt?? type terminals.
So make sure you set your TERM to vt?? before working on User interface(UI) screens like SAM,etc.
Also,you need to set the DISPLAY variable to open a GUI screen pointing to a ip.
As you are using UI you can just 'unset' that variable.
REvert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2003 07:59 PM
12-19-2003 07:59 PM
Re: Ignite Create network archive problem - Run the Recovery Ui
C240 is a workstation do you have a screen attached directly as a console or you remote accessing server.
login as root
if workstation
DISPLAY=dtterm
export $DISPLAY
if PC access
DISPLAY=vt220
export $DISPLAY
echo $TERM
now try ignite again
:-) John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2003 08:01 PM
12-19-2003 08:01 PM
Re: Ignite Create network archive problem - Run the Recovery Ui
I just reread your last note you missed the $ before TERM on the export commands which is why they did not take :-) John.