728x90
반응형
SMALL
- 3. HaProxy를 이용한 웹 서버 이중화2023-02-14 16:36:432023.02.14 - [서버 관리] - XX. 웹 서버와 웹 애플리케이션과 DB 서버 연동 XX. 웹 서버와 웹 어플리케이션과 DB 서버 연동 아파치 서버 설정 웹 서버 설치 yum -y install httpd 방화벽 해제 systemctl stop firewalld systemctl disable firewalld setenforce 0 관련 패키지 및 모듈 설치 yum install httpd httpd-devel gcc gcc-c++ wget https://dlcdn.apache.org/tom gaksu.tistory.com 이이서진행 Haproxy 설정 방화벽 끄기 systemctl stop firewalld systemctl disable firewalld setenforce 0 설치 yum..
- 2. 웹 애플리케이션 서버 여러 대 사용2023-02-14 16:35:462023.02.14 - [서버 관리] - XX. 웹 서버와 웹 애플리케이션과 DB 서버 연동 XX. 웹 서버와 웹 어플리케이션과 DB 서버 연동 아파치 서버 설정 웹 서버 설치 yum -y install httpd 방화벽 해제 systemctl stop firewalld systemctl disable firewalld setenforce 0 관련 패키지 및 모듈 설치 yum install httpd httpd-devel gcc gcc-c++ wget https://dlcdn.apache.org/tom gaksu.tistory.com 이어서 진행 아파치 설정 워커 파일 설정 변경 vi /etc/httpd/conf/httpd.conf 파일에서 저 부분을 worker1에서 loadbalance로 변경 Loa..
- 1. 웹 서버와 웹 애플리케이션과 DB 서버 연동2023-02-14 16:35:21아파치 서버 설정 웹 서버 설치 yum -y install httpd 방화벽 해제 systemctl stop firewalld systemctl disable firewalld setenforce 0 관련 패키지 및 모듈 설치 yum install httpd httpd-devel gcc gcc-c++ wget https://dlcdn.apache.org/tomcat/tomcat-connectors/jk/tomcat-connectors-1.2.48-src.tar.gz 모듈 설치 tar zxvf tomcat-connectors-1.2.48-src.tar.gz cd tomcat-connectors-1.2.48-src/native/ ./configure --with-apxs=/usr/bin/apxs yum in..
- 13. db 이중화22023-02-13 17:39:58Active(읽기, 쓰기) - Active(읽기, 쓰기) 구조 vi /etc/haproxy/haproxy.cfg 마지막 줄에 추가 listen stats# haproxy 모니터링 페이지 설정 bind :9000# 웹브라우저를 이용해서 9000포트로 접속하면 stats enable# haproxy 모니터링 페이지로 접속 됨 stats realm Haproxy\ Statistics# http://[서버IP]:9000/haproxy_stats stats uri /haproxy_stats listen mysql-cluster bind :3306 mode tcp balance roundrobin option mysql-check user [mysql의 사용자 이름 이 예제에선 remote] # mysql에 헬스체..
- 12. db 이중화12023-02-13 17:37:43DB 이중화 네트워크설정 방화벽 설정 setenforce 0//로컬 방화벽 끄기 systemctl stop firewalld//방화벽 끄기 MYSQL 설치 yum install mysql-server systemctl restart mysqld MYSQL root 패스워드 설정 mysql_secure_installation y 0 Dkagh1234! Dkagh1234! y y y y y Master 설정 (MySQL1) /etc/my.cnf.d/mysql-server.cnf 파일 설정 vi /etc/my.cnf.d/mysql-server.cnf 마지막 줄에 server-id = 1 log-bin = mysql-bin systemctl restart mysqld //수정시 항상 재시작 Master 상태 확..
- 17. DNS 서버 실습2023-02-09 17:23:43내 PC내에서 만 일어나기때문에 포트포워딩 불필요! ================================================================================================================ DNS 서버 ================================================================================================================ 1 리눅스에서 DNS서버(bind) 1) 설치 yum install bind 2) 설정 파일 /etc/named.conf 2 named.conf 파일 1) 기본 설정 options { directory "/var/named"; //영역파일의 위..
728x90
반응형
LIST