Environmental preparation: VMware+CentOS, jdk 1. Verify the system disk size 1. Command df -h Ensure that the available disk space is 15GB (including 7.5GB required for Oracle installation + nearly 3G for the Oracle installation zip package + 3G for the installation package decompression file) If the disk is not sufficient, the installation will fail and the capacity needs to be expanded! 2. Installation Preparation 1. Create a system user and user group to run the Oracle database groupadd oinstall groupadd dba useradd -g oinstall -g dba -m oracle passwd oracle #Ignore the prompts and enter the password twice in a row to succeed 2. Create an Oracle database installation directory and grant the directory permissions to the Oracle user mkdir -p /opt/oracle/database #Files extracted from the Oracle installation package mkdir -p /opt/oracle/product/oraInventory # mkdir -p /opt/oracle/product/12.2.0/db_1 #Oracle installation directory chown -R oracle:oinstall /opt/oracle #Change the owner of the oracle directory chmod 755 -R /opt/oracle #Change the permissions of the oracle directory 3. Install the software packages that the Oracle database depends on 3.1. Installation yum -y install binutils compat-libstdc++-33 elfutils-libelf elfutils-libelf-devel glibc glibc-common glibc-devel gcc gcc-c++ libaio-devel libaio libgcc libstdc++ libstdc++-devel make sysstat unixODBC unixODBC-devel pdksh numactl-devel glibc-headers 3.2. Check whether the installation is successful rpm -q \binutils \compat-libstdc++-33 \elfutils-libelf \elfutils-libelf-devel \expat \gcc \gcc-c++ \glibc \glibc-common \glibc-devel \glibc-headers \libaio \libaio-devel \libgcc \libstdc++ \libstdc++-devel \make \pdksh \sysstat \unixODBC \unixODBC-devel | grep "not installed" 4. Disable selinux and restart to take effect (you can restart before installing oracle) vim /etc/selinux/config 5. Modify kernel parameters vim /etc/sysctl.conf Add the following content:
sysctl -p #Make the configuration effective 6. Set restrictions on oracle users to improve system performance Add the following content: oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536 7. Configure user environment variables Add the following content:
8. Unzip the compressed package of the Oracle installation file and unzip it in the /opt/oracle/ directory unzip file name (unzip does not exist, you can install it with the command: yum install unzip) compression is slow, you need to wait 9. Configure the answer file 10. Configure the oraInventory directory location Stores the directory information for Oracle software installation. This directory is required for Oracle installation and upgrade (preferably placed under the directory corresponding to ORACLE_BASE) Add or modify the following content:
11. Restart CentOS, reboot 12. Turn off the firewall, systemctl stop firewalld 3. Silently install Oracle12 1. Log in to the Linux system as oracle user 2. Silent installation /opt/oracle/database/runInstaller -silent -force -ignorePrereq -responseFile /opt/oracle/database/response/db_install.rsp The execution process will take several minutes. Monitorable logs: tail -f /opt/oracle/product/oraInventory/logs/installActions2018-11-22_11-04-03AM.log 3. Switch to root user login 4. Execute two sh files 4.1. sh /opt/oracle/product/oraInventory/orainstRoot.sh If there is no script in the directory, you can create a new one with the following content: # cat /oracle/oraInventory/orainstRoot.sh #!/bin/sh AWK=/bin/awk CHMOD=/bin/chmod CHGRP=/bin/chgrp CP=/bin/cp ECHO=/bin/echo MKDIR=/bin/mkdir RUID=`/usr/bin/id|$AWK -F 'print$2' |$AWK−F 'print$2'|$AWK−F '{print $2}'|$AWK -F '{print $1}'` if [ ${RUID} != "root" ];then $ECHO "This script must be executed as root" exit 1 fi if [ -d "/etc" ]; then $CHMOD 755 /etc; else $MKDIR -p /etc; fi if [ -f "/oracle/oraInventory/oraInst.loc" ]; then $CP /oracle/oraInventory/oraInst.loc /etc/oraInst.loc; $CHMOD 644 /etc/oraInst.loc else INVPTR=/etc/oraInst.loc INVLOC=/oracle/oraInventory GRP=oinstall PTRDIR="`dirname $INVPTR`"; # Create the software inventory location pointer file if [ ! -d "$PTRDIR" ]; then $MKDIR -p $PTRDIR; fi $ECHO "Creating the Oracle inventory pointer file ($INVPTR)"; $ECHO inventory_loc = $INVLOC > $INVPTR $ECHO inst_group=$GRP >> $INVPTR chmod 644 $INVPTR # Create the inventory directory if it doesn't exist if [ ! -d "$INVLOC" ];then $ECHO "Creating the Oracle inventory directory ($INVLOC)"; $MKDIR -p $INVLOC; fi fi $ECHO "Changing permissions of /oracle/oraInventory. Adding read,write permissions for group. Removing read, write, execute permissions for world. "; $CHMOD -R g+rw,o-rwx /oracle/oraInventory; if [ $? != 0 ]; then $ECHO "OUI-35086:WARNING: chmod of /oracle/oraInventory Adding read,write permissions for group. ,Removing read,write,execute permissions for world. failed!"; fi $ECHO "Changing groupname of /oracle/oraInventory to oinstall."; $CHGRP -R oinstall /oracle/oraInventory; if [ $? != 0 ]; then $ECHO "OUI-10057:WARNING: chgrp of /oracle/oraInventory to oinstall failed!"; fi $ECHO "The execution of the script is complete." 4.2. sh /opt/oracle/product/12.2.0/db_1/root.sh 5. Switch to oracle user login 6. Install monitoring 7. Start the monitoring program lsnrctl start 8. Check the monitoring status lsnrctl status 9. Create a database through dbca
(Delete: dbca -silent -deleteDatabase -sourcedb orcl -sid orcl) 10. Start the instance (after creation, it will usually start automatically) sqlplus / as sysdba SQL> startup SQL> select instance_name,version from v$instance; View the database file dbf Summarize The above is a detailed graphic tutorial on how to silently install oracle12.2 on CentOS under VMware. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: How to reference external CSS files and iconfont in WeChat applet wxss
>>: Detailed tutorial on how to modify the root password after forgetting it in MySQL 5.7
I found a lot of websites that use drop-down or sl...
Fault site: Log in to the MySQL server and get th...
1. Set a directory whitelist: Do not set restrict...
cellspacing is the distance between cells in the t...
Preface Generally speaking, when we talk about Li...
Recently, there is a requirement for uploading pi...
1. What is HTML markup language? HTML is a markup...
Declaring variables Setting Global Variables set ...
Find the problem I recently encountered a problem...
Table of contents rc.local method chkconfig metho...
Configure service startup and shutdown in Linux s...
In one sentence: Data hijacking (Object.definePro...
This article example shares the specific code of ...
Table of contents Demo1 create_fragment SvelteCom...
This article shares the specific code of jQuery t...