본문 바로가기

프로그램 활용171

도커 docker_get D-Bus connection: Operation not permitted 출처: [docker] Failed to get D-Bus connection 에러 해결 — Jen's Space (tistory.com) 이미지 centos:7를 사용하려고 했더니 systemctl을 사용할 수가 없다 ;; ubuntu에서는 잘 됐던거 같은데 centos은 안되는게 왜케 많은지 모르겠다 [user01@master ~]$ docker run -it centos:7 bash [root@9fa1db10b89c /]# systemctl Failed to get D-Bus connection: Operation not permitted 1. 컨테이너 해결방법 --privileged 옵션과 -d 옵션으로 /sbin/init을 실행한후 exec로 /bin/bash를 실행시켜야 한다 $ docker .. 2023. 8. 1.
Docker를 사용하여 MySQL 설치하고 접속하기 출처: Docker를 사용하여 MySQL 설치하고 접속하기 | PoiemaWeb 1. Docker 설치 Docker 홈페이지에 접속하여 자신의 OS에 맞는 Docker를 내려 받아 설치한다. 설치가 완료되면 다음 명령어를 실행하여 버전을 출력해 보자. $ docker -v Docker version 19.03.13, build 4484c46d9d #2. MySQL Docker 이미지 다운로드 다음 명령어로 MySQL Docker 이미지를 다운로드한다. 태그에 버전을 지정하지 않으면 최신 버전을 다운로드한다. $ docker pull mysql Using default tag: latest latest: Pulling from library/mysql bb79b6b2107f: Pull complete 49.. 2023. 8. 1.
Docker + Apache + Oracle 14c + Oracle 19c Docker + Apache + Oracle 14c + Oracle 19c 출처: Docker + Apache + Oracle 14c + Oracle 19c (linkedin.com) Ravi Verma Ravi Vermacnfcj: Published Jan 25, 2021 + Follow Most of the Oracle 14c scripts are Oracle's files on GitHub. I have enhanced them for my purposes. This article has an ambitious goal: Set up 3-tier database application entirely in Docker. I have saved all the scripts at GitHub and th.. 2023. 7. 28.
Ubuntu 22.04에서 Docker로 Drupal을 설치하는 방법 출처: Ubuntu 22.04에서 Docker로 Drupal을 설치하는 방법 (linux-console.net) 이 페이지에서 전제 조건 1단계 - 방화벽 구성\n 2단계 - Docker 및 Docker Compose 설치 3단계 - Drupal용 Docker Compose 파일 만들기 MySQL 도커 서비스 드루팔 서비스 Nginx 서비스 Certbot 서비스 Drupal은 PHP로 작성된 오픈 소스 콘텐츠 관리 시스템(CMS)입니다. 전 세계의 많은 조직에서 이를 사용하여 블로그, 정부 사이트, 기업 웹사이트 등을 만듭니다. 기능을 확장할 수 있는 기능 및 모듈 세트가 함께 제공되어 원하는 웹 사이트를 만들 수 있습니다.전제 조건 A server running Ubuntu 22.04 with a mi.. 2023. 7. 28.
Drupal - 도커 설치 출처: 튜토리얼 드루팔 - 도커 설치 [ 단계별 단계 ] (techexpert.tips) 우분투 리눅스에 도커를 사용하여 Drupal을 설치하는 방법을 배우고 싶습니까? 이 자습서에서는 우분투 리눅스를 실행하는 컴퓨터에서 Docker를 사용하여 Drupal 설치를 수행하는 데 필요한 모든 단계를 5 분 이내에 표시 할 것입니다. • Ubuntu 20.04 • Ubuntu 18.04 • Ubuntu 19.04 • 드루킹 9.0.6 • 마이SQL 5.7 튜토리얼 드루팔 - 도커 설치 Docker 서비스를 설치합니다. apt-get update apt-get install docker.io 온라인 리포지토리에서 MySQL Docker 이미지를 다운로드합니다. docker pull mysql:5.7 온라인 리포.. 2023. 7. 28.