search
HomeDatabaseMysql TutorialLinux安装设置VNC远程桌面连接来安装Oracle 11g

在Linux下面进行Oracle安装,需要启动Java的swing界面,所以需要x-window窗口,那么就需要直接去服务器机房去现场操作挺麻烦,远

前言:
在Linux下面进行Oracle安装,需要启动Java的swing界面,所以需要x-window窗口,那么就需要直接去服务器机房去现场操作挺麻烦,远程xshell无法视窗,这种情况下可以采用vnc的模式远程连接Linux系统的视窗来进行远程安装Oracle。

1,先检查一下服务器是否已经安装了VNC服务,没有安装,检查服务器的是否安装VNC的命令如下
[root@linuxidc rpms]# ps -eaf|grep vnc
root      1789  1557  0 17:30 pts/0    00:00:00 grep vnc
[root@linuxidc rpms]#
[root@linuxidc rpms]# rpm -qa | grep vnc
[root@linuxidc rpms]#

2,如果没有安装vnc可以使用下面命令进行安装:
yum install tigervnc tigervnc-server -y
顺利安装完,check下
[root@linuxidc rpms]# rpm -qa | grep vnc
tigervnc-1.1.0-16.el6.CentOS.x86_64
tigervnc-server-1.1.0-16.el6.centos.x86_64
libvncserver-0.9.7-4.el6.x86_64
[root@linuxidc rpms]#


3,接下来就是安装之后的配置问题了,,使用下面的命令编辑配置文件:
vim /etc/sysconfig/vncservers
VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 800x600"


下面这段是上面所讲配置文件注解,做参考之用:
#这个是配置远程桌面登录的用户名,如果两个用户,则使用VNCSERVERS="1:user1
2:user2" ,,
依次类推,默认情况下,1:user1对应5901,2:user2对应5902(VNC的默认监听端口是
5900,监听端口规则为590+usernumber),如下
VNCSERVERS="usernumber:myusername"
#下面这项配置为登录桌面配置,其中的“1”为用户序号,800x600为分辨率,-
nolisten tcp为阻止tcp包,-localhost代表只监听本地,
VNCSERVERARGS[1]="-geometry 800x600 -nolisten tcp -localhost"
如果想阻止http包,可以使用如下配置
VNCSERVERARGS[1]="-geometry 800x600 -nolisten tcp -nohttpd -localhost"


4,设置vnc密码
使用下面的命令为vnc设置密码(需要使用su 切换到要设置vnc密码的用户上,比如:
su - oracle,其中oracle就是在上面配置文件内写的帐号)
[root@powerlong4 ~]# vncpasswd
Password:
Password must be at least 6 characters - try again
Password:
Verify:
[root@powerlong4 ~]#
密码设置为vncpasswd

 

5,启动vnc服务
设置好密码之后,就是启动VNC服务了,启动VNC服务的时候也需要用su user1(user1
就是在上面配置文件内写的帐号)切换到要启动服务的帐号上(很多朋友在使用DirectSpace默认的桌面VNC的时候,遇到无法连接“10061错误”,即可在ssh下输入下
面命令解决!)

重启vncserver命令:
service vncserver restart

设置VNC服务开机启动用下面的命令:
chkconfig vncserver on

在一些minimal系统里,即使英文也会出现方框乱码,请使用本处命令修正:yum -y install fontforge

6,在windows下安装vnc客户端
下载地址:;软件包名称,RealVNC_cngr.rar,在本机windows下安装好,之后进行打开开始连接,连接地址显示如下:

Linux安装设置VNC远程桌面连接来安装Oracle 11g

Oracle 11gR2 RAC实时应用集群

在CentOS 6.4下安装Oracle 11gR2(x64)

Oracle 11gR2 在VMWare虚拟机中安装步骤

Debian 下 安装 Oracle 11g XE R2

Oracle Linux 6.5安装Oracle 11.2.0.4 x64

 

更多详情见请继续阅读下一页的精彩内容:

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
探秘Linux远程管理神器:五款实用工具推荐探秘Linux远程管理神器:五款实用工具推荐Feb 23, 2024 pm 01:00 PM

Linux作为一种强大的操作系统,其远程管理工具被广泛应用于服务器管理、网络监控等方面。在日常工作中,我们经常需要使用一些专门的工具来远程管理Linux服务器。本文将介绍五款实用的Linux远程管理工具,并提供具体的代码示例来演示它们的用法。1.SSHSSH(SecureShell)是一种加密网络协议,用于安全地远程登录和执行命令。通过SSH,用户可以在

