Re: Configure standby EBS 12.1.3 apps server to work with primary database in place
Posted by Mohammed Misbahuddin on Dec 17, 2019; 11:07am
URL: http://erman-arslan-s-oracle-forum.124.s1.nabble.com/Configure-standby-EBS-12-1-3-apps-server-to-work-with-primary-database-in-place-tp7921p7927.html
Hi,
Thank you very much for all the clarifications and options.
I feel now the procedure mentioned in Correct Method of Changing the IP Address in 11i & R12 (Doc ID 751328.1) should satisfy our needs.....if used along with the procedures for apps tier hostname change mentioned in How to change hostname for E-Business Suite Release 12 on single node (Doc ID 1277556.1)"
The steps will be the same as you suggested: In our case...
1) Shutdown the apps services or its crashed
2)Deregister the current application server by below procedures:
perl $AD_TOP/bin/adgentns.pl appspass=<APPSpwd> contextfile=./<SID>_oldhost.xml -removeserver
&
begin
FND_NET_SERVICES.remove_server('<SID>', '<hostname>');
end;
/
commit;
&
exec fnd_conc_clone.setup_clean;
3) APPS Tier: Create a new Context file
You can create the new context file using whichever of the following methods:
a. Manual Method:
cd $APPL_TOP/admin
cp <SID>_oldhost.xml <SID>_newhost.xml
Edit <SID>_newhost.xml manually:
Replace all oldhost with newhost
b. Script Method:(The command below will create a new Context file of <SID>_newhost.xml in new <SID>_newhost directory.)
cd $INST_TOP/appl/admin
perl $COMMON_TOP/clone/bin/adclonectx.pl contextfile=./<SID>_oldhost.xml
4) APPS Tier: Reseed the Net Services Topology Model
The Net Services Topology Model is automatically updated by running AutoConfig.
$AD_TOP/bin/adconfig.sh contextfile= $INST_TOP/../<SID>_newhost//appl/admin/<SID>_newhost.xml appspass=<appspasswd>
5) finally run autoconfig without passing the context file name and start the services...
Hope the above is exactly as you suggested.
Will test this weekend …...