분류 전체보기213 WSL / 설치 C:\Windows\system32>wsl --set-version Ubuntu-20.04 2 제공된 이름의 배포가 없습니다. Error code: Wsl/Service/WSL_E_DISTRO_NOT_FOUND C:\Windows\system32>dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart 배포 이미지 서비스 및 관리 도구 버전: 10.0.19041.3636 이미지 버전: 10.0.19045.4123 기능을 사용하도록 설정하는 중 [==========================100.0%==========================] 작업을 완료했습니다. C:\Windows\.. 2024. 3. 4. code-server / 설치 및 설정 ## 설치 curl -fsSL https://code-server.dev/install.sh | sh ## 초기화 sudo systemctl enable --now code-server@$USER ## 패스워드 disable sed -i.bak 's/auth: password/auth: none/' ~/.config/code-server/config.yaml ## port 변경(8080 --> 12734 ) sed -i.bak 's/bind-addr: 127.0.0.1:8080/bind-addr: 0.0.0.0:12734/' ~/.config/code-server/config.yaml ##설정파일위치 cat ~/.config/code-server/config.yaml user@PC:~$ cat ~/.co.. 2024. 3. 2. docker / oracle 11g docker-compose yaml version: '3.7' services: oracle11g: image: oraclelinux:6 container_name: oracle11g volumes: - ./oracle-xe-11.2.0-1.0.x86_64.rpm.zip:/tmp/oracle-xe-11.2.0-1.0.x86_64.rpm.zip - ./init.sql:/tmp/init.sql - ./install.sh:/tmp/install.sh ports: - "1521:1521" environment: - ORACLE_ALLOW_REMOTE=true - ORACLE_PASSWORD=password command: /bin/bash -c "chmod 755 /tmp/install.sh && /tmp/install.sh && su - ora.. 2024. 2. 29. docker / MySql 8 / 설치 mysql 8 docker-compose yaml version: '3.7' services: mysql: image: mysql:8 container_name: mysql8 ports: - "3306:3306" environment: MYSQL_ROOT_PASSWORD: rootpassword 위의 Docker Compose 파일에서는 MySQL 8를 위한 단일 서비스를 정의합니다. 이 서비스는 다음과 같은 구성을 가지고 있습니다: image: Docker 이미지로 MySQL 8을 사용합니다. container_name: 컨테이너의 이름을 정의합니다. ports: 호스트와 컨테이너 간의 포트 포워딩을 설정합니다. MySQL의 포트 3306을 호스트의 3306 포트로 연결합니다. environment: .. 2024. 2. 29. 이전 1 2 3 4 5 6 ··· 54 다음 반응형