admin 管理员组

文章数量: 887021


2024年1月15日发(作者:gnawed)

安装配置 Oracle

1、 解压 zip

unzip oracle-xe-11.2.0-1.0.x86_

2、 安装 rpm 包、 进入 Disk1 目录

rpm -ivh oracle-xe-11.2.0-1.0.x86_

错误: This system does not meet the minimum requirements for swap space

使用 free -m 查看空间

进入 / 目录创建 swapfile

sudo dd if=/dev/zero of=swapfile bs=2024 count=2048576

转换文件

sudo /sbin/mkswap swapfile

激活

sudo /sbin/swapon swapfile

(如果安装失败 卸载swapfile的方法

sudo /sbin/swapoff swapfile 删除 rm -rf swapfile )

添加 swap 文件前效果

添加 swap 文件后效果

重新安装 oracleXE

3、 安装 oracle XE 后配置

编辑/etc/init.d/oracle-xe 文件

其中是有包含 Oracle 环境变量的一些参数的,我们只需要从中复制中

其中的 ORALCE_HOME, ORALCE_BASE, PATH, ORALCE_SID 到 /etc/profile 中

使环境变量生效

4、 执行 oracle XE 配置

/etc/init.d/oracle-xe configure

记住设置 system 账户密码 123456 !(root)

错误:

查看日志

解决: 配置 itheima 主机域名解析 127.0.0.1

修改/etc/hosts 文件

vi /etc/hosts

添加 127.0.0.1 itheima

/etc/init.d/oracle-xe configure

安装成功

连接 oracle


本文标签: 环境变量 文件 查看 目录 卸载