首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

在linux中如何进入到oracle的图形配置数据库界面

发布网友 发布时间:2022-04-23 05:37

我来回答

5个回答

热心网友 时间:2022-04-11 20:34

1、需要配置安装VNC,然后通过VNC连接

2、安装和配置VNC 

① 安装vnc

# yum install -y  tigervnc-server tigervnc-server-mole libXfont pixman xterm xorg-x11-twm  安装vnc及字体库

# chkconfig  vncserver on      设置开机自动启动

②VNC配置

修改 /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

# as my 'myusername' (adjust this to your own).  You will also

# need to set a VNC password; run 'man vncpasswd' to see how

# to do that.

#

# DO NOT RUN THIS SERVICE if your local area network is

# untrusted!  For a secure way of using VNC, see this URL:

# http://kbase.redhat.com/faq/docs/DOC-7028


# 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.


# VNCSERVERS="2:myusername"

# VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -localhost"

VNCSERVERS="1:root"

VNCSERVERARGS[1]="-geometry 1024x768 -nolisten tcp -depth 24"

# -alwaysshared代表允许多用户同时登录 -depth代为色深,参数有8,16,24,32  

#红色为新增内容



③ 设置VNC密码

# vncpasswd 

Password:  

Verify:  

连续两次输入同样的密码

设置的密码保存在  /root/.vnc/passwd 


④ 修改防火墙配置,修改/etc/sysconfig/iptables

 # vi /etc/sysconfig/iptables    #编辑,添加以下代码,开启5901、5902端口

 -A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT  

 -A INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT

:wq! 保存,退出

 service iptables restart   # 重启


⑤使用VNC连接CentOS主机

 直接打开VNC,输入IP地址,冒号后面的1代表桌面号,这个要根据你的配置文件定义的桌面号


3、通过vnc登陆后,切换到oracle用户下面,即可进入到oracle的图形配置数据库界面

热心网友 时间:2022-04-11 21:52

启动oracle数据库步骤:
首先使用oracle用户登录Linux,然后在shell命令行中执行下面的命令:
第一步:打开Oracle监听
$ lsnrctl start
第二步:进入sqlplus
$ sqlplus /nolog
SQL>
第三步:使用sysdab角色登录sqlplus
SQL> conn /as sysdba
第四步:启动数据库
SQL> startup
经过上面的四个步骤,oracle数据库就可以启动了。
关闭数据库用 shutdown 是要等待事物结束才关闭,强制关闭用 shutdown abort。

热心网友 时间:2022-04-11 23:27

用oracle用户登陆,在终端运行dbca就可以了

热心网友 时间:2022-04-12 01:18

1、登录root
2、执行:xhost +

热心网友 时间:2022-04-12 03:26

su - root
密码
xhost+
dbca

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com