帮助与文档

全部文档
帮助与文档 > 负载均衡 > 快速入门 > 创建后端应用

创建后端应用

以一套Web应用作为示例。

前提:已经创建好后两台云服务器。

准备环境:

后端服务器:web-01 centos7.2,8080端口

后端服务器:web-02 centos7.2,8080端口

1.安装好web服务

以nginx为例,rpm方式安装nginx,开放8080端口对外服务:

web-01:

yum install nginx -y

vim /etc/nginx/nginx.conf

  1. server {
  2. listen 8080 default_server;
  3. server_name _;
  4. root /usr/share/nginx/html;
  5. include /etc/nginx/default.d/*.conf;
  6. location / {
  7. }
  8. error_page 404 /404.html;
  9. location = /40x.html {
  10. }
  11. error_page 500 502 503 504 /50x.html;
  12. location = /50x.html {
  13. }
  14. }

echo “this is web-01” > /usr/share/nginx/html/index.html

systemctl start nginx

systemctl status nginx

确保能正常访问:

web-02:

yum install nginx -y

vim /etc/nginx/nginx.conf

  1. server {
  2. listen 8080 default_server;
  3. server_name _;
  4. root /usr/share/nginx/html;
  5. include /etc/nginx/default.d/*.conf;
  6. location / {
  7. }
  8. error_page 404 /404.html;
  9. location = /40x.html {
  10. }
  11. error_page 500 502 503 504 /50x.html;
  12. location = /50x.html {
  13. }
  14. }

echo “this is web-02” > /usr/share/nginx/html/index.html

systemctl start nginx

systemctl status nginx

确保能正常访问:

2.开放防火墙访问权限

如果云服务器开启了防火墙,则需要开启负载均衡实例健康检查网络地址的防火墙访问权限健康检查网络地址

分别在web-01和web-02上:

firewall-cmd --add-rich-rule="rule family="ipv4" source address="负载均衡公网IP/32" accept" --permanent

firewall-cmd --reload

配置完成!

这条帮助是否解决了您的问题? 已解决 未解决

提交成功!非常感谢您的反馈,我们会继续努力做到更好!更多建议 非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题:

更多建议