-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
init for graalvm workshops - spring boot, quarkus, micronaut, helidon #3
Conversation
#javax.sql.DataSource.example.URL=jdbc:oracle:thin:@<ATP_NAME>_high?TNS_ADMIN=/home/<YOUR_USER>/<YOUR_WALLET_LOCATION> | ||
javax.sql.DataSource.example.URL=jdbc:oracle:thin:@ATP110345_high?TNS_ADMIN=/home/LL110345_U/myatpwallet | ||
javax.sql.DataSource.example.user=ADMIN | ||
javax.sql.DataSource.example.password=##03pRivvzR2q4jv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This password is exposed at the moment, could you hide it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed it
datasources.default.username=ADMIN | ||
datasources.default.password= | ||
#datasources.default.password=<YOUR_PASSWORD> | ||
datasources.default.walletPassword=Welcome12345 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's also the wallet password exposed here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed it
quarkus.datasource.jdbc.driver=oracle.jdbc.driver.OracleDriver | ||
quarkus.datasource.jdbc.url=jdbc:oracle:thin:@gdpaulsep27i_tp?TNS_ADMIN=/Users/pparkins/Downloads/Wallet_gdpaulsep27o | ||
quarkus.datasource.username=inventoryuser | ||
quarkus.datasource.password=Welcome12345 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wallet password here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed it (a lot of these are just templates/placeholders btw)
|
||
quarkus.datasource.db-kind=oracle | ||
quarkus.datasource.jdbc.driver=oracle.jdbc.driver.OracleDriver | ||
quarkus.datasource.jdbc.url=jdbc:oracle:thin:@gdpaulsep27i_tp?TNS_ADMIN=/Users/pparkins/Downloads/Wallet_gdpaulsep27o |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you pass that env variable like a HTTP parameter? I never knew that!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep :)
# DB properties | ||
oracle.ucp.jdbc.PoolDataSource.inventorypdb.URL = jdbc:oracle:thin:@gdpaulobi_tp?TNS_ADMIN=/Users/pparkins/Downloads/Wallet_gdpaulsep27o | ||
oracle.ucp.jdbc.PoolDataSource.inventorypdb.user = inventoryuser | ||
oracle.ucp.jdbc.PoolDataSource.inventorypdb.password = Welcome12345 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
password here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed it
ods.setURL("jdbc:oracle:thin:@ATP110345_high?TNS_ADMIN=/home/LL110345_U/myatpwallet"); | ||
ods.setUser("ADMIN"); | ||
// ods.setPassword("[ATP Admin Password]"); | ||
ods.setPassword("##03pRivvzR2q4jv"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's also a password here but I'm not sure if it's a sensitive one or not
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed it
No description provided.