azure 클 라 우 드 에 Oacle11g 의 vnc 설치 환경 을 준비 합 니 다.

6280 단어 Oacle
1.서버 에 VNC 서비스 가 설치 되 어 있 는 지,설치 되 어 있 지 않 은 지 확인 하고 서버 에 VNC 가 설치 되 어 있 는 지 확인 하 는 명령 은 다음 과 같 습 니 다.
yum 또는 rpm 패키지 2 가지 설치 방식 모두 check:

[root@hch_test_pd_121_129 ~]# ps -eaf|grep vnc                                                                  
root   15895 15846 0 15:04 pts/1  00:00:00 grep vnc
[root@hch_test_pd_121_129 ~]#
[root@hch_test_pd_121_129 ~]# rpm -qa | grep vnc
[root@hch_test_pd_121_129 ~]#
2,vnc 소프트웨어 설치
yum 설치 명령:

yum install tigervnc tigervnc-server Cy                                                                           
yum install -y libvncserver*
순조롭게 설치 되 었 습 니 다.check 하 세 요:

[root@hch_test_pd_121_129 ~]# rpm -qa | grep vnc                                                              
tigervnc-1.1.0-16.el6.centos.x86_64
libvncserver-devel-0.9.7-7.el6_6.1.x86_64
tigervnc-server-1.1.0-16.el6.centos.x86_64
libvncserver-0.9.7-7.el6_6.1.x86_64
[root@hch_test_pd_121_129 ~]#
3,gnome 소프트웨어 설치
이것 은 그래 픽 인터페이스 잠 금 생 성 에 필요 한 구성 요소 입 니 다:

yum install -y gnome*                               
yum install libXfont -y
yum install xorg-x11-xfs 
yum install xorg-x11-xfs-utils 
yum install xorg-x11-xinit 
yum install xorg-x11-xdm 
yum install xorg-x11-fonts* 
4,vncserver 설정
vncserver 를 설정 합 니 다.서버 에 원 격 으로 연 결 된 데스크 톱 창 초기 화 크기 를 보 여 줍 니 다.기본 값 은 800 x600 입 니 다.1280 x960 과 같은 습관 적 인 모드 로 설정 할 수 있 습 니 다.

[root@hch_test_pd_121_129 ~]# vim /etc/sysconfig/vncservers                                                    
 
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 800x600"
5,vncserver 비밀번호 설정
yueworld 로 설정 하고 vnc 를 시작 하기 전에 비밀 번 호 를 설정 해 야 합 니 다:

[root@hch_test_pd_121_129 ~]# vncpasswd                                                                    
Password:
Verify:
[root@hch_test_pd_121_129 ~]#
6,시작 정지 vncserver
시작 명령 servicevncserver start:

[root@hch_test_pd_121_129 ~]# service vncserver start                                                         
     VNC    :1:root xauth: creating new authority file /root/.Xauthority
 
New 'hch_test_pd_121_129:1 (root)' desktop is hch_test_pd_121_129:1
 
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/hch_test_pd_121_129:1.log
 
                              [  ]
[root@hch_test_pd_121_129 ~]#
명령 정지 servicevncserver stop:

[root@hch_test_pd_121_129 ~]# service vncserver stop                                                         
   VNC    :1:root                  [  ]
[root@hch_test_pd_121_129 ~]#
다시 시작 명령 servicevncserver 다시 시작:

[root@hch_test_pd_121_129 ~]# service vncserver restart                                                       
   VNC    :1:root                  [  ]
     VNC    :1:root
New 'hch_test_pd_121_129:1 (root)' desktop is hch_test_pd_121_129:1
 
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/hch_test_pd_121_129:1.log
 
                              [  ]
[root@hch_test_pd_121_129 ~]#
7,xstartup 시작 명령 설정
/root/.vnc/xstartup 명령 을 다음 과 같이 설정 합 니 다.

[root@hch_test_pd_121_129 ~]# more /root/.vnc/xstartup               

#!/bin/sh 
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
#xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &
gnome-session &
[root@hch_test_pd_121_129 ~]#
PS1:
gnome 이미지 인터페이스 를 사용 하려 면 다음 두 줄 을 주석 해 야 합 니 다.

xterm -geometry80x24+10+10 -ls -title “$VNCDESKTOP Desktop” & 
twm & 
다음 줄 을 추가 합 니 다:

gnome-session &
PS2:
블랙 스크린 이 있 으 면 배경 로 그 는 다음 과 같은 오 류 를 알 립 니 다.

Sat May 7 15:05:35 2016
 vncext:   VNC extension running!
 vncext:   Listening for VNC connections on all interface(s), port 5901
 vncext:   created VNC server for screen 0
/root/.vnc/xstartup: line 4: /etc/X11/xinit/xinitrc: No such file or directory
/root/.vnc/xstartup: line 4: exec: /etc/X11/xinit/xinitrc: cannot execute: No such file or directory
그리고 서버 에 가서 xinitrc 를 검색 하지 못 하면 다음 과 같 습 니 다.

[root@xxx rpms]# ll /etc/X11/xinit/xinitrc
ls: cannot access /etc/X11/xinit/xinitrc: No such file or directory
[root@xxx rpms]# find / -name xinitrc
[root@xxx rpms]# 
사용 하 는 방안 은/root/.vnc/xstartup 에 있 는 exec/etc/X11/xinit/xinitrc 를 주석 하여 vncserver 에 기본 값 을 선택 하 게 하고 vnc 에 기본 그래 픽 인터페이스 프로그램 을 불 러 오 면 ok 입 니 다.
8,xstartup 권한 변경
많은 사람들 이 간과 하기 쉬 운 문제 이자 접속 성공 후 블랙 스크린 을 만 드 는 원인 중 하나 다.
CentOS 에서 xstartup 의 파일 경 로 는:/root/.vnc/(locatexstartup 을 통 해 xstartup 의 파일 경 로 를 볼 수 있 습 니 다)
그래서 실행 해 야 합 니 다:chmod 777/root/.vnc/xstartup 에서 권한 을 부여 합 니 다.다음 vncserver 를 다시 시작 합 니 다.
9,로 컬 윈도 우즈 설치 vnc 뷰 어,원 격 접근
windows 에 vnc 클 라 이언 트 를 설치 하고 다운로드 주소:http://pan.baidu.com/s/1skADLrZ;패키지 이름,RealVNCcncgr.rar,이 컴퓨터 windows 에 설치 한 후 연결 을 시작 합 니 다.연결 주 소 는 다음 과 같 습 니 다.D:\study\csdn\0801.png:

비밀 번 호 를 입력 한 후 들 어가 면'응용 프로그램'-'시스템 도구'-'터미널'에 들 어가 서 터미널 을 데스크 톱 에 끌 어 다 놓 고 데스크 톱 의 터미널 을 두 번 클릭 하면 Oracle 을 설치 할 수 있 습 니 다.다음 과 같 습 니 다.D:\study\csdn\\0802.png:

이렇게 하면 vnc 를 통 해 centos 6.7 의 Oacle 서버 를 원 격 으로 조작 할 수 있 습 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기