Linux系统下安装Oracle的步骤教程
程序员文章站
2023-10-29 14:49:58
root登录下:
groupadd dba
groupadd oinstall
useradd tester -g oinstall -g dba
passwd tester...
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
启动
上一篇: 五个居家瘦身小动作 轻松塑造骨感好身材
推荐阅读
-
linux下配置和安装KVM虚拟机的步骤
-
Oracle VM VirtualBox 在linux系统下安装增强插件实现访问主机的共享文档方法
-
Linux下安装python3.6和第三方库的教程详解
-
linux(Centos7)下安装mysql8.0.18的教程图解
-
Linux下Centos7安装Mysql5.7.19的详细教程
-
deepin 2014系统下安装mysql数据库的方法步骤
-
linux下安装openssl、swoole等扩展的详细步骤
-
Linux下安装Oracle(CentOS-Oracle 12c)的方法
-
在Linux系统上安装Linux内核头文件的教程
-
Linux系统下Qt的基本安装和配置