Redhat linux5.5下Oracle 10g 安裝配置手冊二

第三步:若是是在windows系統遠程鏈接liunx系統進行安裝時,須要使用liunx系統自帶的VNC服務,通常安裝liunx系統時自帶安裝有,但須要配置相關參數才能使用。 數據庫

一、下載一個鏈接liunx系統的vnc客戶端,vnc.exe安裝軟件。也能夠使用IE瀏覽器鏈接VNC服務端。 vim

二、配置VNC參數 windows

[root@test ~]# rpm -qa | grep vnc  查看軟件包是否安裝 瀏覽器

vnc-4.1.2-14.el5_3.1
vnc-server-4.1.2-14.el5_3.1 服務器

[root@test ~]# service vncserver status  查看一下本機器的vnc運行狀態
Xvnc is stopped
[root@test ~]# service vncserver start    vncserver還未進行初始化配置
Starting VNC server: no displays configured session

[root@test ~]# vncserver   建立密碼用來登錄遠程登錄SVN用的(這裏是root用戶登錄,要安裝oracle,必須 切換成oracle下,再建立一個密碼,用來登錄遠程的liunx系統
You will require a password to access your desktops. oracle

Password:root   這裏取 root
Verify:root        重複一次確認 app

New 'test.localdomain:1 (root)' desktop is test.localdomain:1
dom

Creating default startup script /root/.vnc/xstartup           生成一個文件,修改此文件能夠登陸窗口模式
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/test.localdomain:1.log
ui

su - oralce

[oracle@test ~]# vncserver 

You will require a password to access your desktops.

Password:oracle 
Verify:oracle        

New 'test.localdomain:2 (oracle)' desktop is test.localdomain:2 

Creating default startup script /home/oracle/.vnc/xstartup 
Starting applications specified in /home/oracle/.vnc/xstartup 
Log file is /home/yan/.vnc/test.localdomain:2.log

修改此xstartup文件改變登錄模式

[oracle@test ~ .vnc]$ vi 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 &
[oracle@test ~ .vnc]$ 

一樣方式修改 root用戶建立的xstartup文件

[root@test ~ .vnc]$ vi 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 &
[root@test ~ .vnc]$ 

[root@test ~]#vim /etc/sysconfig/vncservers   修改vncservers文件 
# doing so through a secure tunnel.  See the "-via" option in the
# `man vncviewer' manual page.
  VNCSERVERS="1:root 2:oracle"
VNCSERVERARGS[1]="-geometry 800x600 "
VNCSERVERARGS[2]="-geometry 800x600 "

[root@Test-~]# service vncserver restart 重啓vnc服務

此時經過192.168.251.104:5901 192.168.251.104:5902能夠訪問遠程的liunx系統了。

5901端口對應的是root用戶登錄,5902對應的是oracle用戶登錄。安裝oracle數據庫,用5902端口就行。


注意:遠程登錄不了

一、vnc鏈接服務器時只能進入終端,不能進入桌面。。。。
緣由是vncserver配置有問題,進入vim /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 &

二、防火牆影響

三、vi host.conf 
    添加127.0.0.1 localhost  vnc遠程客戶端才能鏈接

相關文章
相關標籤/搜索