CentOS7安装GUI界⾯及远程连接的实现
⽤基于浏览器(webdriver)的selenium技术爬取数据,所以程序需运⾏在GUI环境下。本⽂分三个部分简要介绍安装GUI界⾯及远程连接的步骤。
安装GUI界⾯
⼤多数云服务器⼚商提供的镜像都⽆GUI界⾯,所以要先安装图形环境。本⽂使⽤GNOME桌⾯环境:
yum -y groups install "GNOME Desktop"
这条命令将安装GNOME桌⾯的必要软件包,执⾏完后配置X系统使⽤GNOME:
echo "exec gnome-session" >> ~/.xinitrc
安装KDE或者MATE桌⾯环境的两个命令稍微不⼀样:
# kde
yum -y groups install "KDE Plasma Workspaces"
echo "exec startkde" >> ~/.xinitrc
# mate
yum --enablerepo=epel -y groups install "MATE Desktop"
e cho "exec /usr/bin/mate-session" >> ~/.xinitrc
以上便安装好了GUI桌⾯环境。
启动桌⾯环境有两种⽅式:
1. ⼀次性的:在终端⾥输⼊startx;
2. 系统启动时默认进⼊桌⾯环境: systemctl set-default graphical.target,然后重启;
安装vnc-server
有了桌⾯环境,⼀般可以通过云服务器⼚商提供的web终端远程连接进⼊桌⾯。⽤web终端每次都需要打开浏览器,然后登陆云管理后台再连接,⽐较⿇烦。我们采取直接从桌⾯客户端远程连接的⽅式,省去打开浏览器和登录云管理后台的操作。
远程桌⾯技术有多种,例如VNC, TeamViewer, RDP等,本⽂使⽤免费且⼴泛使⽤的VNC。teamviewer
在服务器上先安装服务端(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设置的密码。密码正确的话就可以看到服务器的图形桌⾯,例如:
按回车键进⼊登录界⾯,输⼊登录⽤户名和密码进⼊系统:
接下来就可以做各种图形操作了。
参考
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论