일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 한글가이드
- bash
- GitLab
- Elasticsearch
- elastic stack
- hardening
- freebsd
- miniconda
- Kibana
- Windows
- docker
- pfsense
- endpoint security
- Kibana server is not ready yet
- xe guest utilities
- ansible
- proxycfg
- G-suite
- macos
- application security
- ELASTIC
- ssh key 배포
- x-pack
- XCP-ng
- centos 8
- Proxy
- 로그인불가
- 보안양파
- PlayBook
- Today
- Total
목록IT/Cloud & DevOps (43)
선 밖에 선 자유인
Ansible WinRM 모듈 이용 시 아래와 같은 에러가 날 때 192.168.0.100 | UNREACHABLE! => { "changed": false, "msg": "basic: the specified credentials were rejected by the server", "unreachable": true } 1. Powershell 원격 관리 활성화 ps1> Enable-PSRemoting -Force ps1> Set-Item wsman:\localhost\Client\TrustedHosts -value 2. 대상 윈도 장비의 NIC 연결 속성을 "공용" 에서 "개인" 혹은 "도메인"으로 변경 ps1> Set-NetConnectionProfile -NetworkCategory Privat..
http://yallalabs.com/devops/how-to-install-ansible-awx-without-docker-centos-7-rhel-7/
https://developer.cisco.com/learning/labs/tags/Ansible
- name: Change Password hosts: all user: superman become: yes ignore_errors: yes tasks: - name: Change Password user: name= update_password=always password=
GitLab CI/CD Tutorial https://youtu.be/34u4wbeEYEo Gitlab CI pipeline tutorial for beginners https://youtu.be/Jav4vbUrqII
docker-elk 최신 버전을 설치하다 보면 아래와 같이 오류가 나는 경우가 있음 $ git clone https://github.com/deviantony/docker-elk.git $ cd docker-elk $ sudo docker-compose up -d ERROR: Service 'elasticsearch' failed to build: Please provide a source image with `from` prior to commit Docker 버전 문제로 예상되며 아래의 경로에서 OS별로 최신 docker-ce로 설치 https://hub.docker.com/search/?type=edition&offering=community CentOS의 경우 기존 docker 제거 후 아래와 같..
OS_FAMILY = dict( RedHat = 'RedHat', Fedora = 'RedHat', CentOS = 'RedHat', Scientific = 'RedHat', SLC = 'RedHat', Ascendos = 'RedHat', CloudLinux = 'RedHat', PSBM = 'RedHat', OracleLinux = 'RedHat', OVS = 'RedHat', OEL = 'RedHat', Amazon = 'RedHat', XenServer = 'RedHat', Ubuntu = 'Debian', Debian = 'Debian', SLES = 'Suse', SLED = 'Suse', OpenSuSE = 'Suse', SuSE = 'Suse', Gentoo = 'Gentoo', Archl..
- Vagrantfile -------------------------------------- #-*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure(2) do |config| config.vm.provision "shell", inline: "echo X2" config.ssh.insert_key = false config.vm.define "lab1" do |cfg| cfg.vm.box = "bento/centos-8" cfg.vm.hostname = "lab1" cfg.vm.network "private_network", ip:"192.168.56.101" cfg.vm.synced_folder "/Users/user/vagrant", "/vagrant..