今天就跟大家聊聊有關(guān)如何在Linux 7中使用腳本安裝oracle 11g r2,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
成都創(chuàng)新互聯(lián)成都網(wǎng)站建設(shè)按需定制,是成都網(wǎng)站維護公司,為成都木托盤提供網(wǎng)站建設(shè)服務(wù),有成熟的網(wǎng)站定制合作流程,提供網(wǎng)站定制設(shè)計服務(wù):原型圖制作、網(wǎng)站創(chuàng)意設(shè)計、前端HTML5制作、后臺程序開發(fā)等。成都網(wǎng)站設(shè)計熱線:13518219792
Linux是一種免費使用和自由傳播的類UNIX操作系統(tǒng),是一個基于POSIX的多用戶、多任務(wù)、支持多線程和多CPU的操作系統(tǒng),使用Linux能運行主要的Unix工具軟件、應(yīng)用程序和網(wǎng)絡(luò)協(xié)議。
一、環(huán)境腳本簡單配置
#!/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<二、安裝
1.使用xmanager安裝,服務(wù)器是最小化安裝的
[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...中間就是一些鼠標(biāo)操作
2.安裝完軟件,dbca建庫就完了
看完上述內(nèi)容,你們對如何在Linux 7中使用腳本安裝oracle 11g r2有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
本文標(biāo)題:如何在Linux7中使用腳本安裝oracle11gr2
轉(zhuǎn)載來于:http://weahome.cn/article/poeocd.html