Monitor a Database with Enterprise Manager Express
This article explains how to set up an Enterprise Manager Express console to monitor the database.
On 1- and 2-node RAC DB Systems, by default, the EM Express console is not enabled on version 18.1.0.0, 12.2.0.1, and 12.1.0.2 databases. You can enable it for an existing database as described below, or you can enable it when you create a database by using the Database Commands with the -co
parameter.
You must also update the security list and iptables for the DB system as described later in this topic.
When you enable the console, you'll set the port for the console. The procedure below uses port 5500, but each additional console enabled on the same DB system will have a different port.
Required IAM Policy
Some of the procedures below require permission to create or update security lists. For more information about security list policies, see Security Lists.
Related Topics
Enable the EM Express Console and Determine its Port Number
- SSH to the DB system, log in as
opc
, sudo to the oracle user, and log in to the database asSYS
.sudo su - oracle . oraenv <provide the database SID at the prompt> sqlplus / as sysdba
- Do one of the following:
-
To enable the console and set its port, use the following command.
exec DBMS_XDB_CONFIG.SETHTTPSPORT(<port>);
For example:
exec DBMS_XDB_CONFIG.SETHTTPSPORT(5500);
-
To determine the port for a previously enabled console, use the following command.
select dbms_xdb_config.getHttpsPort() from dual;
For example:
Output:select dbms_xdb_config.getHttpsPort() from dual;
DBMS_XDB_CONFIG.GETHTTPSPORT() ------------------------------ 5500
-
- Return to the operating system by typing
exit
and then confirm that the listener is listening on the port:
Output:lsnrctl status | grep HTTP
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=xxx.xx.xxxxxx.xxx)(PORT=5500))(Security=(my_wallet_directory=/u01/app/oracle/admin/prod/xdb_wallet))(Presentation=HTTP)(Session=RAW))
- If you are using a 2-node RAC DB system, see Set the Required Permissions On a 2-node RAC DB System.
- Open the console's port as described in Open Ports on the DB System.
- Update the security list for the console's port as described in Update the Security List for the DB System.
Set the Required Permissions On a 2-node RAC DB System
If you're using a 2-node RAC DB system, you'll need to add read permissions for the asmadmin
group on the wallet directory on both nodes in the system.
- SSH to one of the nodes in the DB system, log in as
opc
, andsudo
to the grid user.sudo su - grid . oraenv ORACLE_SID = [+ASM1] ? The Oracle base has been set to /u01/app/grid
- Get the location of the wallet directory by executing the following command.
Output:lsnrctl status | grep xdb_wallet
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=dbsysHost1.sub04061528182.dbsysapril6.oraclevcn.com)(PORT=5500))(Security=(my_wallet_directory=/u01/app/oracle/admin/dbsys12_phx3wm/xdb_wallet))(Presentation=HTTP)(Session=RAW))
- Return to the
opc
user, switch to the oracle user, and change to the wallet directory.sudo su - oracle cd /u01/app/oracle/admin/dbsys12_phx3wm/xdb_wallet
- List the directory contents and note the permissions.
Output:ls -ltr
total 8 -rw------- 1 oracle asmadmin 3881 Apr 6 16:32 ewallet.p12 -rw------- 1 oracle asmadmin 3926 Apr 6 16:32 cwallet.sso
- Change the permissions:
chmod 640 /u01/app/oracle/admin/dbsys12_phx3wm/xdb_wallet/*
- Verify that read permissions were added.
Output:ls -ltr
total 8 -rw-r----- 1 oracle asmadmin 3881 Apr 6 16:32 ewallet.p12 -rw-r----- 1 oracle asmadmin 3926 Apr 6 16:32 cwallet.sso
- Repeat the steps above on the other node in the cluster.
Connect to the EM Express Console
After you've enabled the Console and opened its port in the security list and iptables, you can connect as follows:
- From a web browser, connect to the Console using the following URL format:
https://<ip_address>:<port>/em
For example,
https://129.145.0.164:5500/em
Use the DB system's private or public IP address depending on your network configuration.
Use the private IP address to connect to the system from your on-premises network, or from within the Virtual Cloud Network (VCN). This includes connecting from a host located on-premises connecting through a VPN or FastConnect to your VCN, or from another host in the same VCN. Use the public IP address to connect to the system from outside the cloud (with no VPN). You can find the IP addresses in the Console as follows:
- On the DB System Details page, under Resources, click Nodes.
- The Public IP address and Private IP address & DNS name are displayed in the table columns.
- A login page is displayed and you can log in with any valid database credentials.
-
The Database Home page is displayed.
To learn more about EM Express, see Introduction to Oracle Enterprise Manager Database Express.
Note:
If you're using a 1-node DB system, and you are unable to connect to the EM Express console, see Database Known Issues.