yum install -y tigervnc-server #安裝vnc服務端,一般執行此句即可yum groupinstall -y 'x window system' 'desktop' #如果沒安裝桌面環境,執行安裝
yum install -y vinagre #vnc客戶端,一般不用在服務端也安裝客戶端;windows客戶端一般用realvnc
vncserver :10輸入桌面的連線密碼,最小6個字元。
vnc server不是ip:port而是ip+桌面號,所以沒必要知道vnc執行在哪個埠(vnc 0號桌面埠預設為5900,1號為5901,依此類推)。
連線密碼為啟動桌面號時輸入的密碼。
連上後,使用者身份為該桌面號的啟動使用者。
在不需要vnc後將之停掉是安全的要求。
vncserver -kill :10需要以遠行該桌面使用者來停止該桌面號,root也不能停止其他使用者啟的桌面。
生產的機器多是沒有安裝桌面環境的,對於安裝要以圖形介面安裝的軟體,常用vnc配合實現圖形介面跳轉。
機器:client--代表使用者自己的機器,有vnc client,假設ip為192.168.1.1。
gateway--代表跳板機,有桌面環境和vnc server,假設ip為192.168.1.2。
server--代表生產中的伺服器,沒有桌面環境,假設ip為192.168.1.3。
現要求:
在sserver上以圖形介面安裝oracle資料庫。
操作:gateway--vncserver :10
client--用vnc客啟端連線192.168.1.2:10,並執行:xhost +
sserver--export display=192.168.1.2:10 && ./runinstaller
這樣oracle的安裝介面,會出現在client的vnc上。
原因:1)沒有執行xhost +
2)要在client連線上的vnc裡執行xhost +,而不是在gateway上執行。
VNC安裝配置及連線(CentOS)
yum install y tigervnc server 安裝vnc服務端,一般執行此句即可 yum groupinstall y x window system desktop 如果沒安裝桌面環境,執行 安裝yum install y vinagre vnc客戶端,一般不用在服務端也安裝客戶端 ...
vnc安裝配置
root xcorder vncserver you will require a password to access your desktops.password verify xauth creating new authority file root xauthority new xcord...
VNC安裝配置
vncserver端安裝 1.yum或rpm安裝vncserver端 命令yum y install vnc server 或者rpm方式 rpm ivh vnc server 2.編輯配置檔案 vim etc sysconfig vncservers 新增兩行檔案 第一行 vncservers 2...