搭建HA的基礎(chǔ)設(shè)施環(huán)境:
兩臺Windows Server 2016的服務(wù)器A和B导帝;
A的內(nèi)網(wǎng)IP為internal_ipaddress1大刊,外網(wǎng)IP為external_ipaddress1;
B的內(nèi)網(wǎng)IP為internal_ipaddress2联贩,外網(wǎng)IP為external_ipaddress2锈死;
一臺Windows Server 2016數(shù)據(jù)庫服務(wù)器C钓辆,內(nèi)網(wǎng)IP為internal_ipaddress3;
一臺負載均衡Load Balancer考传,外網(wǎng)IP為external_ipaddress4吃型;
一臺Windows Server作為文件共享服務(wù)器D,外網(wǎng)IP為external_ipaddress5僚楞;
一勤晚、安裝Oracle數(shù)據(jù)庫(Windows)
1枉层、以管理員身份運行安裝程序;
2赐写、打開安裝程序后鸟蜡,跟著安裝向?qū)Вx默認選擇“創(chuàng)建并配置單實例數(shù)據(jù)庫”挺邀,下一步揉忘;
3、選擇安裝桌面類端铛,下一步泣矛;
4、選擇使用虛擬賬戶禾蚕,下一步您朽;
5、設(shè)置基目錄夕膀,文件目錄虚倒,也可以選擇默認,設(shè)置口令产舞。注意:不能勾選“創(chuàng)建為容器數(shù)據(jù)庫”魂奥;
6、接下來一步一步默認執(zhí)行即可易猫。
二耻煤、配置Oracle數(shù)據(jù)庫
1、檢查監(jiān)聽端口1521是否打開
打開防火墻的入站規(guī)則 TCP 1521端口准颓;
用管理員身份運行CMD命令行哈蝇;
執(zhí)行lsnctl status命令,查看監(jiān)聽端口攘已;
執(zhí)行netstat -ano | findstr 1521命令炮赦,檢查是否端口已經(jīng)啟動;
如果監(jiān)聽端口有錯誤样勃,可以手工啟動Oracle Net Configuration Assistant程序吠勘,刪除原有的監(jiān)聽配置季希,再手工新增一個監(jiān)聽配置肥矢。修改后费尽,使用lsnrctl stop和lsnrctl start命令间景,重啟監(jiān)聽服務(wù)祭往。
2摊滔、建立數(shù)據(jù)庫表空間勋篓、用戶及用戶權(quán)限
用管理員身份運行CMD命令行咬扇,運行sqlplus / as sysdba命令,進入SQL命令狀態(tài)鸡挠。執(zhí)行命令行辉饱,創(chuàng)建兩個數(shù)據(jù)庫空間和用戶,一個是為了control Room宵凌,一個是為了Bot Insight:
Control Room的表空間和用戶鞋囊,假定表空間名為crdb1,用戶名和密碼都為crdb1
create bigfile TABLESPACE crdb1 datafile 'C:\INSTALL\ORADATA\ORCL\crdb1.dbf' SIZE 4096M;
create user crdb1 identified by crdb1 default tablespace CRDB1;
grant connect to crdb1;
grant resource to crdb1;
grant select any dictionary to crdb1;
grant select any dictionary to crdb1;
grant select any table to crdb1;
grant select any table to crdb1;
grant flashback any table to crdb1;
grant alter any table to crdb1;
grant alter session to crdb1;
grant execute on dbms_flashback to crdb1;
grant execute any procedure to crdb1;
grant execute any procedure to crdb1;
grant create any procedure to crdb1;
grant create session to crdb1;
grant create sequence to crdb1;
grant create synonym to crdb1;
grant create any table to crdb1;
grant create user to crdb1;
grant create view to crdb1;
grant execute_catalog_role,select_catalog_role to crdb1;
grant aq_user_role,aq_administrator_role to crdb1;
grant drop any table to crdb1;
grant drop user to crdb1;
grant dba to crdb1;
Bot Insight的表空間和用戶瞎惫,假定表空間名為bidb1溜腐,用戶名和密碼都為bidb1
create bigfile TABLESPACE bidb1 datafile 'C:\INSTALL\ORADATA\ORCL\bidb1.dbf' SIZE 4096M;
create user bidb1 identified by bidb1 default tablespace bidb1;
grant connect to bidb1;
grant resource to bidb1;
grant select any dictionary to bidb1;
grant select any dictionary to bidb1;
grant select any table to bidb1;
grant select any table to bidb1;
grant flashback any table to bidb1;
grant alter any table to bidb1;
grant alter session to bidb1;
grant execute on dbms_flashback to bidb1;
grant execute any procedure to bidb1;
grant execute any procedure to bidb1;
grant create any procedure to bidb1;
grant create session to bidb1;
grant create sequence to bidb1;
grant create synonym to bidb1;
grant create any table to bidb1;
grant create user to bidb1;
grant create view to bidb1;
grant execute_catalog_role,select_catalog_role to bidb1;
grant aq_user_role,aq_administrator_role to bidb1;
grant drop any table to bidb1;
grant drop user to bidb1;
grant dba to bidb1;
最后在提交一下
commit;
三、安裝和配置PostgreSQL數(shù)據(jù)庫
由于做AAE的HA需要使用到PostgreSQL
安裝PostgreSQL的說明瓜喇,請參考?https://www.yiibai.com/postgresql/install-postgresql.html
還需要打開防火墻的入站規(guī)則 TCP 5432端口
四挺益、在A機器上安裝AAE的Control Room
1、使用管理員身份運行AAE11.3.4的安裝文件乘寒;
2望众、選擇自定義安裝方式;
3伞辛、選擇默認安裝目錄烂翰;
4、在Cluster Configuration頁面中蚤氏,勾選Enable Cluster Setup甘耿。在Cluster IP中按照固定順序輸入A和B兩臺機器的內(nèi)網(wǎng)IP地址internal_ipaddress1和internal_ipaddress2,在Local IP中選擇A機器的內(nèi)網(wǎng)IP竿滨,internal_ipaddress1佳恬。
5、設(shè)置HTTP端口和HTTPS端口于游,且確認防火墻已經(jīng)打開入站規(guī)則毁葱;
6、設(shè)置數(shù)據(jù)庫連接信息贰剥,包括C機器的IP地址 internal_ipaddress3倾剿,端口 1521,Control Room和Bot Insight的用戶名口令蚌成;
7前痘、設(shè)置PostgreSQL的IP地址和端口,用戶名和用戶口令笑陈;
8、下一步完成安裝葵袭。
9涵妥、檢查一下A機器的Contro Room的頁面是否可以打開。
五、?在B機器上安裝AAE的Control Room
步驟同A機器蓬网,只是在在Cluster Configuration頁面中窒所,勾選Enable Cluster Setup。在Cluster IP中按照固定順序輸入A和B兩臺機器的內(nèi)網(wǎng)IP地址internal_ipaddress1和internal_ipaddress2帆锋,輸入順序同A機器安裝配置吵取,在Local IP中選擇B機器的內(nèi)網(wǎng)IP,internal_ipaddress2锯厢。
注意:數(shù)據(jù)庫的地址和訪問方式皮官,與A機器的安裝配置一致;PostgreSQL的訪問地址和用戶名口令與A機器的安裝配置一致实辑。
一步一步安裝完成后捺氢,檢查一下B機器的Contro Room的頁面是否可以打開。
執(zhí)行到此步驟剪撬,表明A和B機器的Control Room共享了C機器的數(shù)據(jù)庫摄乒。
六、?設(shè)置負載均衡Load Balancer
在負載均衡設(shè)置中残黑,加入A和B的外網(wǎng)IP地址external_ipaddress1和external_ipaddress2馍佑。
設(shè)置負載均衡的外網(wǎng)IP為external_ipaddress4,端口設(shè)為80梨水。
七拭荤、?設(shè)置文件共享服務(wù)器
在Windows服務(wù)器D里面配置共享文件可以使用域管理模式,也可以使用NFS文件服務(wù)冰木。本次配置中穷劈,采用NFS文件服務(wù)的方式。
1踊沸、在服務(wù)器D中安裝NFS服務(wù)組件
2、設(shè)置該共享文件夾的訪問權(quán)限
3、打開該服務(wù)器防火墻的入站規(guī)則:端口111(NFS)腺律, 2049(NFS02)奕短, 及1058(NFS03)
4、在服務(wù)器A和B中安裝NFS客戶端匀钧,同第1步翎碑,打開“服務(wù)器管理器”,在主頁儀表板中單擊“添加角色和功能” 之斯。
5、測試服務(wù)器A和B是否可以訪問服務(wù)器C的共享目錄,\\external_ipaddress5\共享文件夾莉擒,并在該目錄匯總建立Server Files文件夾作為Control Room的Repository
八酿炸、?設(shè)置Control Room的初始化配置
在A或B機器的Control Room初始配置頁面中,
Repository path輸入文件存儲的共享目錄?\\external_ipaddress5\共享文件夾\Server Files
Control Room Access URL地址中輸入http://external_ipaddress4:80涨冀,指向負載均衡的IP地址.
由于A和B共享了數(shù)據(jù)庫填硕,所以配置完一臺機器的Control Room,另一臺機器也就相當于配置好了鹿鳖。
九扁眯、?測試已經(jīng)搭建好的HA環(huán)境
嘗試使用http://external_ipaddress4:80來訪問Control Room,測試連接成功栓辜。
接下來可以嘗試停掉A或B某臺機器的Control Room的Service恋拍,不會影響用戶訪問http://external_ipaddress4:80這個地址。