Replies: 1 comment
-
Hi. To solve this problem we made some manual changes to the Specifically, we modified the following things:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I am working on tractusx-connector. I consider this Readme file for reference: https://github.com/eclipse-tractusx/tractusx-edc/tree/main/charts/tractusx-connector. As mentioned here, I entered client-secret, private-key, and public-key inside HashiCorp Vault. Then I configure chart with
After that I install the helm chart with new name space. And the deployment works completely fine (
STATUS:deployed
). I also checked the pods, and I can see four pods:All four pods are running. I checked the logs for control pod, and it looks fine.
Now I am trying to access management api. I checked on which port management api is working, then I did port forwarding and tried to access management api via curl. But I got 404 error.
Then I again checked the log for control plan pod. But it gives me error:
SEVERE 2024-09-13T00:04:56.936960005 JerseyExtension: Unexpected exception caught org.eclipse.edc.spi.persistence.EdcPersistenceException: org.postgresql.util.PSQLException: ERROR: relation "edc_data_plane_instance" does not exist Position: 15 at org.eclipse.edc.sql.SqlQueryExecutor.query(SqlQueryExecutor.java:97) at org.eclipse.edc.sql.SqlQueryExecutor.single(SqlQueryExecutor.java:65) at org.eclipse.edc.connector.dataplane.selector.store.sql.SqlDataPlaneInstanceStore.findByIdInternal(SqlDataPlaneInstanceStore.java:205) at org.eclipse.edc.connector.dataplane.selector.store.sql.SqlDataPlaneInstanceStore.lambda$save$7(SqlDataPlaneInstanceStore.java:178) at org.eclipse.edc.transaction.local.LocalTransactionContext.lambda$execute$0(LocalTransactionContext.java:57) at org.eclipse.edc.transaction.local.LocalTransactionContext.execute(LocalTransactionContext.java:74) at org.eclipse.edc.transaction.local.LocalTransactionContext.execute(LocalTransactionContext.java:56) at org.eclipse.edc.connector.dataplane.selector.store.sql.SqlDataPlaneInstanceStore.save(SqlDataPlaneInstanceStore.java:176) at org.eclipse.edc.connector.dataplane.selector.store.sql.SqlDataPlaneInstanceStore.save(SqlDataPlaneInstanceStore.java:48) at org.eclipse.edc.connector.dataplane.selector.service.EmbeddedDataPlaneSelectorService.lambda$addInstance$4(EmbeddedDataPlaneSelectorService.java:77) at org.eclipse.edc.transaction.local.LocalTransactionContext.execute(LocalTransactionContext.java:74) at org.eclipse.edc.connector.dataplane.selector.service.EmbeddedDataPlaneSelectorService.addInstance(EmbeddedDataPlaneSelectorService.java:75) at org.eclipse.edc.connector.dataplane.selector.control.api.DataplaneSelectorControlApiController.registerDataplane(DataplaneSelectorControlApiController.java:71) at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(Unknown Source) at java.base/java.lang.reflect.Method.invoke(Unknown Source) at org.glassfish.jersey.server.model.internal.ResourceMethodInvocationHandlerFactory.lambda$static$0(ResourceMethodInvocationHandlerFactory.java:52)
So it seem that something went wrong with postgresql installation. Can anyone please help me in this situation?
Beta Was this translation helpful? Give feedback.
All reactions