创建用户等前置工作完成后,
export DISPLAY=:0.0
/home/oracle/database/runInstaller -jreLoc /usr/lib/jvm/java/jre
报错
No protocol specified
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class sun.awt.X11.XToolkit
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class sun.awt.X11.XToolkit
google后,发现要在root下执行
xhost +127.0.01 后再到oracle用户下export DISPLAY=:0.0,然后再安装。
但发现xhost 出错
[root@m2m-46 database]# xhost +local:oracle
No protocol specified
xhost: unable to open display ":0.0"
No protocol specified
xhost: unable to open display ":0.0"
咨询同事得知这种情况要安装vncserver,但redhat的这个安装iso居然没有这个软件,
在网上查找到安装包VNC-5.0.3-Linux-x64-ANY.tar.gz(http://www.realvnc.com/download/get/1185/) ,解压后是一堆绿色软件,直接使用它自带的脚本安装到系统bin下。
在root下直接vncserver,说要添加key,于是又上网查找key(根据错误提示很容易查找)
添加key后vncserver成功。
继续xhost +127.0.01 成功
转oracle用户,
export LANG=C
/home/oracle/database/runInstaller
顺利进入安装界面。
参考:http://blog.sina.com.cn/s/blog_a32eff280100ykyq.html