I have 12c DB server with multiple instances. I have created new database BBBB using the DBCA and chose option to configure EM Express on port 5501. But EM Express is not working. Problem is probably in listener, I can't see the XDB service. On other instances EM Express works fine.
SQL> show parameter dispatcher
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
dispatchers string (PROTOCOL=TCP) (SERVICE=BBBBXDB)
max_dispatchers integer
SQL> select dbms_xdb_config.gethttpsport() from dual;
DBMS_XDB_CONFIG.GETHTTPSPORT()
------------------------------
5501
bash-4.3$ lsnrctl status
LSNRCTL for HPUX: Version 12.1.0.2.0 - Production on 04-JUN-2015 11:07:43
Copyright (c) 1991, 2014, Oracle. All rights reserved.
Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for HPUX: Version 12.1.0.2.0 - Production
Start Date 03-JUN-2015 17:02:55
Uptime 0 days 18 hr. 4 min. 47 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /..path../network/admin/listener.ora
Listener Log File /..path../listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oracle.example.com)(PORT=1521)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=oracle.example.com)(PORT=5502))(Security=(my_wallet_directory=/..path../CCCC/xdb_wallet))(Presentation=HTTP)(Session=RAW))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=oracle.example.com)(PORT=5500))(Security=(my_wallet_directory=/..path../AAAA/xdb_wallet))(Presentation=HTTP)(Session=RAW))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=oracle.example.com)(PORT=5501))(Security=(my_wallet_directory=/..path../BBBB/xdb_wallet))(Presentation=HTTP)(Session=RAW))
Services Summary...
Service "CCCC" has 1 instance(s).
Instance "CCCC", status READY, has 1 handler(s) for this service...
Service "CCCCXDB" has 1 instance(s).
Instance "CCCC", status READY, has 1 handler(s) for this service...
Service "BBBB" has 1 instance(s).
Instance "BBBB", status READY, has 1 handler(s) for this service...
Service "AAAA" has 1 instance(s).
Instance "AAAA", status READY, has 1 handler(s) for this service...
Service "AAAAXDB" has 1 instance(s).
Instance "AAAA", status READY, has 1 handler(s) for this service...
The command completed successfully
Thanks for any advice.