安裝ASM數(shù)據(jù)庫的步驟跟安裝RAC的步驟有很多重復(fù)的地方,因此把之前RAC的安裝文檔拿來改改,就成功安裝了基于ASM管理的數(shù)據(jù)庫。安裝的環(huán)境是CENTOS6.5_64位,待安裝的數(shù)據(jù)庫是11gr2版本。
成都創(chuàng)新互聯(lián)公司是一家專注于網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作與策劃設(shè)計(jì),隆安網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十多年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:隆安等地區(qū)。隆安做網(wǎng)站價(jià)格咨詢:18980820575安裝的步驟如下:
1、創(chuàng)建操作系統(tǒng)組和用戶
groupadd -g 501 oinstall
groupadd -g 502 dba
groupadd -g 504 asmadmin
groupadd -g 506 asmdba
groupadd -g 507 asmoper
useradd -u 501 -g oinstall -G dba,asmadmin,asmdba,asmoper grid
useradd -u 502 -g oinstall -G dba,asmdba oracle
修改用戶口令
passwd grid
passwd oracle
2、vim /etc/hosts編輯文件
192.168.62.102 asm
3、配置內(nèi)核參數(shù)和oracle、grid用戶的資源限制
vim /etc/sysctl.conf
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 4294967295
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576
/sbin/sysctl -p
vim /etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
grid soft nproc 2047
grid hard nproc 16384
grid soft nofile 1024
grid hard nofile 65536
vim /etc/pam.d/login
session required pam_limits.so
vim /etc/profile
if [ $USER = "oracle" ] || [ $USER = "grid" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
umask 022
fi
4.關(guān)閉SELINUX功能
vim /etc/selinux/config
SELINUX=disabled
重啟系統(tǒng)
[/etc/init.d/oracleasm createdisk DATA1 /dev/sdb1這步報(bào)錯(cuò),重啟后解決]
4、為GI何數(shù)據(jù)庫軟件創(chuàng)建相關(guān)的路徑
#創(chuàng)建Inventory路徑
mkdir -p /u01/app/oraInventory
chown -R grid:oinstall /u01/app/oraInventory
chmod -R 775 /u01/app/oraInventory
#創(chuàng)建GI主目錄
mkdir -p /u01/app/grid
chown -R grid:oinstall /u01/app/grid
chmod -R 775 /u01/app/grid
#創(chuàng)建數(shù)據(jù)庫主目錄
mkdir -p /u01/app/oracle
mkdir /u01/app/oracle/cfgtoollogs
chown -R oracle:oinstall /u01/app/oracle
chmod -R 775 /u01/app/oracle
#切換到對應(yīng)的用戶操作
# vim ~/.bash_profile
#Grid Add
export ORACLE_SID=+ASM
export ORACLE_BASE=/u01/app/grid
export ORACLE_HOME=/u01/app/11.2.0/grid
export PATH=$ORACLE_HOME/bin:$PATH
#oracleAdd
export ORACLE_SID=orcl
export ORACLE_UNQNAME=orcl
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1
export PATH=$ORACLE_HOME/bin:$PATH
5、確認(rèn)下以下OS包被安裝
sh yum.sh
yum install binutils* -y
yum install compat* -y
yum install elfutils* -y
yum install gcc* -y
yum install glibc* -y
yum install kernel* -y
yum install ksh* -y
yum install libaio* -y
yum install libgcc* -y
yum install libgomp* -y
yum install libstdc* -y
yum install make* -y
yum install sysstat* -y
yum install unixODBC* -y
yum install libcap* -y
yum install -y compat-libcap1*
yum install -y compat-libstdc*
6、利用fdisk /dev/sdb分配磁盤空間,將10G的空間分配成/dev/sdb1、/dev/sdb2、/dev/sdb3三個(gè)磁盤
n p w
Device Boot Start End Blocks Id System
/dev/sdb1 1 393 3156741 83 Linux
/dev/sdb2 394 786 3156772+ 83 Linux
/dev/sdb3 787 1179 3156772+ 83 Linux
7、關(guān)閉防火墻
/etc/init.d/iptables stop;
chkconfig iptables off;
8、安裝asmlib并創(chuàng)建ASM磁盤
下載oracleasm,在下面的地址中找到相關(guān)的版本下載:
http://www.oracle.com/technetwork/topics/linux/asmlib/index-101839.html
yum -y install kmod-oracleasm.x86_64
rpm -ivh oracleasmlib-2.0.4-1.el6.x86_64.rpm
rpm -ivh oracleasm-support-2.1.8-1.el6.x86_64.rpm
9、創(chuàng)建ASM硬盤
/etc/init.d/oracleasm configure
Default user to own the driver interface [oracle]: grid
Default group to own the driver interface [oinstall]:
Start Oracle ASM library driver on boot (y/n) [y]:
Scan for Oracle ASM disks on boot (y/n) [y]:
/etc/init.d/oracleasm enable
/etc/init.d/oracleasm createdisk DATA1 /dev/sdb1
/etc/init.d/oracleasm createdisk DATA2 /dev/sdb2
/etc/init.d/oracleasm createdisk DATA3 /dev/sdb3
/etc/init.d/oracleasm listdisks
10、安裝GI
切換到grid用戶:
exprot LANG=en_US
進(jìn)入到軟件包文件夾下執(zhí)行./runInstaller,接下來就是通過界面操作,按照界面提示一步步往下走。
在執(zhí)行root.sh腳本時(shí)出現(xiàn)Adding daemon to inittab的時(shí)候,在另一個(gè)窗口使用root立即執(zhí)行以下命令(要不然root.sh腳本會執(zhí)行失?。?/strong>
/bin/dd if=/var/tmp/.oracle/npohasd of=/dev/nullbs=1024 count=1,
直到卡住。
11、 安裝數(shù)據(jù)庫軟件
切換到oracle用戶
exprot LANG=en_US
進(jìn)入到database文件夾下執(zhí)行./runInstaller,按照界面提示一步步往下走。
12、dbca建立實(shí)例
建立實(shí)例的時(shí)候,storage type選擇ASM,其他的跟普通安裝一樣選擇。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。