인벤토리 파일을 편집하여 Automation Hub 설치를 지정하고 필수 매개변수를 업데이트합니다.
설치 프로그램으로 이동합니다.
[bundled installer]
cd ansible-automation-platform-setup-bundle-<latest-version>
$ cd ansible-automation-platform-setup-bundle-<latest-version>
Copy to ClipboardCopied!Toggle word wrapToggle overflow
[online installer]
cd ansible-automation-platform-setup-<latest-version>
$ cd ansible-automation-platform-setup-<latest-version>
Copy to ClipboardCopied!Toggle word wrapToggle overflow
텍스트 편집기를 사용하여 인벤토리 파일을 엽니다.
인벤토리 파일 매개변수를 편집하여 Automaton Hub 호스트 설치만 지정합니다. 아래 예를 따르십시오.
[automationcontroller] 인벤토리 정보를 비워 둡니다.
[automationhub] 그룹 호스트 정보를 추가합니다.
참고
[automationhub] 호스트의 액세스 가능한 IP 주소를 제공하여 사용자가 다른 노드에서 Private Automation Hub에서 콘텐츠를 동기화할 수 있도록 합니다.
automationhub_admin_password 및 automation_pg_password 및 설치 사양에 따라 추가 매개변수의 값을 업데이트합니다.
예제
[automationcontroller]
[automationhub]
<reachable-ip> ansible_connection=local
[all:vars]
automationhub_admin_password= <PASSWORD>
automationhub_pg_host=''
automationhub_pg_port=''
automationhub_pg_database='automationhub'
automationhub_pg_username='automationhub'
automationhub_pg_password=<PASSWORD>
automationhub_pg_sslmode='prefer'
# The default install will deploy a TLS enabled Automation Hub.
# If for some reason this is not the behavior wanted one can
# disable TLS enabled deployment.
#
# automationhub_disable_https = False
# The default install will generate self-signed certificates for the Automation
# Hub service. If you are providing valid certificate via automationhub_ssl_cert
# and automationhub_ssl_key, one should toggle that value to True.
#
# automationhub_ssl_validate_certs = False
# SSL-related variables
# If set, this will install a custom CA certificate to the system trust store.
# custom_ca_cert=/path/to/ca.crt
# Certificate and key to install in Automation Hub node
# automationhub_ssl_cert=/path/to/automationhub.cert
# automationhub_ssl_key=/path/to/automationhub.key
[automationcontroller]
[automationhub]
<reachable-ip> ansible_connection=local
[all:vars]
automationhub_admin_password= <PASSWORD>
automationhub_pg_host=''
automationhub_pg_port=''
automationhub_pg_database='automationhub'
automationhub_pg_username='automationhub'
automationhub_pg_password=<PASSWORD>
automationhub_pg_sslmode='prefer'
# The default install will deploy a TLS enabled Automation Hub.
# If for some reason this is not the behavior wanted one can
# disable TLS enabled deployment.
#
# automationhub_disable_https = False
# The default install will generate self-signed certificates for the Automation
# Hub service. If you are providing valid certificate via automationhub_ssl_cert
# and automationhub_ssl_key, one should toggle that value to True.
#
# automationhub_ssl_validate_certs = False
# SSL-related variables
# If set, this will install a custom CA certificate to the system trust store.
# custom_ca_cert=/path/to/ca.crt
# Certificate and key to install in Automation Hub node
# automationhub_ssl_cert=/path/to/automationhub.cert
# automationhub_ssl_key=/path/to/automationhub.key
Copy to ClipboardCopied!Toggle word wrapToggle overflow