Oracle 数据库12C 已成为越来越多企业的核心数据库;
很多朋友在学习oracle数据库的时候,第一步是要构建一个oracle数据训环境;
我们准备了9段视频,每段视频不超过20分钟,一步一步教你在Linux 7 上安装一个完整的oracle 12C数据库。
安装步骤文字版如下:
1--Linux system package check,install the following package required:
yum install binutils compat-libcap1 compat-libstdc++-33 compat-libstdc++-33*.i686 elfutils-libelf-dev libaio-devel ksh
2--create group and user:
groupadd oinstall
groupadd dba
groupadd oper
groupadd osoper
useradd -g oinstall -G dba,oper oracle
passwd oracle
3--edit the file:/etc/security/limits.conf ,and add the following lines to the file:
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft stack 10240
4--edit the file:/etc/sysctl.conf, and add the following lines to the file:
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 4098955264
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
sysctl -p --生效
5--edit the file:/etc/pam.d/login, add the following lines to the file:
session required pam_limits.so
6--edit the file: /etc/profile , add the following lines to the file:
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi
mkdir -p /u01/app/oracle/product/12.2.0/db_1
7--edit the file:/home/oracle/.bash_profile, add the following lines to the file:
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/12.2.0/db_1
export ORACLE_SID=orcl
export PATH=$ORACLE_HOME/bin:$PATH
chown -R oracle:oinstall /u01
cd /u01/soft/
unzip linuxx64_12201_database.zip
chown -R oracle:oinstall /u01
OUI-----oracle unverser installer
8--查看root用户下是否已设置DISPLAY变量
root:xhost +
root:xclock
root:xhost +
su - oracle
export DISPLAY=192.168.1.6:0.0
xclock
cd /u01/soft/database
./runInstaller
如果有值出现,则说明已设置DISPLAY变量;否则,就需要手动设置DISPLAY
ORACLE数据库:
一步到位:先要安装软件,在安装软件同时配置数据库。
分两步:
第一步,先把软件安装好
第二步,能过DBCA创建数据库的工具,来创建数据库
每篇图文最多只能放3段视频
继续第4、5、6三段视频:
4-oracle安装配置-安装软件:
5-oracle安装配置-添加磁盘:
6-oracle安装配置-DBCA建库:
未完待续......
领取专属 10元无门槛券
私享最新 技术干货