如何通过vnc 安装远程linux下的oracle-paulyibinyi-ITPUB博客
发布网友
发布时间:2022-04-12 14:17
我来回答
共2个回答
热心网友
时间:2022-04-12 15:46
1.把vncserver 装在oracle用户下
[root@rac1 user01]# su - oracle
[oracle@rac1 ~]$ pwd
/home/oracle
[oracle@rac1 ~]$ vncserver
You will require a password to access your desktops.
Password: --这里输入密码oracle
Verify: --验证密码oracle
xauth: creating new authority file /home/oracle/.Xauthority
New 'rac1.cn:2 (oracle)' desktop is rac1.cn:2 红色2代表端口号 vnc客户端登录时需要用到
Creating default startup script. /home/oracle/.vnc/xstartup
Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/rac1.cn:2.log
2.打开防火墙 用root用户登录
vi /etc/sysconfig/iptables
找到下面语句
A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited
修改为
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 5900:5903 -j ACCEPT
表示端口为5900到5903可以访问
用root身份重新启动防火墙
[root@rac2 ~]# /sbin/service iptables restart
Flushing firewall rules: [ OK ]
Setting chains to policy ACCEPT: filter [ OK ]
Unloading iptables moles: [ OK ]
Applying iptables firewall rules: [ OK ]
默认登录的是twm窗口不好看 需要设置成gnome模式
vi /home/oracle/.vnc/xstartup 如下所示:
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
startkde &
wq 保存退出
unset 和exec前面的#要去掉
最后一行换成startkde
重新启动VNC server
[oracle@rac1 ~]$ /sbin/service vncserver restart
Shutting down VNC server: [ OK ]
rm: cannot remove `/var/lock/subsys/vncserver': Permission denied
Starting VNC server: [ OK ]
touch: cannot touch `/var/lock/subsys/vncserver': Permission denied
重新启动linux 服务器后
在windows xp 安装vnc for windows 客户端
装完后选择 run vnc viewser
server 栏输入 192.168.1.242:2 就是vncserver 生成的端口号
就ok了 就可以实现远程安装了
热心网友
时间:2022-04-12 17:04
1 安装图形界面:
1) 安装登录管理器:$sudo apt-get install gdm
2) 安装桌面环境,仅安装最基本的组件:$sudo apt-get install gnome-core (安装完之后可以用startx命令启动图形界面)
3) 安装图形界面(自动安装应用程序):$sudo apt-get install ubuntu-desktop (安装完成后重启一下系统)
2 在ubuntu下安装vnc server(VNC服务端):
$sudo apt-get install vnc4server
3 启动VNC服务:$vncserver :1 (数字1 表示桌面号)
要实现多少同时连接ubuntu server ,用如下命令:$vncserver -geometry 1280×800 -alwaysshared :1 (-geometry 1280×800表示分辩率,-alwaysshared表示运行多个人同时连接到同一个桌面)
停止VNC服务:$vncserver -kill :1
4 在ubuntuc server 图形界面中设置允许完程登陆:
系统(System) —> 首选项(Preferences) —> 远程桌面(Remote Desktop),进行如下设置:
设置好密码好,在windows客户端应可以通过vnc viewer远程连接ubuntu server 了!
用windows vnc连接linux ,windows用ssh连接“192.168.1.12:22” ,vnc这么连接 ?