CentOS7.4安装Oracle数据库报错:DISPLAY not set. Please set the DISPLAY and try again

错误如下:

>>> Ignoring required pre-requisite failures. Continuing...
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2018-09-03_10-08-25PM. Please wait ...
DISPLAY not set. Please set the DISPLAY and try again.
Depending on the Unix Shell, you can use one of the following commands as examples to set the DISPLAY environment variable:
- For csh:  			% setenv DISPLAY 192.168.1.128:0.0
- For sh, ksh and bash: 	$ DISPLAY=192.168.1.128:0.0; export DISPLAY
Use the following command to see what shell is being used:
	echo $SHELL
Use the following command to view the current DISPLAY environment variable setting:
	echo $DISPLAY
- Make sure that client users are authorized to connect to the X Server.
To enable client users to access the X Server, open an xterm, dtterm or xconsole as the user that started the session and type the following command:
% xhost +
To test that the DISPLAY environment variable is set correctly, run a X11 based program that comes with the native operating system such as 'xclock':
	% 
If you are not able to run xclock successfully, please refer to your PC-X Server or OS vendor for further assistance.
Typical path for xclock: /usr/X11R6/bin/xclock

解决办法:

切换到root用户,执行以下命令:

[root@solin database]# export DISPLAY=:0.0
[root@solin database]# xhost +
access control disabled, clients can connect from any host
[root@solin database]#

执行以上命令后,再次切换到oracle用户执行安装即可。

[root@solin database]# ./runInstaller

 

你可能感兴趣的:(◆问题及解决方案)