Situation:
When installing Adeptia, the URL auto generated by the installation wizard is incorrect. For example, I am trying to connect to an Oracle database but the URL generated is
adeptiaOracleServer:1521:adeptiabackend
but our Oracle server does not support SID. Instead we are using service name as below
jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=adeptiaOracleServer)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=adeptiabackend)(SERVER=DEDICATED)))
Tip:
You can enable the ability to use a custom database URL using the following command
./install.bin -DConfigureDBviaURL=true
Note: If you are installing on windows, you'll need to use install.exe instead of install.bin (from the command prompt)
Comments
0 comments
Article is closed for comments.