Operating System - HP-UX
1835989 Members
3307 Online
110088 Solutions
New Discussion

Ignite Create network archive problem - Run the Recovery Ui

 
Jennifer Lam
Advisor

Ignite Create network archive problem - Run the Recovery Ui

Hello All,
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
7 REPLIES 7
T G Manikandan
Honored Contributor

Re: Ignite Create network archive problem - Run the Recovery Ui

What is the present TERM set to.

$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
Ravi_8
Honored Contributor

Re: Ignite Create network archive problem - Run the Recovery Ui

Hi,

you need to export the DISPLAY
never give up
T G Manikandan
Honored Contributor

Re: Ignite Create network archive problem - Run the Recovery Ui

If you are running with the UI try also doing a

#unset DISPLAY
Jennifer Lam
Advisor

Re: Ignite Create network archive problem - Run the Recovery Ui

Hello,
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
T G Manikandan
Honored Contributor

Re: Ignite Create network archive problem - Run the Recovery Ui

I think probably you are working on a telnet session from the PC.

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
John Carr_2
Honored Contributor

Re: Ignite Create network archive problem - Run the Recovery Ui

Hi

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
John Carr_2
Honored Contributor

Re: Ignite Create network archive problem - Run the Recovery Ui

Jen

I just reread your last note you missed the $ before TERM on the export commands which is why they did not take :-) John.