ubunt上如何安装和配置vncubunt上如何安装和配置vncDec 28, 2023 am 10:50 AM

安装步骤:1、安装VNC服务器;2、启动VNC服务器;3、设置VNC密码;4、停止VNC服务器;5、配置VNC客户端;6、配置防火墙;7、配置用户权限;8、配置VNC选项;9、其他配置等等。详细介绍:1、安装VNC服务器:在终端中输入“sudo apt-get update;sudo apt-get install tightvncserver”命令来安装VNC服务器软件包。

从零开始:Ubuntu上VNC的安装和设置详解从零开始:Ubuntu上VNC的安装和设置详解Dec 29, 2023 pm 04:27 PM

从零开始:Ubuntu上VNC的安装和设置详解在Ubuntu操作系统上,VNC(VirtualNetworkComputing)是一种远程桌面协议,能够实现通过网络连接远程访问和控制Ubuntu桌面。本文将详细介绍在Ubuntu上安装和设置VNC的步骤,包括具体的代码示例。第一步:安装VNC服务器打开终端,输入以下命令更新软件源并安装VNC服务器:sud

探索Linux远程管理工具:五款值得推荐探索Linux远程管理工具:五款值得推荐Feb 25, 2024 pm 09:00 PM

了解Linux远程管理工具:五种推荐在当今信息化的社会中,许多企业和个人都离不开服务器的运行和维护。而作为一种强大的操作系统,Linux在服务器领域得到了广泛的应用。为了更高效地管理Linux服务器,远程管理工具成为必不可少的利器。本文将介绍五种推荐的Linux远程管理工具,并附上具体的代码示例,帮助读者更好地了解它们的用法和优势。SSH(SecureSh

Ubuntu上安装和配置VNC远程桌面控制的简单指南Ubuntu上安装和配置VNC远程桌面控制的简单指南Dec 29, 2023 pm 04:10 PM

VNC(VirtualNetworkComputing)是一种远程桌面控制技术,允许用户通过网络远程访问和控制另一台计算机的桌面。在Ubuntu操作系统中,VNC可以轻松安装和配置,为用户提供方便的远程桌面控制体验。本文将详细介绍在Ubuntu上安装和配置VNC的简单方法,并提供具体的代码示例。一、安装VNCServer要安装VNCServer,可以

Linux远程管理利器:推荐五款精选工具Linux远程管理利器:推荐五款精选工具Feb 24, 2024 pm 11:18 PM

你所不知道的Linux远程管理工具:精选五款推荐在现代的信息技术领域中,Linux操作系统已经成为了许多企业和个人使用的首选操作系统之一。对于Linux系统管理员来说,远程管理工具是非常重要的,可以帮助他们迅速、高效地监控和管理远程服务器。本文将介绍五款你可能不知道的Linux远程管理工具,并提供具体的代码示例,希望对你在Linux远程管理中有所帮助。tmu

如何在Ubuntu上安装和配置VNC:详细指南远程桌面控制操作步骤如何在Ubuntu上安装和配置VNC:详细指南远程桌面控制操作步骤Dec 29, 2023 pm 02:49 PM

Ubuntu是一款功能强大的操作系统,它提供了各种各样的工具和软件,以满足用户的日常需求。而VNC(VirtualNetworkComputing)则是一种远程桌面控制协议,可以让用户通过网络连接到远程主机并控制其桌面环境。本文将详细介绍在Ubuntu上如何安装和配置VNC,带你一步步实现远程桌面控制,以下是具体步骤和代码示例:步骤一:安装VNC服务器打

如何在Linux上配置远程桌面访问如何在Linux上配置远程桌面访问Jul 05, 2023 pm 03:01 PM

如何在Linux上配置远程桌面访问远程桌面访问是一种方便的方式,可以让用户在不同的设备上远程访问和控制其他设备上的桌面。在Linux系统上,我们可以通过配置远程桌面软件来实现这一功能。本文将介绍如何在Linux上配置远程桌面访问,并附带代码示例。步骤一:安装远程桌面软件首先,我们需要安装一个适用于Linux系统的远程桌面软件。在这里,我们将以VNC(Vir

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version