Ⅰ kvm怎麼樣與hdmi高清矩陣以及伺服器連接起來
KVM,是Keyboard Video Mouse的縮寫,KVM 通過直接連接鍵盤、視頻或滑鼠 (KVM) 埠,能夠訪問和控制計算機。KVM 技術無需目標伺服器修改軟體。這就意味著可以在BIOS環境下,隨時訪問目標計算機。KVM 提供真正的主板級別訪問,並支持多平台伺服器和串列設備。
主要呢是用於控制及訪問HDMI矩陣,一般通過串口協議對接即可!
具體方法就比較復雜,有需要具體操作的,可以追問,或者網路搜索「老向聊矩陣」免費視頻供您學習
Ⅱ linux怎樣啟動遠程kvm圖形界面
使用VNC軟體:
Linux下VNC配置詳解,以下配置為配置VNC詳細介紹。並解決了用VNC View登入發現畫面是灰色的問題
1. Linux下VNC的配置
首先在Linux的add/remove applications中的system tools下面安裝VNC-server服務安裝完成後直接輸入vncserver 會出現以下內容:
passwd: //只有這個帳號是第一次運行vncserver,才會要求你輸入連接的密碼。
verify:
New 'server1.linux:4 (demo)' desktop is server1.linux:1
Starting applications specified in /home/.vnc/xstartup
Log file is /home/.vnc/server1.linux:1.log
上面這段話表示起動了一個圖形終端,編號為1,要記住這個編號,等下登錄時需要提供這個編號。第一次啟動VNC一定要先直接輸入vncserver。如果你要停止這個進程,使用命令
vncserver -kill :1
啟動後就可以在客戶端上面輸入IP加剛才提到的那個編號即可登陸機器(xxx.xxx.xxx.xxx:1) 看到一個灰色的Xwindow桌面但上面什麼也沒有
運行過一次VNSERVER後會在HOME目錄下面生成一個.VNC文件夾(在開始啟動的時候可看到該文件夾的位置)註:該目錄為隱藏,可直接輸入路徑進入。修改xstartup文件,去掉unset SESSION_MANAGER 和exec /etc/X11/xinit/xinitrc 前面的注釋符號,將最後一行twm & 改成 gnome-session &
vi /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 &
重新啟動VNCSERVER即可
2、VNC的啟動/停止/重啟
#service vncserver start/stop/restart
關閉具體的vncserver命令:
vncserver -kill :1
vncserver -kill :2
3、設置密碼
#vncpasswd
4、客戶端登陸
在vnc客戶端中輸入:伺服器端IP:1或伺服器端IP:2
5、設置登陸到KDE桌面
註:很多情況下,提示VNC無法連接,或者提示10086錯誤都是沒有修改vncservers文件的問題,所以編輯該文件修改
# VNCSERVERS="1:myusername"
# VNCSERVERARGS[1]="-geometry 800x600"
這兩行問題一般都可以解決。
a.
[root@CentOS ~]# vi /etc/sysconfig/vncservers
# # Uncomment the line below to start a VNC server on display :1 # 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/vnc/sshvnc.html
# VNCSERVERS="1:myusername"
VNCSERVERS="1:root"
# VNCSERVERARGS[1]="-geometry 800x600"
VNCSERVERARGS[1]=」-geometry 800×600 -alwaysshared -depth 24″
-alwaysshared代表允許多用戶同時登錄 -depth代為色深,參數有8,16,24,32。
註:紅色部分就是被修改或增加的部分
b.
[root@centos .vnc]$ vi /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 & #set starting GNOME desktop startkde kde desktop
#twm &
#Text interface
註:紅色部分就是被修改或增加的部分
c.
重啟VNC即可。
vnc安裝 Oracle:
出現錯誤提示:「Xlib: connection to ":1.0" refused by server」
如下處理:
實用技巧:在Linux下設置xhost方法步驟
source:http://www.knowsky.com/397544.html
第一步:用root登陸linux,啟動vnc服務;
第二步:根據vnc起來的埠,設置export DISPLAY=localhost:1(1表示vnc在第一個tty上啟動的),vnc的啟動信息見附件1;
第三步:執行xhost +,並且提示「access control disabled, clients can connect from any host」才正確。
Linux下的操作日誌如下:
[root@localhost ~]# vncserverNew 'localhost:1 (root)' desktop is localhost:1Starting applications specified in /root/.vnc/xstartupLog file is /root/.vnc/localhost:1.log[root@localhost ~]# export DISPLAY=localhost:1 [root@localhost ~]# xhost +access control disabled, clients can connect from any host
在設置xhost時,出現了unable的問題。
使用上訴方法就可以搞定。
一下為我以root身份登錄的配置文件
[root@PC-223-CE ~]# 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/vnc/sshvnc.html>.
# VNCSERVERS="2:myusername"
# VNCSERVERARGS[2]="-geometry 800x600"
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 800x600 -alwaysshared -depth 24"
~
[root@PC-223-CE ~]# vi /root/.vnc/xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
xrdb $HOME/.Xresources
# [ -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 &
~
更改完後保存,重新啟動VNC即可
3.多個用戶登錄
linux的VNC可以實現多個用戶同時鏈接.方法如下
su 用戶名
vncserver (這里就是第二個用戶了)
第三個用戶是
su 用戶名
vncserver
添加完後需要在/etc/sysconfig/vncserver裡面添加這個用戶,不然就會出現登錄後都是灰色的
另外還需要 修改用戶目錄下的.vnc/xstartup文件
例:我的電腦上已經有一個root用戶,此時我還需要ocmSUSEr這個用戶可以VNC登錄
[root@linuxidc~]# su ocmsuser
[ocmsuser@linuxidcroot]$ vncserver
You will require a password to access your desktops.
Password:
Verify:
New 'ywei:2 (ocmsuser)' desktop is ywei:2
Creating default startup script /home/ocmsuser/.vnc/xstartup
Starting applications specified in /home/ocmsuser/.vnc/xstartup
Log file is /home/ocmsuser/.vnc/ywei:2.log
[ocmsuser@linuxidcroot]$ su - root
Password:
[root@linuxidc~]# 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="1:root"
VNCSERVERARGS[1]="-geometry 1280x800 -alwaysshared -depth 24"
VNCSERVERS="2:ocmsuser"
VNCSERVERARGS[2]="-geometry 1280x800 -alwaysshared -depth 24"
~
[root@linuxidc~]# cat /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 &
[root@linuxidc~]# cat /home/ocmsuser/.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 &
[root@linuxidc~]# cp /home/ocmsuser/.vnc/xstartup /home/ocmsuser/.vnc/xstartup.bak
[root@linuxidc~]# cp /root/.vnc/xstartup /home/ocmsuser/.vnc/xstartup
cp: overwrite `/home/ocmsuser/.vnc/xstartup'? yes
[root@linuxidc~]# service vncserver restart
Shutting down VNC server: 2:ocmsuser [ OK ]
Starting VNC server: 2:ocmsuser
New 'ywei:2 (ocmsuser)' desktop is ywei:2
Starting applications specified in /home/ocmsuser/.vnc/xstartup
Log file is /home/ocmsuser/.vnc/ywei:2.log
[ OK ]
Ⅲ KVM伺服器怎麼登錄
https://192.168.0.111:9443
https是協議,也有可能是http
192.168.0.111也就是指伺服器地址
9443是指埠。
Ⅳ kvm切換器怎麼切換
1、把KVM切換器的四組輸入端與四台主機正確連接。
Ⅳ 常見KVM設備的使用方法有哪些
KVM設備的出現無疑讓眾多數據運維人員從復雜的數據中心監管伺服器的日常繁瑣工作中解脫出來。同時對於網路企業來講,針對企業性質,合理選擇使用KVM切換器不僅可以節約公司成本消耗,同時也大大提升了機房管理人員的工作效率,節約時間。那麼,我們在使用KVM設備時,應該怎麼用才正確呢?
首先,要保證LCD控制平台已經接地,KVM切換器的信號線要連接主機,並且連接要正確;另一端的信號線的連接可以用任何的埠,為了區分每個埠,可以進行圖標標注。
其次,把電源線的母頭插入到KVM的電源插座中,公頭插入到交流電的電源插口上,然後打開電源,這樣KVM切換器就會發出聲音,再把鎖扣釋放了,把控制端從機櫃裡面完全拉出來,接下來再把顯示面板翻開。
接著,在KVM切換器供電之後,就開始工作了,再連接主機和轉接模塊,把相應的埠連接好,顯示屏上面就會出現相應的埠,然後按下回車鍵就可以使用了。按鍵內的橙燈和LED數碼管會成跑馬燈式的閃爍,在輸入密碼之前,會一直出現這種情況。
最後,如果打開伺服器或者是電腦的電源,所連接的相關埠的按鍵,其指示燈都是顯示綠色的;如果把前面板上面的埠數字按下去,那麼相對應的埠按鍵,其指示燈都是顯示橙色的,這樣就可以對主機進行操作了。
(更多kvm切換器參數及型號:itkvm.com)
在使用KVM切換器的時候,大家可以按照上面的方法去操作,每一個步驟都要做到准確無誤,這樣才能保證順利使用,如果在使用的過程中,有任何的問題的話,都是及時聯系專業的人員進行處理,以免影響正常的工作。
itkvm.com
Ⅵ kvm怎麼用
切換器(KVM)分類:
按網路環境分:基於IP和非IP的(遠程式控制制和一般應用)
按設備環境分:機械和電子的(手動和自動)
按安裝方式分:台式和機架式
多計算機切換器按照不同的標准,可以有不同分類。例如按工作模式,可以分為模擬KVM和數字KVM;按應用的范圍,可以分為高中低三類;按網路環境,可分為基於IP和非IP的。
模擬KVM與數字KVM
模擬KVM主要是早期的一些產品,應用於距離不遠的機房或者本地單一機櫃,價格也比較低,對中小企業來說具較高的性價比。
數字KVM則是對模擬式的升級,因為我們要管理的主機可能分布在各個地方,因此數字KVM整合了IP網路技術,只要網路暢通,那麼網管人員就可以對任意地點的伺服器進行管理,包括Internet上的主機。
kvm參數:itkvm.com
Ⅶ kvm怎麼使用
KVM是鍵盤(Keyboard)、顯示器(Video)、滑鼠(Mouse)的縮寫。KVM技術的核心思想是:通過適當的鍵盤、滑鼠、顯示器的配置,實現系統和網路的集中管理和提供起可管理性,提高系統管理員的工作效率,節約機房的面積,降低網路工程和伺服器系統的總體擁有成本,避免使用多顯示器產生的輻射,營建健康環保的機房。利用KVM多主機切換系統,就可以通過一套KVM在多個不同操作系統的主機或伺服器之間進行切換了。
一般kvm在電源線旁邊會有三個總的鍵盤,顯示器,滑鼠的介面,這里顯示器和鍵盤滑鼠是分開的,這三個介面用來連接外部相應設備。
再旁邊還會有一些配套的三個接線口,也就是用來與多個主機的外設介面相連。
這樣就可以通過對外設鍵盤滑鼠顯示器的操作來控制多個主機。
Ⅷ 聯想kvm怎樣連接伺服器
啟動遠程式控制制台時,將打開一個新窗口,其中顯示了主機系統的屏幕內容。
操作遠程式控制制台時,就好像管理員正坐在其遠程系統的屏幕面前一樣。這意味著用戶能夠以慣常的方式使用鍵盤和滑鼠。