本教程为大家分享了oracle 11g r2安装教程,供大家参考,具体内容如下
一、环境脚本简单配置
#!/bin/bash mv /etc/yum.repos.d/* /tmp mv iso.repo /etc/yum.repos.d/ tar zxvf a.tar.gz mv 7server /root/ sed -i '3 s/^#//' /etc/yum.repos.d/iso.repo sed -i '4 s/^/#/' /etc/yum.repos.d/iso.repo yum install createrepo -y yum install unzip -y yum install gcc* -y yum install xhost -y yum -y install elfutils* createrepo /root/7server/ sed -i '3 s/^/#/' /etc/yum.repos.d/iso.repo sed -i '4 s/^#//' /etc/yum.repos.d/iso.repo #!/bin/bash ip=`ip addr |grep 'inet'|grep 'eno'|awk '{print $2}'|awk -f / '{print $1}'` echo $ip ol7.localdomain ol7 >> /etc/hosts hostnamectl set-hostname ol7.localdomain sed -i 's#selinux=enforcing#selinux=disabled#g' /etc/sysconfig/selinux yum -y install oracle-rdbms-* yum -y install rlwrap mkdir -p /u01/app/oracle/product/11.2.0.4/db_1 chown -r oracle:oinstall /u01 chmod -r 775 /u01 systemctl stop firewalld systemctl disable firewalld cat >>/home/oracle/.bash_profile<<eof # oracle settings tmp=/tmp; export tmp tmpdir=$tmp; export tmpdir oracle_hostname=ol7.localdomain1; export oracle_hostname oracle_unqname=db11g; export oracle_unqname oracle_base=/u01/app/oracle; export oracle_base oracle_home=$oracle_base/product/11.2.0.4/db_1; export oracle_home oracle_sid=db11g; export oracle_sid oracle_term=xterm; export oracle_term path=/usr/sbin:$path; export path path=$oracle_home/bin:$path; export path ld_library_path=$oracle_home/lib:/lib:/usr/lib; export ld_library_path classpath=$oracle_home/jre:$oracle_home/jlib:$oracle_home/rdbms/jlib; export classpath alias sql='rlwrap sqlplus' alias sqlplus='rlwrap sqlplus' alias lsnrctl='rlwrap lsnrctl' alias rman='rlwrap rman' alias envo='env | grep oracle' alias cdob='cd $oracle_base' alias cdoh='cd $oracle_home' alias tns='cd $oracle_home/network/admin' eof
二、安装
1.使用xmanager安装,服务器是最小化安装的
[root@ol7 oracle]# xhost + access control disabled, clients can connect from any host [root@ol7 oracle]# exit exit [oracle@ol7 ~]$ export display=192.168.3.21:0.0 [oracle@ol7 ~]$ cd database/ [oracle@ol7 database]$ ./runinstaller starting oracle universal installer...
中间就是一些鼠标操作
2.安装完软件,dbca建库就完了
三、总结
因为自己每次都要配置环境,安装,所以就用了个简单得脚本实现环境的配置。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。