建立虛擬機器
安裝centos
開始oracle11g安裝
網路選擇橋接,其他選項預設即可
建立完虛擬機器後,設定裡面選擇使用ios映象檔案:centos-6.5-x86_64-bin-***1.iso
建議大家連線到xshell下進行。
修改baseurl和enabled
[debug]
name=centos-6 - debuginfo
baseurl=file:///mnt/cdrom
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/rpm-gpg-key-centos-debug-6
enabled=1
最後需要輸入兩次密碼確認
groupadd oinstall
groupadd dba
useradd -g oinstall -g dba oracle
passwd oracle
chown -r oracle:oinstall /u01
chmod -r 775 /u01
將oracle11gr2的安裝包上傳到tmp目錄下
以oracle使用者登入,解壓tmp目錄下的兩個zip檔案
到database目錄下執行安裝
su - oracle
cd /tmp
unzip linux.x64_11gr2_database_1of2.zip
unzip linux.x64_11gr2_database_2of2.zip
cd /tmp/database
./runinstaller
vi /etc/sysconfig/i18n 改為 lang="en_us.utf-8"
使設定生效
source /etc/sysconfig/i18n
臨時修改
export lang=en_us
[oracle@sc database]$ ./runinstaller
starting oracle universal installer...
checking temp space: must be greater than 120 mb. actual 27982 mb passed
checking swap space: must be greater than 150 mb. actual 1983 mb passed
checking monitor: must be configured to display at least 256 colors. actual 16777216 passed
preparing to launch oracle universal installer from /tmp/orainstall2016-05-16_07-19-44pm. please wait ...
出現下面的畫面,你就成功了!
在linux下安裝oracle
root holmofy groupadd oinstall root holmofy groupadd dba root holmofy useradd g oinstall g dba oracle 可以使用以下命令檢視記憶體大小 grep memtotal proc meminfo 檢查ram...
Oracle在Linux下的安裝
說明 這個版本是10g,我的測試是在redhat enterprise上完成的。2 系統預設使用的一些設定如下 預設資料庫 orcl 使用者 sys system sy an dbsnmp 企業版 1.3g 資料庫 700m 3 安裝過程中需要執行的乙個指令碼,這個指令碼必須以root使用者身份登入...
oracle 在 Linux下安裝環境配置
一 安裝前提條件 1.檢視記憶體情況 grep memtotal proc meminfo 2.檢視swap情況 grep swaptotal proc meminfo 3.檢視磁碟空間 df h 4.tmp目錄空間大於400mb 二 建立使用者 1.建立使用者組 groupadd dba 2.建立...