IBM / ansible-role-infosvr

Ansible role for automating the deployment of IBM InfoSphere Information Server
Apache License 2.0
15 stars 12 forks source link

ERROR: configure - set WLM properties according to environment scale #32

Closed Ramnikov closed 3 years ago

Ramnikov commented 3 years ago

In the module, an URL is built from ansible_fqdn. here are my ost_vars:

    "ansible_fibre_channel_wwn": [],
    "ansible_fips": false,
    "ansible_form_factor": "Other",
    "ansible_fqdn": "localhost.localdomain",
    "ansible_hostname": "engine-rhel7",
    "ansible_hostnqn": "",
    "ansible_interfaces": [
        "lo",
        "ens192"

here is my inventory file:

`[ibm_information_server_repo]
# Linux host where the repository tier (database) should be installed (DB2)
XX.XX.XX.108 ansible_ssh_user='root' ansible_ssh_private_key_file='~/.ssh/id_rsa' 

[ibm_information_server_domain]
# Linux host where the domain (services) tier should be installed (WebSphere)
XX.XX.XX..108 ansible_ssh_user='root' ansible_ssh_private_key_file='~/.ssh/id_rsa' 

[ibm_information_server_engine]
# Linux host where the engine tier should be installed
XX.XX.XX..143 ansible_ssh_user='root' ansible_ssh_private_key_file='~/.ssh/id_rsa' `

As a result my URL looks like this: https://XX.XX.XX.XX:9446/ibm/iis/ds/api/engines/LOCALHOST.LOCALDOMAIN/wlmconfig.

How the working Url should look like? Can i change it with ansible_hostname if in my /etc/hosts it is defined?

Ramnikov commented 3 years ago

closing the issue. The fqdn was fixed manually