环境
- CentOS7.4 最小安装
- 数据库软件
- linux.x64_11gR2_database_1of2.zip
- linux.x64_11gR2_database_2of2.zip
操作系统配置
- 关闭 SELinux
sed -i '/^SELINUX=/cSELINUX=disabled' /etc/selinux/config
- 关闭防火墙
systemctl disable firewalldsystemctl stop firewalld
- 禁用 NetworkManager
systemctl disable NetworkManagersystemctl stop NetworkManager
- 重启操作系统
reboot
安装依赖
- 安装可能用到的工具
yum install epel-releaseyum clean allyum makecache fastyum install vim unzip rlwrap
- 安装 oracle 需要的包
yum install binutils compat-libcap1 compat-libstdc++-33 \compat-libstdc++-33*i686 gcc gcc-c++ glibc glibc*.i686 \glibc-devel glibc-devel*.i686 ksh libaio libaio*.i686 libaio-devel \libgcc libgcc*.i686 libstdc++ libstdc++*.i686 libstdc++-devel \libXi libXi*.i686 libXtst libXtst*.i686 make sysstat unixODBC \unixODBC*.i686 unixODBC-devel unixODBC-devel*.i686
配置安装环境
- 创建 oracle 用户
groupadd oinstallgroupadd dbauseradd -g oinstall -G dba oracle
- 创建 oracle 安装目录
mkdir -p /opt/oracle/app/product/11.2.0mkdir -p /opt/oracle/app/oradatamkdir -p /opt/oracle/app/fast_recovery_areamkdir -p /opt/oracle/inventorychown -R oracle:oinstall /opt/oraclechmod -R 775 /opt/oracle
- 修改 sysctl.conf
cat << EOF >> /etc/sysctl.conffs.aio-max-nr = 1048576fs.file-max = 6815744#物理内存一半和4G中的较大者kernel.shmmax = 4294967296#shmmax / 4k (getconf PAGESIZE)kernel.shmall = 1048576kernel.shmmni = 4096kernel.sem = 250 32000 200 200net.ipv4.ip_local_port_range = 9000 65500net.core.rmem_default = 262144net.core.wmem_default = 262144net.core.wmem_max = 1048586net.core.rmem_max = 4194304EOFsysctl -p
- 修改 limits.conf
cat << EOF >> /etc/security/limits.conforacle soft nproc 2047oracle hard nproc 16384oracle soft nofile 1024oracle hard nofile 65536EOF
- 修改 login
cat << EOF >> /etc/pam.d/loginsession required /lib64/security/pam_limits.sosession required pam_limits.soEOF
- 修改 profile
cat << EOF >> /etc/profileif [ \$USER = "oracle" ] ; then if [ \$SHELL = "/bin/ksh" ]; then ulimit -p 16384 ulimit -n 65536 else ulimit -u 16384 -n 65536 fi umask 022fiEOF
- 修改 oracle 用户的 .bash_profile
cat << EOF >> /home/oracle/.bash_profileexport ORACLE_BASE=/opt/oracle/appexport ORACLE_HOME=\$ORACLE_BASE/product/11.2.0export ORACLE_SID=orclexport PATH=\$PATH:\$ORACLE_HOME/bin#export NLS_LANG="SIMPLIFIED CHINESE_CHINA.AL32UTF8"#export NLS_LANG="SIMPLIFIED CHINESE_CHINA.ZHS16GBK"EOF
安装数据库
- 上传数据库软件到 /root 下,解压
unzip linux.x64_11gR2_database_1of2.zip -d /home/oracle/unzip linux.x64_11gR2_database_2of2.zip -d /home/oracle/chown -R oracle.oinstall /home/oracle/database
- 切换到 oracle 用户,后续操作都在该 oracle 用户下执行
su - oracle
- 创建 response 文件
cd /home/oraclecp database/response/*.rsp ./
- 修改 db_install.rsp
sed -i \ -e '/^oracle.install.option=/s#=.*$#=INSTALL_DB_SWONLY#' \ -e '/^UNIX_GROUP_NAME=/s#=.*$#=oinstall#' \ -e '/^INVENTORY_LOCATION=/s#=.*$#=/opt/oracle/inventory#' \ -e '/^SELECTED_LANGUAGES=/s#=.*$#=en,zh_CN#' \ -e '/^ORACLE_HOME=/s#=.*$#=/opt/oracle/app/product/11.2.0#' \ -e '/^ORACLE_BASE=/s#=.*$#=/opt/oracle/app#' \ -e '/^oracle.install.db.InstallEdition=/s#=.*$#=EE#' \ -e '/^oracle.install.db.DBA_GROUP=/s#=.*$#=dba#' \ -e '/^oracle.install.db.OPER_GROUP=/s#=.*$#=dba#' \ -e '/^oracle.install.db.config.starterdb.type=/s#=.*$#=GENERAL_PURPOSE#' \ -e '/^DECLINE_SECURITY_UPDATES=/s#=.*$#=true#' \ /home/oracle/db_install.rsp
- 无需修改 netca.rsp
- 修改 dbca.rsp
sed -i \ -e '/^GDBNAME=/s#=.*$#=orcl#' \ -e '/^SID=/s#=.*$#=orcl#' \ -e '/^SYSPASSWORD=/s#=.*$#=111111#' \ -e '/^SYSTEMPASSWORD=/s#=.*$#=111111#' \ -e '/^CHARACTERSET=/s#=.*$#=ZHS16GBK#' \ /home/oracle/dbca.rsp
- 安装 oracle 软件
cd /home/oracle/database./runInstaller -silent -responseFile /home/oracle/db_install.rsp -ignorePrereq#安装成功后,系统提示需要在 root 下执行两个脚本/opt/oracle/invertory/orainstRoot.sh/opt/oracle/app/product/11.2.0/root.sh
- 配置监听
netca /silent /responseFile /home/oracle/netca.rsp#配置成功后,监听启动,查看监听状态lsnrctl status
- 创建数据库
dbca -silent -responseFile /home/oracle/dbca.rsp#查看屏幕输出的创建进度
简单使用
- 登陆数据库
[oracle@localhost ~]$ rlwrap sqlplus / as sysdbaSQL*Plus: Release 11.2.0.1.0 Production on 星期一 6月 25 14:46:58 2018Copyright (c) 1982, 2009, Oracle. All rights reserved.连接到:Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit ProductionWith the Partitioning, OLAP, Data Mining and Real Application Testing optionsSQL>