본문 바로가기

인프라15

[Mac/VMWare] Mac M1 VMWare Fusion 설치, CentOS 9 설치, Mariadb 설치 1. VMware Fusion 설치 후 가상머신 안에 CentOS을 설치합니다. 2. CentOS에 MariaDB 설치합니다. 3. 본인의 로컬PC에서 가상머신에 설치 된 MariaDB와 연결합니다. VMware Fusion 설치 https://www.vmware.com/ Introducing VMware Cross-Cloud Services Discover how VMware Cross-Cloud services give organizations freedom and control without trade-offs. www.vmware.com VMware Fusion 을 설치하기 위해서는 회원가입이 필요합니다. 회원가입 후 Products > Fusion for Mac > Use for Free wit.. 2024. 3. 10.
[모니터링] Docker + Prometheus + Grafana에 설치하기 Docker + docker-compose 설치 docker 설치 및 docker-compose 설치는 이미 설치했다고 가정한다. 만약 설치하지 않았다면 다음 url에서 설치 할 수 있다. https://jung-mmmmin.tistory.com/124 [Docker] Docker 부터 docker compose 설치 실행환경 cat /etc/*-release | uniq DISTRIB_ID=Ubuntu DISTRIB_RELEASE=22.04 Docker 설치 sudo apt-get update 필요한 패키지 설치 sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common Docker.. 2024. 1. 30.
nginx.conf 설정 NGINX 모듈 기본 구조 Nginx는 크게 핵심 모듈(Core Module), 이벤트 모듈(Event Module), 구성 모듈(Configuration Module), HTTP 모듈로 구성되어있다. nginx.conf 파일에는 접속자수, 동작 프로세스수등 퍼포먼스에 기본적인 설정 항목을 담고 있다. 핵심모듈(Core Module) : Nginx의 프로세스 관리, 보안, 필수 기능 등등 설정하는 부분이다. 이벤트 모듈(Event Module) : Nginx가 네트워크 동작방법에 설정하는 부분이다. 구성 모듈(Configuration Module) : Nginx에서 구조 include를 통해 외부 파일을 포함시키는 부분이다. HTTP 모듈 : Nginx에서 웹사이트를 설정하는 부분이다. Nginx 프로세.. 2024. 1. 9.
[Docker] Postgresql 도커에 설치 및 접속 docker로 postgresql 을 설치하는 방법에 대해 알아본다. 이미 도커가 설치되어있다고 가정하고 시작한다. 만약 도커가 설치되어있지 않다면 다음 게시물을 참조바란다. https://jung-mmmmin.tistory.com/124 [Docker] Docker 부터 docker compose 설치 실행환경 cat /etc/*-release | uniq DISTRIB_ID=Ubuntu DISTRIB_RELEASE=22.04 Docker 설치 sudo apt-get update 필요한 패키지 설치 sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common Docker의 공 jung.. 2024. 1. 8.