Oracle JDBC "listener does not currently know of SID given in connect descriptor"
Problem
If you are using an Oracle database with a Servicename and you chose the option SID in the installation, the error "listener does not currently know of SID given in connect descriptor" appears at the start of LUY.
Solution
Open the luy-db.properties
Search for the property "database.url" within this file
Change the "
:
" before the service name (last part of the url) to "/
", e.g."
database.url=jdbc:oracle:DOMAIN:PORT:SERVICENAME
" to "database.url=jdbc:oracle:DOMAIN:PORT/SERVICENAME
"
Restart your Tomcat