单纯看本篇博客可能看不太懂 这是自己在看下方的博客中自己测试过程中 感觉比较重要 的就记录下来了(尊重原创)自己几乎没有搬运 有的只是对原创中不足的补充 建议先去看主线博客 然后结合这篇 就很清晰的感觉了
新手建议先学习图形化安装,便于操作。有一定基础后,可以再练习静默安装。
为虚拟机啊增加一块100G的硬盘
为磁盘分区
fdisk /dev/sdb (回车)
m 需要什么帮助吗
n (add a new partition)增加一个新的分区
p 是不是要划一个主分区
1 主分区里面的第一块
默认不动 直接回车
默认不动 直接回车
w 把分区的信息写入到硬盘中
然后查看磁盘情况 准备挂载
怎么理解这个挂载 :
但是没有文件类型 也没有UUID 这是因为仅仅分区 但是没有格式化 好比新买一辆宝马 但是没有驾照 开不了所以现在需要进行格式化(centos6)
启动图形界面的时候出现错误
命令:yum install tigervnc-server
[root@wang app]# vncserver
You will require a password to access your desktops.
Password:
Verify:
Would you like to enter a view-only password (y/n)? y
Password:
Verify:
xauth: file /root/.Xauthority does not exist
New 'wang:1 (root)' desktop is wang:1
Creating default startup script /root/.vnc/xstartup
Creating default config /root/.vnc/config
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/wang:1.log
[root@wang app]# export DISPLAY=":1.0"
[root@wang app]# echo $DISPLAY
:1.0
[root@wang app]# xhost +
access control disabled, clients can connect from any host
[root@wang app]# xdpyinfo | head
name of display: :1.0
version number: 11.0
vendor string: The X.Org Foundation
vendor release number: 11903000
X.Org version: 1.19.3
maximum request size: 16777212 bytes
motion buffer size: 256
bitmap unit, bit order, padding: 32, LSBFirst, 32
image byte order: LSBFirst
number of supported pixmap formats: 6
[root@wang app]# /u01/app/oracle/product/19.3/dbhome_1/runInstaller
ERROR: You must not be logged in as root to run this tool.
[root@wang app]#
解决
[root@wang /]# /u01/app/oracle/product/19.3/dbhome_1/runInstaller
ERROR: You must not be logged in as root to run this tool.
[root@wang /]# su oracle
[oracle@wang /]$ /u01/app/oracle/product/19.3/dbhome_1/runInstaller
正在启动 Oracle 数据库安装向导...
说来挺尴尬 我竟然被虚拟机因为界面太小 没有办法继续往下操作。。。。
虚拟机没有办法调整界面大小 需要安装VMTools
所以我决定在这篇博客中插入 <《虚拟机界面太小——安装VMtools》。。。。
双击光盘——复制到opt下——使用chmod命令修改权限——tar命令解压——执行安装命令
[root@wang ~]# cd /opt
[root@wang opt]# chmod 744 VMwareTools-10.3.23-16594550.tar.gz
[root@wang opt]# tar -zxvf VMwareTools-10.3.23-16594550.tar.gz
[root@wang opt]# cd vmware-tools-distrib/
[root@wang opt]# ./vmware-install.pl
然后有yes的就yes 没有的就一路回车
接着继续 可能刚刚重启了 然后执行[oracle@wang dbhome_1]$ ./runInstaller 这个命令的时候 又报错了 跟之前一样
到这里停止在Xsehell中操作 在虚拟机中操作 因为Xshell中启动不了图形界面 而每次操作的失败回导致:3.0 这个数据的自增 但也不影响 注意目录结构
[root@wang app]# su - oracle 切换到oracle用户进行操作
上一次登录:日 5月 8 14:19:56 CST 2022pts/1 上
[oracle@wang ~]$ /u01/app/oracle/product/19.3/dbhome_1/runInstaller
ERROR: Unable to verify the graphical display setup. This application requires X display. Make sure that xdpyinfo exist under PATH variable.
No X11 DISPLAY variable was set, but this program performed an operation which requires it.
[oracle@wang ~]$ yum install tigervnc-server 第一次是安装5图形界面包 就不用安装了
bash: yum install: 未找到命令...
[oracle@wang ~]$ vncserver
You will require a password to access your desktops.
Password: (oracle 括号内不显示)
Verify: (oracle)
Would you like to enter a view-only password (y/n)? y
Password: (oracle)
Verify: (oracle)
xauth: file /home/oracle/.Xauthority does not exist
New 'wang:3 (oracle)' desktop is wang:3
Creating default startup script /home/oracle/.vnc/xstartup
Creating default config /home/oracle/.vnc/config
Starting applications specified in /home/oracle/.vnc/xstartup
Log file is /home/oracle/.vnc/wang:3.log[oracle@wang ~]$ export DISPLAY=":3.0"
[oracle@wang ~]$ echo $DISPLAY
:3.0
[oracle@wang ~]$ xhost +
access control disabled, clients can connect from any host
[oracle@wang ~]$ xdpyinfo | head
name of display: :3.0
version number: 11.0
vendor string: The X.Org Foundation
vendor release number: 11903000
X.Org version: 1.19.3
maximum request size: 16777212 bytes
motion buffer size: 256
bitmap unit, bit order, padding: 32, LSBFirst, 32
image byte order: LSBFirst
number of supported pixmap formats: 6
[oracle@wang ~]$ /u01/app/oracle/product/19.3/dbhome_1/runInstaller
正在启动 Oracle 数据库安装向导...
后面有这个情况就是 一直卡在这句话 图形界面加载不出来 然后自己的解决方式就是 重启。。。。。
yum install kmod-libs.x86_64
yum install compat-libcap1.i686
633 yum install kmod.x86_64
634 yum install ksh.x86_64
635 yum install libaio-devel.x86_64
636 yum install compat-libstdc++-33.x86_64
忘了忘了 忘了截屏了
程序包都安装好之后 可以开始安装了
参考文章
主线文章
(1条消息) CentOS 7环境下安装Oracle 19c数据库_Augenstern.Song的博客-CSDN博客_centos7安装oracle19c
小问题 bug文章
(1条消息) CentOS 7环境下安装Oracle 19c数据库_Augenstern.Song的博客-CSDN博客_centos7安装oracle19c
在linux中安装oracle数据库 (上) --补充(./runInstaller无法启动安装问题) - waytods - 博客园 (cnblogs.com)
Oracle 12c 静默安装(带注释)_12780274的技术博客_51CTO博客
(2条消息) Linux下安装vmWare tools工具(详细讲解)_BayMin写bug的博客-CSDN博客_linux安装vmware tools (2条消息) ERROR: Unable to verify the graphical display setup._山与先生的博客-CSDN博客
(2条消息) 完美解决xhost +报错: unable to open display ""_金士顿的博客-CSDN博客