轉載請註明文章出處:https://tlanyan.me/install-gu...web
用基於瀏覽器(webdriver)的selenium技術爬取數據,因此程序需運行在GUI環境下。本文分三個部分簡要介紹安裝GUI界面及遠程鏈接的步驟。centos
大多數雲服務器廠商提供的鏡像都無GUI界面,因此要先安裝圖形環境。本文使用GNOME桌面環境:瀏覽器
yum -y groups install "GNOME Desktop"
服務器
這條命令將安裝GNOME桌面的必要軟件包,執行完後配置X系統使用GNOME:session
echo "exec gnome-session" >> ~/.xinitrc
app
安裝KDE或者MATE桌面環境的兩個命令稍微不同:ssh
<pre class="sh"># kde
yum -y groups install "KDE Plasma Workspaces"
echo "exec startkde" >> ~/.xinitrctcp
yum --enablerepo=epel -y groups install "MATE Desktop"
echo "exec /usr/bin/mate-session" >> ~/.xinitrc
</pre>ui
以上便安裝好了GUI桌面環境。this
啓動桌面環境有兩種方式:
startx
;systemctl set-default graphical.target
,而後重啓;有了桌面環境,通常能夠經過雲服務器廠商提供的web終端遠程鏈接進入桌面。用web終端每次都須要打開瀏覽器,而後登錄雲管理後臺再鏈接,比較麻煩。咱們採起直接從桌面客戶端遠程鏈接的方式,省去打開瀏覽器和登陸雲管理後臺的操做。
遠程桌面技術有多種,例如VNC, TeamViewer, RDP等,本文使用免費且普遍使用的VNC。
在服務器上先安裝服務端(tigervnc是tightvnc的分支):
yum install -y tigervnc-server
接着複製一份VNC配置:
cp /lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@:1.service
注意上述命令參數重的「@:1」,能夠將數字1換成30000內的任意數字
,「5900+數字」即爲程序的顯示(監聽)端口,如"@:1"表示監聽5901端口。
編輯該配置文件,將文件內的<USER>
替換成遠程鏈接時的登陸用戶名(若是是root,注意將第二個<USER>
所在行的"/home"移除掉)。以root身份的配置示例:
# The vncserver service unit file # # Quick HowTo: # 1. Copy this file to /etc/systemd/system/vncserver@.service # 2. Replace <USER> with the actual user name and edit vncserver # parameters appropriately # (ExecStart=/usr/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i" # PIDFile=/home/<USER>/.vnc/%H%i.pid) # 3. Run `systemctl daemon-reload` # 4. Run `systemctl enable vncserver@:<display>.service` # # DO NOT RUN THIS SERVICE if your local area network is # untrusted! For a secure way of using VNC, you should # limit connections to the local host and then tunnel from # the machine you want to view VNC on (host A) to the machine # whose VNC output you want to view (host B) # # [user@hostA ~]$ ssh -v -C -L 590N:localhost:590M hostB # # this will open a connection on port 590N of your hostA to hostB's port 590M # (in fact, it ssh-connects to hostB and then connects to localhost (on hostB). # See the ssh man page for details on port forwarding) # # You can then point a VNC client on hostA at vncdisplay N of localhost and with # the help of ssh, you end up seeing what hostB makes available on port 590M # # Use "-nolisten tcp" to prevent X connections to your VNC server via TCP. # # 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. [Unit] Description=Remote desktop service (VNC) After=syslog.target network.target [Service] Type=forking # Clean any existing files in /tmp/.X11-unix environment ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :' ExecStart=/usr/sbin/runuser -l root -c "/usr/bin/vncserver %i" PIDFile=/root/.vnc/%H%i.pid ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :' [Install] WantedBy=multi-user.target
接下來設置vnc鏈接密碼
:
vncpasswd
注意鏈接密碼與登陸密碼
不一樣:鏈接密碼用於顯示遠程桌面,登陸密碼用於用戶登陸系統。
設置好後,啓動vnc服務:
systemctl daemon-reload systemctl start vncserver@:1 systemctl enable vncserver@:1
若是開啓了防火牆,注意放行相應端口。
服務端配置完畢,接下來用客戶端鏈接。
vnc是免費技術,許多客戶端都支持該協議。本文采用App Store上免費的「Remote Desktop - VNC」軟件進行鏈接,打開後軟件界面以下:
在輸入框填寫服務器地址:vnc://ip:port,其中ip是服務器的ip或域名,port是監聽的端口,例如5901。輸入後按回車,彈出密碼輸入框,輸入vncpasswd
設置的密碼。密碼正確的話就能夠看到服務器的圖形桌面,例如:
按回車鍵進入登陸界面,輸入登陸
用戶名和密碼進入系統:
接下來就能夠作各類圖形操做了。