전체 글 1447

Docker for Linux 일반계정 사용

Post-installation steps for Linux Control and configure Docker with systemd일반계정으로 docker 사용 Docker Daemon Unix Socket 대신 TCP port를 사용(Binds)한다. 기본적으로 Unix Socket은 Root만 사용할 수 있도 일반 사용자는 Sudo를 이용해서 사용(Access)할 수 있다. Docker Daemon은 항상 Root로 실행된다. Sudo를 사용하지 않고 Docker를 하려면 docker Unix 그룹을 생성 후 그룹에 사용자를 추가하면 된다. # docker 그룹 생성 sudo groupadd docker # 사용자 추가 sudo usermod -aG docker $USER # 로그아웃 후 다시 로..

virtual/Docker 2017.08.01

Docker for CentOS7

Get Docker CE for CentOS Index of /linux/centos/7/x86_64/stable/Packages/ CentOS Docker OS requirements Docker CE를 설치하려면 CentOS 7의 64 비트 버전이 필요합니다. 저장소 설치 # 필수 유틸리티 설치, yum-utils는 yum-config-manager, device-mapper-persistent-data 및 lvm2는 devicemapper 저장 장치 드라이버에 필요. sudo yum install -y yum-utils device-mapper-persistent-data lvm2 # 저장소 설정 sudo yum-config-manager \ --add-repo \ https://download.d..

virtual/Docker 2017.07.31

Docker for Ubuntu

Get Docker CE for Ubuntu 우분투 확연 Docker APT 저장소 sudo apt-get update sudo apt-get install docker.io source /etc/bash_completion.d/docker sudo docker version Docker 관리 저장소 shell 명령어 다운로드 설치 curl -sSL https://get.docker.com/ | sudo sh Docker 업그레이드 sudo apt-get update && sudo apt-get upgrade Docker 사용 유저권한 부여 sudo gpasswd -a {username} docker # logout after new login docker ps Docker CE Remove Old Do..

virtual/Docker 2017.07.29

HAProxy SSL Bridging

SSL offloading impact on web applications In some cases, the application is not compatible at all with SSL offloading (even with the tricks above) and we must use a ciphered connection to the server but we still may require to perform cookie based persistence, content switching, etc… 어떤 경우에는 애플리케이션이 SSL 오프로드 (위의 트릭을 포함하여)와 전혀 호환되지 않으며 서버에 대한 암호화 된 연결을 사용해야하지만 쿠키 기반의 지속성, 컨텐츠 스위칭 등을 수행해야 할 수도 있습니..

server-side/haproxy 2017.07.18
반응형