테스트 단계:
1. 서버에 nginx 서버를 구축하고 시작하세요. 여기서는 설정되지 않은 특정 프로세스를 참조하세요.
2. docker의 소스에서 nginx의 공식 이미지를 가져옵니다. docker pull nginx, 남겨두기
3. 로컬 디렉터리에 두 개의 새 폴더를 만듭니다. 여기서 만든 폴더는 /mydata/test2/
4에 있습니다. 이를 표시할 폴더입니다. 출력은 첫 번째 HTML에서 nginx1이고, 출력은 두 번째 HTML에서 nginx2입니다. docker를 통해 두 nginx 서버의 컨테이너를 실행하고 정적 디렉터리를 방금 만든 디렉터리에 각각 매핑합니다.
[root@catchtouch test2]# docker run --name nginx-test -d -p 8080:80 -v /mydata/test1:/usr/share/nginx/html nginx #第一个,将8080端口映射到容器中的80端口 [root@catchtouch test2]# docker run --name nginx-test1 -d -p 8081:80 -v /mydata/test2:/usr/share/nginx/html nginx #第二个,将容器中的8081端口映射到容器中的80端口
6. 호스트 시스템에서 nginx 구성 파일을 수정합니다.
http{}
upstream myweb { #myproject为自定义名字 #ip_hash; #开启则代表用ip地址的形式来分配,可解决sesson问题 server 127.0.0.1:8080 weight=1; #weight越大,权重越高,被分配的几率越大 server 127.0.0.1:8081 weight=1; #我全部在本机,因此用了本地的ip,只要相应换成对应的ip或者域名即可 }
7에 다음 코드를 추가합니다. conf.d 디렉터리를 입력하고 default.conf를 수정합니다. conf.d를 새로 생성할 수 있습니다. 파일 이름은 임의적이며 접미사는 .conf여야 합니다.
location / { #如果服务器要获取客户端真实ip,可以用下三句设置主机头和客户端真实地址 #proxy_set_header host $host; #proxy_set_header x-real-ip $remote_addr; #proxy_set_header x-forwarded-for $proxy_add_x_forwarded_for; root /usr/share/nginx/html; index index.html index.htm; proxy_pass http://myweb; #myweb为之前在nginx.conf中upstream后定义的名字 }
8. 저장 후 종료하고 서버를 다시 시작합니다. systemctl restart nginx
9. 브라우저를 통해 페이지를 새로 고치면 nginx1이 출력될 때도 있고, nginx2가 출력될 때도 있고, Success를 구성하세요
이제 간단한 로드 밸런싱 모델 구성이 완료됩니다
위 내용은 nginx와 docker를 사용하여 간단한 로드 밸런싱을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!