Customizing HTTPS Console and Upload Ports After Installing Enterprise Manager Grid/Cloud Control
One of my blog readers asked me how we can change the ports of Grid Control after install. Yes it’s possible to change the ports after installing EM Grid Control and it’s well documented for Enterprise Manager Cloud control. I tested if these steps are valid for Grid Control and it worked. I think no one uses insecure ports so I’ll show how I will set Oracle Enterprise Manager (secure) web site port to 8000 and “secure/https upload port” to 2000 on Oracle Enterprise Manager Grid Control 11g:
First we need to stop OMS:
1 |
/oracle/Middleware/oms11g/bin/emctl stop oms -all |
Then modify the port information in repository:
1 2 3 4 |
/oracle/Middleware/oms11g/bin/emctl set property -name \ oracle.sysman.emSDK.svlt.ConsoleServerHTTPSPort -value 2000 /oracle/Middleware/oms11g/bin/emctl set property -name \ oracle.sysman.emSDK.svlt.EMConsoleServerHTTPSPort -value 8000 |