在機房折磨很久弄好的自己 Mark 一下。 (測試環境rhel5.5)
vnc 之獨立服務設定
##步驟一:
(1)檢視系統是否安裝vnc服務(也可以在系統-管理員-服務裡查看並勾選開機自啟動)
# rpm -qa | grep vnc(如果有回傳值,類似vnc-server的值,表示已經安裝了vnc-server此步驟就可跳過。 )
(2)安裝vnc:
(进入挂载目录) # cd /rhdvd/Server (安装 vnc-server) # rpm -ivh vnc-server-4.1.2-14.el5_6.6.x86_64.rpm (安装 vnc-viewer) # rpm -ivh vnc-4.1.2-14.el5_6.6.x86_64.rpm
(3)驗證vnc-server套件是否安裝成功:
## rpm -qa vnc-server-4(显示 vnc-server-4.1.2-14.el5_6.6)
##View Code
步驟二:
#(1)執行vnc服務# vncservers(第一次執行需要輸入vnc密碼,此密碼為目前使用者root的vnc密碼)
(2)新增使用者和設定密碼並設定vnc密碼:
# useradd user001 (添加用户)
# passwd user001 (设置用户密码)
# su - user001 (切换用户)
# vncpasswd (设置vnc密码,密码文件在 /用户/.vnc/passwd)
(注意,這裡的vncpass只能在vnc本用戶下面來運作。例如要是想設定使用者名稱為user001的vnc認證密碼,需要先切換到user001用戶,之後再執行vncpasswd指令)
# # vi /etc/sysconfig/vncservers
####################### ########
# The VNCSERVERS variable is a list of display:user pairs. # # Uncomment the lines below to start a VNC server on display :2# as my 'myusername' (adjust this to your own). You will also # need to set a VNC password; run 'man vncpasswd' to see how # to do that. # # DO NOT RUN THIS SERVICE if your local area network is# untrusted! For a secure way of using VNC, see # <URL:http://www.uk.research.att.com/archive/vnc/sshvnc.html>.# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP. # Use "-nohttpd" to prevent web-based VNC clients connecting. # Use "-localhost" to prevent remote VNC clients connecting except when # doing so through a secure tunnel. See the "-via" option in the # `man vncviewer' manual page.# VNCSERVERS="2:myusername"# VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"VNCSERVERS="1:user001 2:user002 3:user003 4:user004" (添加) VNCSERVERARGS[1]="-geometry 1366x768 -AlwaysShared" (添加) VNCSERVERARGS[2]="-geometry 1366x768 -AlwaysShared" (添加) VNCSERVERARGS[3]="-geometry 1366x768 -AlwaysShared" (添加) VNCSERVERARGS[4]="-geometry 1366x768 -AlwaysShared" (添加)######View Code######### 說明:【1】VNCSERVERS=後面可以支援多用戶,以空格隔開,數字為連接埠號碼即桌面號。 ###### 【2】VNCSERVERARGS後面的[]裡面的資料要與VNCSERVERS後面對應使用者的值要一致。 VNCSERVERARGS基本參數有:###############
-geometry 桌面大小,缺省是1024x768分辨率-nohttpd 不监听HTTP端口,58xx端口(建议不写) -nolisten tcp 不监听X端口,60xx端口(建议不写) -localhost 只允许从本机访问(不写)-SecurityTypes None 登录不需要密码认证VncAuth,默认要密码认证-depth 表示色深,参数有8,16,24,32-AlwaysShared 默认只能有一个vncviewer连接(跟客户端配置也有关),一旦第2个连上去,第1个就被断开了,此参数允许同时连多个vncviewer######View Code######## ############################################################################步驟四:##################(1)啟動vncserver############
# service vncserver start (即时开启服务并生效) # /etc/init.d/vncserver start # service vncserver stop (即时关闭服务并生效) # /etc/init.d/vncserver stop # chkconfig vncserver on (将vncserver设置为开机启动,重启生效) # chkconfig vncserver off (将vncserver设置为开机不启动,重启生效)###(1)啟動vncserver############
# vi /home/用户/.vnc/xstartup (root用户为 /root/.vnc/xstartup)###
步骤五:
(1)配置VNC图形桌面环境
vnc都配置完毕并且正常运行,但是用VNC-Viewer登录后显示的屏幕却为灰色(也有黑色的),并且无法进行任何操作。
原来VNC xstartup程序中默认的设定值是启动twm,而不是GNOME或KDE。
【1】修改xstart文件:
# vi /home/用户/.vnc/xstartup (root用户为 /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" & (注解此行) gnome-session & (添加) # twm & (注解此行)
说明: 也可只注解最后一行 twm & ,并添加一行 gnome-session &。
也可只去掉3、4句注解。
最好方式是都改一下。
【2】修改完需重启vncserver:
# service vncserver restart (重启全部vnc桌面,不建议用此条命令) # vncserver -kill :1 (停止第一个桌面) # vncserver :1 (启动第一个桌面)
步骤六:
(1)配置防火墙
# vi /etc/sysconfig/iptables
内容如下:
# Firewall configuration written by system-config-securitylevel # Manual customization of this file is not recommended.*filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] :RH-Firewall-1-INPUT - [0:0]-A INPUT -j RH-Firewall-1-INPUT-A FORWARD -j RH-Firewall-1-INPUT-A RH-Firewall-1-INPUT -i lo -j ACCEPT-A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT-A RH-Firewall-1-INPUT -p 50 -j ACCEPT-A RH-Firewall-1-INPUT -p 51 -j ACCEPT-A RH-Firewall-1-INPUT -p udp --dport 5353 -d 224.0.0.251 -j ACCEPT-A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT-A RH-Firewall-1-INPUT -p tcp -m tcp --dport 631 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT (添加)-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT (添加)-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 5903 -j ACCEPT (添加)-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 5904 -j ACCEPT (添加)-A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited COMMIT
也可关闭防火墙(不建议):
# service iptables stop (即时关闭防火墙,重启失效) # chkconfig iptables off (永久关闭防火墙,重启有效)
步骤七:
192.168.10.131:1——这里的:1就是端口号,指的是5900+1,这个1是在/etc/sysconfig/vncservers里面指定的。
这个数字在100以下,不含100的时候可以直接用192.168.10.131:1来表示。
如果在vncservers里面指定的数值大于100 包含100的时候,在连接的时候就需要用到完整的端口数值。
如:在vncservers里面指定的是100,那么在连接的时候就应该是这样的:192.168.10.131:6000。
以上是Linux遠端桌面實作步驟的詳細內容。更多資訊請關注PHP中文網其他相關文章!