일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 한글가이드
- x-pack
- G-suite
- centos 8
- ssh key 배포
- GitLab
- freebsd
- Windows
- 보안양파
- Proxy
- miniconda
- proxycfg
- bash
- ELASTIC
- Elasticsearch
- docker
- PlayBook
- Kibana
- elastic stack
- pfsense
- macos
- ansible
- xe guest utilities
- application security
- 로그인불가
- Kibana server is not ready yet
- hardening
- endpoint security
- XCP-ng
- Today
- Total
목록IT (650)
선 밖에 선 자유인
https://www.boannews.com/media/view.asp?idx=70077
https://hub.docker.com/r/izone/hadoop/
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..
https://lovemewithoutall.github.io/it/deploy-example-by-gitlab-ci/ Gitlab-CI 구성 & .gitlab-ci.yml 예제 CI/CD 도입Gitlab을 설치하는 방법은 전에 다뤘다. 이번에는 CI/CD 도구를 도입했다. 예전에 일했던 프로젝트에서는 주로 jenkins를 사용했는데, 이번에는 Gitlab-CI를 써보기로 했다. Git 초심자가 대부분인 우리 프로젝트 특성상, Gitlab과 연계가 긴밀한 Gitlab-CI를 선택하는 편이 Git 보급에 유리할 듯 싶었다. Gitlab-CI과 jenkins의 비교는 하기 링크를 참조했다. 물론 애시당초 jenkins와 Gitlab- lovemewithoutall.github.io https://allrou..