Ansible: 컬 명령이 실패했습니다.

Ansible: 컬 명령이 실패했습니다.

나는 시간이 지남에 따라 성장할 작은 플레이북을 썼습니다.

먼저 "https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.65/bin/"에 액세스할 수 있는 삭제 서버에 스크립트를 작성하고 스크립트 파일의 내용을 다운로드했습니다. ~이다

#!/bin/bash -x
version="9.0.65"
filename="apache-tomcat-"$version".tar.gz"
cd /root/ApacheTomcat/files
curl -fk https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.65/bin/apache-tomcat-"$version".tar.gz -o $filename
if [[ -e /root/ApacheTomcat/files/$filename ]]
        then
                echo -e "\nApache Tomcat $version downloaded under $PWD on `hostname -i`"
else
        echo -e "\nProblem occured please check it"
fi

그런 다음 Ansible 컨트롤러에 작은 스크립트를 작성했는데 내용은 다음과 같습니다.

---                                                         
- name: Download Latest version of Apache Tomcat            
  hosts: 172.16.8.50                                        
  tasks:                                                    
    - name: Downloading Apache on Central Repository Server 
      command: sh /root/ApacheTomcat/apachetomcat.sh        
      register: _check_download_apache_status               
    - name:                                                 
      debug:                                                
        var: _check_download_apache_status                  
...                        

        

서버에서 쉘 스크립트를 실행하면 작동하고 파일을 다운로드하지만, ansible 플레이북을 통해 실행하면 "호스트를 확인할 수 없습니다: dlcdn.apache.org; 알 수 없는 오류" 오류가 발생합니다.

ansible-playbook apache-update.yaml -b

PLAY [Download Latest version of Apache Tomcat] *********************************************************************************************************************************************************************************************

TASK [Gathering Facts] **********************************************************************************************************************************************************************************************************************
ok: [172.16.8.50]

TASK [Downloading Apache on Central Repository Server] **************************************************************************************************************************************************************************************
changed: [172.16.8.50]

TASK [debug] ********************************************************************************************************************************************************************************************************************************
ok: [172.16.8.50] => {
    "_check_download_apache_status": {
        "changed": true,
        "cmd": [
            "sh",
            "/root/ApacheTomcat/apachetomcat.sh"
        ],
        "delta": "0:00:00.016762",
        "end": "2022-08-15 11:35:11.229642",
        "failed": false,
        "rc": 0,
        "start": "2022-08-15 11:35:11.212880",
        "stderr": "  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current\n                                 Dload  Upload   Total   Spent    Left  Speed\n\r  0     0    0     0    0     0      0      0 --:--:-- -
-:--:-- --:--:--     0curl: (6) Could not resolve host: dlcdn.apache.org; Unknown error",
        "stderr_lines": [
            "  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current",
            "                                 Dload  Upload   Total   Spent    Left  Speed",
            "",
            "  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0curl: (6) Could not resolve host: dlcdn.apache.org; Unknown error"
        ],
        "stdout": "\nProblem occured please check it",
        "stdout_lines": [
            "",
            "Problem occured please check it"
        ]
    }
}

PLAY RECAP **********************************************************************************************************************************************************************************************************************************
172.16.8.50                : ok=3    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0

답변1

~에 대한

나는 시간이 지남에 따라 성장할 작은 플레이북을 썼습니다.

주어진 의견에 따라 다음과 같은 예로 간단히 시작할 수 있습니다.

---
- hosts: central_repository_server # or your remote hosts
  become: false
  gather_facts: false
  
  vars:
  
    VERSION: "9.0.65"

  tasks:
  
  - name: Download latest version of Apache Tomcat
    get_url:
      url: "https://dlcdn.apache.org/tomcat/tomcat-9/v{{ VERSION }}/bin/apache-tomcat-{{ VERSION }}.tar.gz"
      dest: "/home/{{ ansible_user }}"
    register: result
    environment:
      http_proxy: "localhost:3128"
      https_proxy: "localhost:3128"

이전에는 완전히 기능하고 테스트된 솔루션을 제공하지 않았지만 문제를 해결하기 위한 아이디어와 방법만 제공했으므로 여기에서 실제 예제를 찾으십시오.

---
- hosts: localhost
  become: false
  gather_facts: false

  vars:

    VERSION: "9.0.65"

  tasks:

  - name: Get file using 'uri' module
    uri:
      url: "https://dlcdn.apache.org/tomcat/tomcat-9/v{{ VERSION }}/bin/apache-tomcat-{{ VERSION }}.tar.gz"
      dest: "/home/{{ ansible_user }}"
      method: GET
      status_code: 200,304
      creates: "apache-tomcat-{{ VERSION }}.tar.gz"
    environment:
      http_proxy: "localhost:3128"
      https_proxy: "localhost:3128"

추가 문서

각 모듈 문서를 읽고 특정 속성과 다양한 동작에 익숙해지는 것이 좋습니다.

관련 정보