728x90
반응형
* runInstaller 설치 시 오류 상황
$ ./runInstaller Starting Oracle Universal Installer... Checking Temp space: must be greater than 120 MB. Actual 370688 MB Passed Checking swap space: must be greater than 150 MB. Actual 5800 MB Passed Checking monitor: must be configured to display at least 256 colors >>> Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<< Some requirement checks failed. You must fulfill these requirements before continuing with the installation, Continue? (y/n) [n] y >>> Ignoring required pre-requisite failures. Continuing... Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-08-22_05-04-51PM. 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': % <full path to xclock.. see below> 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@ ~ ]# yum -y install xterm [root@ ~ ]# echo $DISPLAY(display를 확인) [root@ ~ ]# export DISPLAY=:0 [root@ ~ ]# xhost + access control disabled, clients can connect from any host [root@ ~ ]# xclock (아날로그 시계 뜨는거 확인 후 닫기) [root@ ~ ]# su - oracle [oracle@ ~ ]$ xclock (Error: can't open display 에러 발생) [oracle@ ~ ]$ export DISPLAY=:0(display를 앞에서와 동일한 값으로 설정한다.) [oracle@ ~ ]$ xclock (다시 시계가 뜨는지확인) |
728x90
반응형
'Operating System > ORACLE' 카테고리의 다른 글
오라클 TABLESPACE 파일경로 확인 및 이동 (0) | 2023.11.07 |
---|---|
Oracle 11g 아카이브 로그 모드(archive log mode) 변경 (0) | 2023.07.14 |
Windows 10에 Oracle 12c 클라이언트 설치 (0) | 2023.02.16 |
[ORACLE] Directory 디렉토리 생성, 삭제, 변경 (0) | 2022.06.08 |
[ORACLE] 리두 로그 버퍼 (Redo log buffer) (0) | 2022.05.31 |