Linux系统下安装Oracle的步骤教程

root登录下:

groupadd dba

groupadd oinstall

useradd tester -g oinstall -g dba

passwd tester

输入密码

mkdir -p /oracle/product/10.2.0/db_1

chown -r tester.oinstall /oracle

chmod 755 -r /oracle

登录tester用户

vi ./.bash_profile

添加文件内容{

oracle_base=/oracle

oracle_home=$oracle_base/product/10.2.0/db_1

oracle_sid=orcl

path=$path:$home/bin:$oracle_home/bin

ld_library_path=$oracle_home/lib:/usr/lib

export oracle_base
export oracle_home

export oracle_sid

export path

export ld_library_path

}wq保存退出

source ./.bash_profile

解压缩oracle压缩文件

unzip oracle //解压完成生成database文件夹

cd database

./runinstaller

弹出界面点击下一步安装 设置全局名orc

安装过程较长…

提示部分配置需要root用户执行

root用户下:

cd /oracle/orainventory/

./orainstroot.sh

cd ./oracle/product/10.2.0/db_1/

./root.sh

中输入:

https://localhost:5560

出现此框说明安装是成功的

数据库操作页面https://localhost:5560/isqlplus

dba管理页面https://localhost:5560/isqlplus/dba

自动启动功能

root登录下:

cd /etc/

vi oratab

{

n change y

}

tester登录下:

vi /oracle/product/10.2.0/db_1/bin/dbstart

监听文件改成 /oracle/prosuct/10.2.0/db_1

cd /oracle/product/10.2.0/db_1/bin/

./dbstart

启动

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