zoukankan      html  css  js  c++  java
  • vnc使用

    使用rpm –qa vnc命令如果收到如下信息说明已经安装了vncserver,
    [root@localhost: ~]#rpm -qa |grep vnc
    gtk-vnc-python-0.3.2-3.el5
    vnc-server-4.1.2-14.el5
    gtk-vnc-0.3.2-3.el5
    vnc-4.1.2-14.el5

    服务器安装:sudo yum install vnc-server

    服务器端配置如下:

    用ip加端口号 ip:1,ip:2,ip:3 来标识。vncserver的大部分配置文件及日志文件都在用户home目录下.vnc目录下
    用户可以自定义启动号码如:
    [huilin@localhost /]$ vncserver :2
    A VNC server is already running as :2
    [root@localhost: ~]#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
    ……
    VNCSERVERS
    ="1:root 2:demo" #此处添加用户 VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -nohttpd -localhost" #vncserver -geometry 800x600 设置vncserver的分辨率

    修改密码:运行vncpasswd即可

    停止vncserver:#vncserver -kill :1

    启动vnc-server:$ sudo chkconfig vncserver on

    开启响应端口:
       $ sudo netstat -ntlp           #找出相对应的端口,笔者这里为5901
       $ sudo vim /etc/sysconfig/iptables     #开启端口 添加  -A INPUT -s 111.13.4.0/255.255.255.0 -p tcp -j ACCEPT
       $ sudo /etc/init.d/iptables restart

    登陆:
       客户端输入:172.17.13.65:1

    注意防火墙要关闭:否则无法访问

    查看iptables状态:

    service iptables status

    iptables开机自动启动: 

    开启: chkconfig iptables on
    关闭: chkconfig iptables off

    iptables关闭服务:

    开启: service iptables start
    关闭: service iptables stop

  • 相关阅读:
    201-STM32+Air724UG基本控制篇(阿里云物联网平台)-设备使用物模型Topic上报温湿度数据
    Sentinel Go 核心统计结构滑动窗口的深度解析
    golang sync.Mutex互斥锁的实现原理
    Golang-Scheduler原理解析
    Golang-Channel原理解析
    golang里channel的实现原理
    最长回文子序列
    GO语言的goroutine并发原理和调度机制
    golang 常见问题
    通过js给网页加上水印背景
  • 原文地址:https://www.cnblogs.com/dorothychai/p/3223905.html
Copyright © 2011-2022 走看看