<property name="hibernate.hbm2ddl.auto" value="validate"/>
for
<property name="hibernate.hbm2ddl.auto" value="update"/>
7. create a datasource for both Aerogear UPS and Keycloak:
unifiedpush-ds.xml:
<?xml version="1.0" encoding="UTF-8"?>
<datasources xmlns="http://www.jboss.org/ironjacamar/schema">
<datasource jndi-name="java:jboss/datasources/UnifiedPushDS" pool-name="UnifiedPushDS" enabled="true" use-java-context="true">
<connection-url>jdbc:mysql://host:3306/unifiedpush?useUnicode=true&characterEncoding=UTF-8</connection-url>
<driver>com.mysql</driver>
<security>
<user-name>your-username</user-name>
<password>your-secret</password>
</security>
</datasource>
<datasource jndi-name="java:jboss/datasources/KeycloakDS"
pool-name="KeycloakDS" enabled="true" use-java-context="true">
<connection-url>jdbc:mysql://host:3306/keycloak?useUnicode=true&characterEncoding=UTF-8</connection-url>
<driver>com.mysql</driver>
<security>
<user-name>your-username</user-name>
<password>your-secret</password>
</security>
</datasource>
</datasources>
8. start your server
Hello!I would like to know... Is it possible to run a UPS war using a custom Keycloak server in Wildfly ??I have tried to deploy the unifiedpush-server-wildfly.war on a Wildfly 8.2 with Keycloak on it, but I'm getting some dependencies errors saying that unifiedpush-auth-server.war is required and not installed, can I change this? I would like to make the configurations I need to the Keycloak instance I'm running already.Thanks a lot!Rodrigo