본문 바로가기

etc

(9)
[DevSecOps 파이프라인] Jenkins 설치 (GCP instance 위에) GCP instance 구성 Seoul region Centos7 $ sudo su - $ yum install wget Jenkins 설치 $ wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo $ rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key $ rpm --import https://pkg.jenkins.io/redhat/jenkins.io.key** $ yum install jenkins $ vi /etc/sysconfig/jenkins .... JENKINS_PORT=”9090” .... $ firewall-cmd --per..
[Error solved] Not allowed to load local resource: kakao map api 환경 macOS Catalina safari 13.1.2 에러 내용 kakao map을 불러오지 못하는 경우 safari 개발자 도구 사용 Not allowed to load local resource: file://dapi.kakao.com/v2/maps/sdk.js?appkey= 에러 해결 카카오 맵 api를 불러오는 src url이 문제가 되는 것이었다. 왜냐하면 위의 url은 내 로컬 파일의 경로가 아닌 카카오의 url이기 때문이다. http:// 로 시작하는 absolute path로 바꿔주면 된다. 끝!
[error solved][Docker ELK Stack] Kibana server is not ready yet 에러 발생 환경Windows 10 HOMEDocker Toolbox docker-compose up -d 명령으로 docker-elk 실행그리고docker-compose down 명령으로 실행을 중지하고 컨테이너까지 삭제그리고 모두 재실행하였다.그런데http://192.168.99.100:5601/로 kibana에 접속하려 했는데 문제가 일어났다.=> Kibana server is not ready yet 에러 로그$ docker logs ...{"type":"log","@timestamp":"2020-06-15T04:50:29Z","tags":["warning","savedobjects-service"],"pid":6,"message":"Unable to connect to Elasticsearch. ..
[Elasticsearch] Docker로 Elasticsearch 사용하기 / Python Elasticsearch Client로 테스트해보기 Elasticsearch란? 분산형 RESTful 실시간 검색 및 분석 엔진 보통 ELK Stack이라 해서 Elasticsearch, Logstash(수집 파이프라인), Kibana(시각화 도구)을 함께 사용한다.[참고] Elasticsearch는 documents라고 하는 기본 데이터 단위가 있고, 이것이 index별로 관리되는 형태를 가진다. (간단히 말하면. 더 자세히 알아봐야겠지만..) 실습 환경 Windows 10 Home Docker Toolbox Docker 이미지 pull & run $ docker pull docker.elastic.co/elasticsearch/elasticsearch:7.7.1 $ docker run -d --name elasticsearch-test -p 9200:..
[HTTP] HTTP Server 빌드하기 / 파이썬 사용 해당 포스트는 Let's Build A Web Server. Part 1. - by.Ruslan 을 읽고 정리한 글입니다. I believe to become a better developer you MUST get a better understanding of the underlying software systems you use on a daily basis and that includes programming languages, compilers and interpreters, databases and operating systems, web servers and web frameworks. And, to get a better and deeper understanding of those syste..
[Docker] 도커 간단 실습하기 2. 도커 이미지 생성하기 / ubuntu 14.04 기반 nginx 서버 도커 이미지 [Docker] 도커 간단 실습하기 1. 도커 사용하기: 기본 명령어 정리 / Windows 10 Home / Docker Compose[Docker] 도커 간단 실습하기 1. 도커 사용하기: 기본 명령어 정리 / Windows 10 Home / Docker ComposeDocker 설치 Windows 10 Home을 사용하고 있으므로, Docker compose를 설치해야 한다. https://docs.docker.com/compose/install/ Install Docker Compose You can run Compose on macOS, Windows, and 64-bit Lin..jisun-rea.tistory.com도커 이미지 생성하기Dockerfile 작성하기Dockerfile이란 도커 이..
[Docker] 도커 간단 실습하기 1. 도커 사용하기: 기본 명령어 정리 / Windows 10 Home / Docker Compose Docker 설치 Windows 10 Home을 사용하고 있으므로, Docker Toolbox를 설치해야 한다. https://docs.docker.com/toolbox/toolbox_install_windows/ Install Docker Toolbox on Windows Docker Toolbox provides a way to use Docker on Windows systems that do not meet minimal system requirements for the Docker Desktop for Windows app. What you get and how... docs.docker.com 해당 포스트는 도커 무작정 따라하기: 도커가 처음인 사람도 60분이면 웹 서버를 올릴 수 있습니다! ..
[GraphQL+NodeJS] GraphQL으로 영화API만들기_백엔드 해당 포스트는 노마드코더 - GraphQL으로 영화API만들기_백엔드편 인프런 강의를 듣고 정리한 글입니다. 실습 저장소 https://github.com/JisunParkRea/movieql JisunParkRea/movieql Movie API with Graphql. Contribute to JisunParkRea/movieql development by creating an account on GitHub. github.com GraphQL이 해결할 수 있는 REST의 문제 - Over-fetching : 요청한 정보보다 더 많은 것을 받게 되는 것 예) username이 필요하여 /users/ GET 요청을 하면, 그 외 email, age, 등등의 정보까지 받게 되는 것 - Under-fetc..