분류 전체보기222 ansible "msg": "Missing sudo password" ansible 명령어 수행시 "msg": "Missing sudo password" 에러가 발생한다. PLAY [linux] ************************************************************************************************************************************************************************** TASK [Gathering Facts] **************************************************************************************************************************************.. 2022. 5. 16. 리눅스 linux playbook 예제 /etc/passwd 조회 후 특정 계정 출력 --- - hosts: linux tasks: - name: get value shell: cmd: cat /etc/passwd | grep magnus register: grep_output ignore_errors: yes changed_when: false - name: Print debug: msg: "{{ inventory_hostname }}: '{{ grep_output.stdout }}'" 2022. 5. 16. ansible command "python setup.py egg_info" failed with error code 1 문제점 pip3 install pywinrm 명령어 수행시 아래와 같은 에러코드가 출력됨 command "python setup.py egg_info" failed with error code 1 해결방안 아래 명령어 수행 sudo -H pip3 install --upgrade --ignore-installed pip setuptools 2022. 5. 12. ansible sing a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this 문제점 리눅스 console에서는 정상 출력되나 jenkins를 통한 ansible 명령 수행시 아래와 같은 에러가 나온다. Using a SSH password instead of a key is not possible because Host Key checking is enabled and sshpass does not support this. Please add this host's fingerprint to your known_hosts file to manage this host. Running as SYSTEM Building in workspace /var/lib/jenkins/workspace/linux_ping [linux_ping] $ sshpass ******** /usr/bin/an.. 2022. 5. 9. 텔레그램 봇(telelgram bot) 채팅방 만들기 텔레그램 1:1채팅용 봇 만들기 검색창에 botfather 검색후 채팅시작 > 만들 봇의 이름을 넣는다. 그런 다음 생성하려는 봇의 ID를 만든다. 생성이 되면 다음과같이 아래와 같은 형태로 API키를 할당해준다. 531234568778:AAG8KCwoYbIxBxxxxxxxxxxx6mqk 잘만들어졌는지 확인하려면 브라우저에 아래 값을 넣어보고 결과가 나오는지 확인해본다. https://api.telegram.org/bot[할당받은토큰값]//getUpdates 블라우저 url창에 아래와 같이 입력 https://api.telegram.org/bot12345867:asdfasdfeereYadsfasdfeerere/getUpdates 결과 [ok":true,"result":{}] 텔레그램 검색창에 자신이 만든.. 2022. 5. 6. 이전 1 ··· 31 32 33 34 35 36 37 ··· 45 다음 반응형