fixed databse connection

This commit is contained in:
Alexander Gabriel 2023-03-18 18:35:44 +01:00
parent bead811a41
commit 19fd411585
3 changed files with 9 additions and 4 deletions

View File

@ -57,6 +57,9 @@
- name: link /opt/keycloak/keycloak-21.0.1 to /opt/keycloak/current
file:
state: link
owner: keycloak
group: keycloak
mode: '0770'
src: /opt/keycloak/keycloak-21.0.1
dest: /opt/keycloak/current
@ -143,9 +146,9 @@
state: started
when: not adminuseradded_exists.stat.exists
- name: Sleep 60 seconds
- name: Sleep 120 seconds
ansible.builtin.wait_for:
timeout: 60
timeout: 120
delegate_to: localhost
when: not adminuseradded_exists.stat.exists

View File

@ -11,10 +11,11 @@ TimeoutStartSec=600
TimeoutStopSec=600
Environment="KC_HTTP_HOST={{ keycloak_http_host}}"
Environment="KC_HOSTNAME={{ inventory_hostname }}"
Environment="KC_DB=postgres"
Environment="KC_DB_USERNAME={{ keycloak_postgresql_username }}"
Environment="KC_DB_PASSWORD={{ keycloak_postgresql_password }}"
Environment="KC_DB_URL_DATABASE={{ keycloak_postgresql_database }}"
Environment="KC_DB_URL_HOST={{ inventory_hostname }}"
Environment="KC_DB_URL_HOST=localhost"
Environment="KC_PROXY=edge"
[Install]

View File

@ -11,10 +11,11 @@ TimeoutStartSec=600
TimeoutStopSec=600
Environment="KC_HTTP_HOST={{ keycloak_http_host}}"
Environment="KC_HOSTNAME={{ inventory_hostname }}"
Environment="KC_DB=postgres"
Environment="KC_DB_USERNAME={{ keycloak_postgresql_username }}"
Environment="KC_DB_PASSWORD={{ keycloak_postgresql_password }}"
Environment="KC_DB_URL_DATABASE={{ keycloak_postgresql_database }}"
Environment="KC_DB_URL_HOST={{ inventory_hostname }}"
Environment="KC_DB_URL_HOST=localhost"
Environment="KC_PROXY=edge"
Environment="KEYCLOAK_ADMIN={{ keycloak_initial_admin_name }}"
Environment="KEYCLOAK_ADMIN_PASSWORD={{ keycloak_initial_admin_password }}"