In my previous post, I mentioned that we can use stunnel to get around using https in oracle utl_http call. Today I ran into this 404 not found problem and there is no solution.
I am forced to switch to nginx. Setup was extremely easy. Most likely I am going to use nginx in the future.
With this setup, I can issue http://localhost:8103 and nginx will load balance between https://web1.remote.com:8443 and https://web2.remote.com:8443
Bonus is I don’t need to worry about oracle wallet anymore. It is a nightmare to maintain, especially internal hostname with https.
nginx.conf
After everything is working, I use nssm to make nginx a window service.
P.S. If you don't have two upstream servers for load balancing, remove the upstream section and put the upstream server hostname directly in proxy_pass
Wednesday, November 29, 2017
Enable/Disable Archive Log Mode
Verify database log mode
Disable archive log
Disable archive log
sqlplus / as sysdba
archive log list
Non-RAC database
Enable archive logshutdown immediate;
startup mount;
alter database archivelog;
alter database open;
Disable archive log
shutdown immediate;
startup mount;
alter database noarchivelog;
alter database open;
RAC database
Enable archive logsrvctl stop database -d orcl
srvctl start database -d orcl -o mount
sqlplus / as sysdba
alter database archivelog;
EXIT;
srvctl stop database -d orcl
srvctl start database -d orcl
Disable archive log
srvctl stop database -d orcl
srvctl start database -d orcl -o mount
sqlplus / as sysdba
alter database noarchivelog;
EXIT;
srvctl stop database -d orcl
srvctl start database -d orcl
Subscribe to:
Posts (Atom)