게시글
고민있어요
2021.05.06 21:27
강사님에게 요청합니다
- 0
- 1
- 734
질문&답변
2021.04.24
docker-compose 이후 스크립트 실행에 에러가 납니다...
강사님 말씀처럼 스크립트를 구분해서 replication 부분부터 순서대로 진행했는데 replication 부분에서 바로 딱 에러가 뜨네요 --- 에러 내용--- ERROR 1794 (HY000) at line 1: Slave is not configured or failed to initialize properly. You must at least set --server-id to enable either a master or a slave. Additional error messages can be found in the MySQL error log. ERROR 1794 (HY000) at line 1: Slave is not configured or failed to initialize properly. You must at least set --server-id to enable either a master or a slave. Additional error messages can be found in the MySQL error log. ERROR 1794 (HY000) at line 1: Slave is not configured or failed to initialize properly. You must at least set --server-id to enable either a master or a slave. Additional error messages can be found in the MySQL error log. ERROR 1794 (HY000) at line 1: Slave is not configured or failed to initialize properly. You must at least set --server-id to enable either a master or a slave. Additional error messages can be found in the MySQL error log. --- 계속된 질문에도 친절한 답변을 해주셔서 너무 감사드립니다
- 0
- 4
- 1.1K
질문&답변
2021.04.23
docker-compose 이후 스크립트 실행에 에러가 납니다...
(사진) 요즘 바빠서 강사님 글을 놓치고 있었네요 docker compose 실행 후에 컨테이너들 정상적으로 실행중이며, 강사님이 알려주신 명령을 입력하니 패스워드 보인다고 경고창 뜨는데... 어떤 결과가 나오는게 정상인건가요? 아직도 해결하지 못하고 있습니다.. 흑흑...
- 0
- 4
- 1.1K
질문&답변
2021.04.18
커스텀 이미지로 컨테이너 생성 시 실행이 안됩니다..
강사님 답변을 받고 수정하여 컨테이너 생성 및 실행에 성공했습니다 prometheus 컨테이너 까지 실행해서 브라우저에서 docker_host_ip:9090/graph 를 입력해서 잘 들어가지는데 Error fetching server time: Detected 332.1619999408722 seconds time difference between your browser and the server. Prometheus relies on accurate time and time drift might cause unexpected query results. 이렇게 에러가 나오네요... 검색에 up을 입력해서 결과를 보면 잘 나오는거 까지 확인이 되는데 위 에러메시지가 브라우저 접속하면 뜨는데 리눅스 서버 시간 설정을 해줘야 하나요? 리눅스와 도커 모두 완전 생 초보라서 어렵기만 하네요.... 강의처럼 결과는 잘 나오고 있긴해서, 그냥 무시해도 되는 에러인지도 모르겠고... 자꾸 귀찮게 하는거 같아 죄송합니다.
- 0
- 3
- 362
질문&답변
2021.01.10
워드프레스와 mysql
와~~~문제해결했습니다...ㅠㅠ centos8에서 방화벽 관련 문제인거 같은데 리눅스를 잘 몰라서 정확한 이유는 모르겠지만 주석에 보니 172로 시작하는 IP는 전부 열어주라는 의미 같은데 네트워크를 두개를 써서 그런거 같습니다. 아래의 명령어를 순서대로 입력하니 되네요... ------------------------------ # open all IPs starts with "172" so that all the containers may communicate each other sudo firewall-cmd --permanent --zone=public --add-rich-rule='rule family=ipv4 source address=172.0.0.0/8 accept' # make our container able to visit the network outside sudo firewall-cmd --permanent --zone=public --add-masquerade # apply the change sudo firewall-cmd --reload ------------------------------ https://stackoverflow.com/questions/40214617/docker-no-route-to-host 이렇게 또 하나 배워가네요... 강사님 빠른 답변 감사합니다^^ 좋은 강의 잘 듣고 있고 이번 강의 다 닫고 쿠버네티스 강의도 수강 예정입니다. 계속 잘 부탁 드릴게요^^
- 1
- 5
- 403
질문&답변
2021.01.10
워드프레스와 mysql
Mysql 생성 [leejongwoo@localhost docker_test]$ docker run -d -p 3306:3306 -e MYSQL_ALLOW_EMPTY_PASSWORD=true --name mysql mysql:5.7 3e8dbda83b988f16331bd1c09f75e13c0d4cc31459503bd170bfd1752d94f09a [leejongwoo@localhost docker_test]$ docker exec -it mysql mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 2 Server version: 5.7.32 MySQL Community Server (GPL) Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> create database wp CHARACTER SET utf8; Query OK, 1 row affected (0.00 sec) mysql> grant all privileges on wp.* to wp@'%' IDENTIFIED by 'wp'; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) mysql> quit Bye ------------------------------------------------------------------------------------------------------------------- wordpress 생성 [leejongwoo@localhost docker_test]$ docker run -d -p 8080:80 -e WORDPRESS_DB_HOST=172.17.0.2:mysql -e WORDPRESS_DB_NAME=wp -e WORDPRESS_DB_USER=wp -e WORDPRESS_DB_PASSWORD=wp --name wp wordpress 056e4c106f40c79565a58f070e7fa189acf169bcbff3d683b813af76ceaf7c8b ------------------------------------------------------------------------------------------------------------------- wordpress 로그 [leejongwoo@localhost docker_test]$ docker logs wp WordPress not found in /var/www/html - copying now... Complete! WordPress has been successfully copied to /var/www/html [09-Jan-2021 15:05:35 UTC] PHP Warning: mysqli::__construct(): (HY000/2002): No route to host in Standard input code on line 22 MySQL Connection Error: (2002) No route to host MySQL Connection Error: (2002) No route to host MySQL Connection Error: (2002) No route to host MySQL Connection Error: (2002) No route to host MySQL Connection Error: (2002) No route to host MySQL Connection Error: (2002) No route to host MySQL Connection Error: (2002) No route to host 어디에서 잘못되었는지 모르겠네요.위의 명령어 말고도 강의에서 나온 docker-compose up 명령어를 해도 같은 에러가 나옵니다...ㅜㅜ
- 1
- 5
- 403
질문&답변
2020.12.13
다음 스프링 웹 mvc강의 출시 날짜가 궁굼합니다 ㅠㅠ
안녕하세요. 김영한님 JPA 강의 이후 계속 영한님 강의만 찾고있는 윌던입니다^^ 현재는 JPA 좀 쉬면서 스프링 핵심원리를 듣고 있습니다. 웹 MVC 기다리다가 언제쯤 나오나 찾아보니 이런 글을 보게 되었네요. HTTP 강의라니... 생각지도 못한 진주를 발견한 기분입니다ㅜㅜ 현재 실무에서 일하고 있어도 항상 기본기가 부족해서, 실력 향상이 느린거 같아서 고수에서 한 번쯤 배우고 싶은 주제였는데... 감사합니다. 나오면 바로 신청할게요 너무너무 기대됩니다.
- 1
- 5
- 222
질문&답변
2020.10.06
window 10 home toolbox에서 실행이 안되네요..
해결하셨다니 기쁘네요^^ 꼭 그런지는 모르겠지만 폴더 경로하고 폴더 이름을 일치 시켜야 되더라구요... 제가 그 부분을 좀더 적었으면 FEN님 고생 덜하셨을 건데...아무튼 고생 하셨습니다
- 0
- 5
- 325
질문&답변
2020.10.03
package.json 파일을 찾을수 없다고 자꾸 나오는데...
[자문자답] docker toolbox를 썻을 경우 볼륨 마운트를 확장해주어서 문제를 해결하였고, (참조)https://stackoverflow.com/questions/33126271/how-to-use-volume-option-with-docker-toolbox-on-windows 동시에 리액트 핫 로딩 문제가 발생하였는데 이부분은 (참조)https://www.inflearn.com/questions/65535 위 주소의 답변에서 도움을 받아 해결하였습니다. 강사님 좋은 강의 만들어 주셔서 감사드립니다.
- 0
- 3
- 509
질문&답변
2020.10.03
소스를 바꿔도 반영이 되지 않습니다.
안녕하세요. 같은 강의를 수강하면서 리액트 핫 로딩 부분에 대해서 도움을 받아서 감사 인사 드리러 왔습니다. 안근창님 감사드립니다^^
- 8
- 20
- 5.4K