diff options
author | GitStorm <GitStorm@users.noreply.github.com> | 2018-12-13 11:52:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-13 11:52:56 +0100 |
commit | b0e3bc96ddb3828b817862d9a4575c4bf2304414 (patch) | |
tree | 8f4c67018e0bedbedf4bd392617cb472aa84f35e /DATA_MIGRATION.md | |
parent | Merge pull request #2919 from ryanpetrello/dispatcher-task-import-hardening (diff) | |
download | awx-b0e3bc96ddb3828b817862d9a4575c4bf2304414.tar.xz awx-b0e3bc96ddb3828b817862d9a4575c4bf2304414.zip |
tower-cli config: host value needs to be URL
Since the key name "host" is slightly misleading, it would help to point out in this documentation, that in fact an URL is required for that key/value pair "host" in the tower-cli config. Failing to do so drops the follwing error:
Error: There was a network error of some kind trying to connect to Tower.
The most common reason for this is a settings issue; is your "host" value in `tower-cli config` correct?
Diffstat (limited to 'DATA_MIGRATION.md')
-rw-r--r-- | DATA_MIGRATION.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/DATA_MIGRATION.md b/DATA_MIGRATION.md index 85d8422a93..8e46cf6906 100644 --- a/DATA_MIGRATION.md +++ b/DATA_MIGRATION.md @@ -18,7 +18,7 @@ $ pip install --upgrade ansible-tower-cli The AWX host URL, user, and password must be set for the AWX instance to be exported: ``` -$ tower-cli config host <old-awx-host.example.com> +$ tower-cli config host http://<old-awx-host.example.com> $ tower-cli config username <user> $ tower-cli config password <pass> ``` @@ -62,7 +62,7 @@ For other install methods, refer to the [Install.md](https://github.com/ansible/ Configure tower-cli for your new AWX host as shown earlier. Import from a JSON file named assets.json ``` -$ tower-cli config host <new-awx-host.example.com> +$ tower-cli config host http://<new-awx-host.example.com> $ tower-cli config username <user> $ tower-cli config password <pass> $ tower-cli send assets.json |