diff options
author | 2025-01-16 14:13:56 +0000 | |
---|---|---|
committer | 2025-01-16 16:12:46 +0000 | |
commit | 7528c41d3fb2094b6f29cb08168bbab39b7bbadf (patch) | |
tree | 95819dec74a6d8f3446d8b0088f59db443a479bc /packages/policy-xacmlpdp-tarball | |
parent | 5a7e8d2848fd248ffceea370de02d8290019dbe5 (diff) |
Remove MariaDB support
- change configurations to use PostgreSQL as default
- remove extra configurations using mariadb
- updated README for tutorials to use docker compose
from docker repository.
Issue-ID: POLICY-5196
Change-Id: I46abf73e1bc24997c494c0126b5b3a375021411b
Signed-off-by: adheli.tavares <adheli.tavares@est.tech>
Diffstat (limited to 'packages/policy-xacmlpdp-tarball')
-rw-r--r-- | packages/policy-xacmlpdp-tarball/src/main/resources/apps/guard/xacml.properties | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/policy-xacmlpdp-tarball/src/main/resources/apps/guard/xacml.properties b/packages/policy-xacmlpdp-tarball/src/main/resources/apps/guard/xacml.properties index ede93c70..5282a90e 100644 --- a/packages/policy-xacmlpdp-tarball/src/main/resources/apps/guard/xacml.properties +++ b/packages/policy-xacmlpdp-tarball/src/main/resources/apps/guard/xacml.properties @@ -47,8 +47,7 @@ xacml.pip.engines=count-recent-operations,get-operation-outcome # # JPA Properties # -eclipselink.target-database=MySQL -jakarta.persistence.jdbc.driver=org.mariadb.jdbc.Driver -jakarta.persistence.jdbc.url=jdbc:mariadb://mariadb:3306/operationshistory +jakarta.persistence.jdbc.driver=org.postgresql.jdbc.Driver +jakarta.persistence.jdbc.url=jdbc:postgresql://postgres:5432/operationshistory jakarta.persistence.jdbc.user=policy_user jakarta.persistence.jdbc.password=policy_user |