7.修改VNC访问的密码
使用命令vncpasswd对不同用户的VNC的密码进行修改,一定要注意,如果配置了不同用户的VNC需要分别到各自用户中进行修改,例如在我的这个实验中,root用户和oracle用户需要分别修改,修改过程如下:
[root@ ~]# vncpasswd
Password:
Verify:
[root@ ~]#
8.启动和停止VNC服务
1)启动VNC服务命令
[root@ ~]# /etc/init.d/vncserver start
Starting VNC server: 1:root
New 'www.linuxidc.com:1 (root)' desktop is :1
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/www.linuxidc.com:1.log
2:oracle
New 'www.linuxidc.com:2 (oracle)' desktop is :2
Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/www.linuxidc.com:2.log
[ OK ]
2)停止VNC服务命令
[root@ ~]# /etc/init.d/vncserver stop
Shutting down VNC server: 1:root 2:oracle [ OK ]
3)重新启动VNC服务命令
[root@ ~]# /etc/init.d/vncserver restart
Shutting down VNC server: 1:root 2:oracle [ OK ]
Starting VNC server: 1:root
New 'www.linuxidc.com:1 (root)' desktop is :1
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/www.linuxidc.com:1.log
2:oracle
New 'www.linuxidc.com:2 (oracle)' desktop is :2
Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/www.linuxidc.com:2.log
[ OK ]
4)设置VNC服务随系统启动自动加载
第一种方法:使用“ntsysv”命令启动图形化服务配置程序,在vncserver服务前加上星号,点击确定,配置完成。
第二种方法:使用“chkconfig”在命令行模式下进行操作,命令使用如下(预知chkconfig详细使用方法请自助式man一下)
[root@ ~]# chkconfig vncserver on
[root@ ~]# chkconfig --list vncserver
vncserver 0:off 1:off 2:on 3:on 4:on 5:on 6:off