본문 바로가기
728x90
반응형
SMALL

서버66

오픈스택 클라우드 서버 구축(Stein)(3)-인증 서비스(Keystone) 설치 및 설정 #Controller Node 설정 1) Add a User and Database on MariaDB for Keystone. 더보기 [root@Controller ~]# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 9 Server version: 10.3.10-MariaDB MariaDB Server Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current.. 2023. 2. 2.
오픈스택 클라우드 서버 구축(Stein)(2)-오픈스택 기본 패키지 설정 #Controller Node 설정 1) Add the repository of Openstack Stein. 더보기 [root@Controller ~]# yum -y install centos-release-openstack-stein [root@Controller ~]# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/CentOS-OpenStack-stein.repo 2) Install MariaDB server. 더보기 [root@Controller ~]# yum --enablerepo=centos-openstack-stein -y install mariadb-server [root@Controller ~]# vi /etc/my.cnf [mysqld] .. 2023. 2. 2.
오픈스택 클라우드 서버 구축(Stein)(1)-공통 기본 설정 #Controller, Network, Compute Node 설정 1. Install Chrony and Configure NTP server 1) Install Chrony 더보기 [root@Controller]# yum -y install chrony [root@Controller]# vi /etc/chrony.conf #server 0.centos.pool.ntp.org iburst #server 1.centos.pool.ntp.org iburst #server 2.centos.pool.ntp.org iburst #server 3.centos.pool.ntp.org iburst server time.bora.net iburst allow 10.0.0.0/24 [root@Controller]# sy.. 2023. 2. 2.
Docker 명령어 정리 docker images 도커 이미지 검색 docker image rm 도커 단일 이미지 삭제 docker rmi $(docker images -q) -f 도커 모든 이미지 삭제 docker run --name -i : 사용자가 입출력을 할 수 있는 상태 -t : 가상 터미널 환경을 에뮬레이션하겠다는 말 -d : 컨테이너를 일반 프로세스가 아닌 데몬프로세스(백그라운드) 형태로 실행해 프로세스가 끝나도 유지되도록 한다. 도커 컨테이너 생성과 동시에 실행 docker create --name 도커 컨테이너 생성 docker exec -it /bin/bash 도커 컨테이너 접속 docker start docker stop 도커 컨테이너 실행 및 종료 2023. 2. 2.
728x90
반응형
SMALL