informix运行onmonitor报错(转)

[root@db01]# su - informix
[informix@db01]$ onmonitor
Termcap entry too long
Too many tc= indirections
Program stopped at "tb4_main.4gl", line number 71.
FORMS statement error number -1170.
The type of your terminal is unknown to the system.

需要执行:
export INFORMIXDIR=/informix
export TERMINFO=$INFORMIXDIR/etc/typetab 
export TERMCAP=$INFORMIXDIR/etc/termcap
或者 vi /informix/.profile
在里面添加
export INFORMIXDIR=/informix
export TERMINFO=$INFORMIXDIR/etc/typetab 
export TERMCAP=$INFORMIXDIR/etc/termcap
此后,退出informix用户,再次登陆即会执行该.profile文件,使该环境变量生效
但此时运行onmonit的时候出现:
Please enter the output filename and press Return >> 
Display all Status menu screens to a file.
不能用键盘上的左右键操作,需要用快捷键操作。
vi /informix/.bashrc
在里面增加
export INFORMIXDIR=/informix
export TERMINFO=$INFORMIXDIR/etc/typetab
export TERMCAP=$INFORMIXDIR/etc/termcap
后执行正常。
posted @ 2013-02-16 14:19  LEMONDOG  阅读(478)  评论(0)    收藏  举报