I've install the virtual box image of 23c developer release.
It works great until I enabled mongodb api , following Hermann's blog post (https://blogs.oracle.com/datawarehousing/post/use-json-relational-duality-with-oracle-database-api-for-mongo-db)
From that moment - ORDS (standalone of course) listen only on port 27017 for mongodb api and stopped listening on port 8080.
Are there any instructions for having both ports/all features enabled?
Follow the output of 'netstat -atp | grep LISTEN' with and without mongodb api enabled
Mongodb api - enabled
root@localhost ~]# netstat -atp | grep LIST
tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN 917/sshd
tcp 0 0 0.0.0.0:sunrpc 0.0.0.0:* LISTEN 1/systemd
tcp 0 0 0.0.0.0:27017 0.0.0.0:* LISTEN 6514/java
tcp 0 0 localhost:ipp 0.0.0.0:* LISTEN 988/cupsd
tcp 0 0 0.0.0.0:11249 0.0.0.0:* LISTEN 2026/db_d000_FREE
tcp 0 0 localhost.locald:domain 0.0.0.0:* LISTEN 1657/dnsmasq
tcp 0 0 0.0.0.0:ncube-lm 0.0.0.0:* LISTEN 1806/tnslsnr
Mongodb api - disabled
[root@localhost ~]# netstat -atp | grep LIST
tcp 0 0 0.0.0.0:ssh 0.0.0.0:* LISTEN 917/sshd
tcp 0 0 0.0.0.0:sunrpc 0.0.0.0:* LISTEN 1/systemd
tcp 0 0 localhost:ipp 0.0.0.0:* LISTEN 988/cupsd
tcp 0 0 0.0.0.0:11249 0.0.0.0:* LISTEN 2026/db_d000_FREE
tcp 0 0 localhost.locald:domain 0.0.0.0:* LISTEN 1657/dnsmasq
tcp 0 0 0.0.0.0:ncube-lm 0.0.0.0:* LISTEN 1806/tnslsnr
tcp 0 0 0.0.0.0:webcache 0.0.0.0:* LISTEN 7091/java
Thanks,
Hadar