본문 바로가기

인프라171

[Ubuntu] ubuntu20.04 httpd apache 설치 centos의 경우 yum install httpd를 설치하면 되었는데 우분투는 apache2를 설치해야한다고 한다. 그냥 설치시도를 하면 다음과 같은 출력이 나오고 설치가 제대로 되지않는다. 그러므로 인스톨 전에 apt-get update를 해줘야한다. 설치방법 sudo apt-get update sudo apt-get install apache2 systemctl start apache2 systemctl statu apache2 netstat -nltp 설치화면은 아래와 같다. 서비스 구동을 한다. 서비스포트 80 오픈된 것을 확인한다. 우분투 httpd 설치 우분투 아파치 설치 ubuntu apahce 설치 ubuntu httpd 설치 2022. 7. 17.
[Ansible] Windows 계정 생성 playbook 앤서블을 이용하여 윈도우 계정생성 및 패스워드를 업데이트 하기 위한 ansible 플레이북은 다음과 같다. 기존에 존재하는 계정이면 패스워드 또는 그룹등이 업데이트 된다. 패스워드 옵션 중 update_password 이 있는데, on_create는 계정생성중 한번만 수정이 가능한 것이고 always는 기존계정에서 업데이트가 가능한 옵션이다. 그러므로 앵간하면 update_password: always로 설정하기 바란다. --- - name: windows user add hosts: all vars: ansible_connection: winrm ansible_winrm_server_cert_validation: ignore ansible_winrm_scheme: http ansible_become: .. 2022. 7. 15.
[Windows Server] can not get-localuser 파워쉘에서 존재하는 계정 조회를 위해 get-localuser를 입력해보았지만 찾을수 없는 명령어라고 나온다. 구글에 검색해보니 애석하게도 windows 2016 이상부터 지원하는 명령인 듯하다. cmd창에서 net user를 사용하는 것으로 대체 해야한다. https://stackoverflow.com/questions/43989815/cant-find-microsoft-powershell-localaccounts-module-or-run-get-localuser Can't find Microsoft.Powershell.LocalAccounts module (or run Get-LocalUser) When running a script, I have a line to verify that a "serv.. 2022. 7. 14.
[Ansible] ansible 명령어로 패스워드 없이 수행하기 스크립트로 ansible 명령을 수행할 경우가 있는데 패스워드 프롬프트를 띄우지 않고 자동으로 수행하고 싶을땐 아래와 같이 수행한다. 패스워드의 특수문자를 인식시키지 않도록 싱글쿼테이션 처리를 해줘야한다. # windows yml 수행시 ansible-playbook exam.yml -e 'ansible_user=admin ansible_password=admin123' # linux yml 수행시 ansible-playbook exam.yml -e 'ansible_user=admin ansible_ssh_pass=admin123 ansible_become_pass=admin123' 2022. 7. 14.
[Linux] iptables는 최대 몇 라인까지 적용? iptables는 최대 몇 라인까지 적용가능한가? 32비트 기준 2만 5천개이상 2022. 7. 12.
반응형