인프라171 [Ansible] windows 파일배포 & 압축 해제 윈도우 시스템에 zip파일을 배포 후 압축 해제 함 --- - hosts: all vars: ansible_port: 5985 ansible_connection: winrm ansible_winrm_server_cert_validation: ignore ansible_winrm_scheme: http ansible_winrm_transport: basic tasks: - name: deploy disk mount file win_copy: src: '/data/ansible/file/Disk_Part.ps1' dest: 'c:\Disk_Part.ps1' - name: run powershell win_shell: 'powershell.exe -ExecutionPolicy Bypass -File c:\Di.. 2022. 7. 27. [Windows Server]The password does not meet the password policy requirements. Check the minimum password length, password complexity and password history requirements 패스워드가 윈도우 서버에 설정된 패스워드 정책에 대해 만족하지 못해서 발생되는 에러임 확인방법 실행 > secpol.msc > Account policy > password policy에서 계정 패스워드에 대한 정책을 확인할 수 있다. 윈도우 패스워드 정책 windows password 정책 로컬보안정책 secpol.msc 2022. 7. 26. [Ansible] ansible apt update playbook ansible로 우분투 패키지 설치전 apt update를 수행하고 싶을때 아래와 같이 수행한다. --- - name: install amsclient hosts: all become: yes vars: ansible_become_password: "{{ sudopasswd }}" tasks: - name: apt install ipa-client apt: update_cache: yes force_apt_get: yes cache_valid_time: 3600 앤서블 우분투 apt 업데이트 앤서블 ubuntu apt udpate ansible ubuntu apt udpate 2022. 7. 20. [Ansible] windows powershell 파일 실행하기 anisble에서 간단한 파워쉘 명령어 실행의 경우 win_shell: "powershell 파워쉘명령어" 로 수행하곤 했다. 하지만 코드가 많은 파워 쉘파일(ps.1)의 경우는? 파워쉘파일은 파일의 절대경로를 써서는 실행이 안되다.(bat파일은 실행 가능) win_command: "powershell.exe -ExecutionPolicy Bypass -File c:\Disk_Part.ps1" 또는 win_shell: "powershell.exe -ExecutionPolicy Bypass -File c:\Disk_Part.ps1" 둘다 테스트 해본 결과 정상적으로 수행 되었고 아래코드는 Disk_part.ps1이라는 파워쉘을 노드에 배포한 뒤 실행을 하는 playbook이다. --- - hosts: al.. 2022. 7. 19. [GCP] GCP static route 경로설정 요구사항 - node01은 외부아이피가 없다. - node01은 node02를 통해서 11.11.11.11에 접근해야 함 온프레미스 환경이면 node01에 route add -net 11.11.11.11 netmask 255.255.255.255 gw 192.168.0.1 dev eth0 명령을 통해 static route 설정을 하면 되지만 GCP의 경우 SIOCADDRT: Network is unreachable 에러를 발생한다. 처리방법 - node02는 11.11.11.11과 통신이 된다는 가정(방화벽 세팅은 생략한다.) node02는 인스턴스 생성시 IP전달옵션을 활성화 해야한다.(만들고나서 옵션 활성화가 안됨..만들때 해야한다..) node01 인스턴스 수정 > 네트워크 태그만들기 VPC 네트.. 2022. 7. 18. 이전 1 ··· 15 16 17 18 19 20 21 ··· 35 다음 반응형