您好,登錄后才能下訂單哦!
這篇文章主要介紹OpenStack lbaas haproxy v1v2怎么配置,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
一 安裝軟件
# apt-get install haproxy neutron-lbaasv2-agent # yum install haproxy neutron-lbaasv2-agent
二 配置 LBaaS v2 with an agent
1 # vi /etc/neutron/neutron.conf 在已有的plugins后面添加
service_plugins = [existing service plugins],neutron_lbaas.services.loadbalancer.plugin.LoadBalancerPluginv2
2 # vi /etc/neutron/neutron_lbaas.conf 添加下面一行
service_provider = LOADBALANCERV2:Haproxy:neutron_lbaas.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
3 在/etc/neutron/lbaas_agent.ini文件中啟用HAProxy負載均衡器
# vi /etc/neutron/lbaas_agent.ini [DEFAULT] interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver [haproxy] user_group = haproxy
4 運行neutron-lbaas數據庫遷移
# neutron-db-manage --service lbaas upgrade head
如果您已部署LBaaS v1,現在停止LBaaS v1代理。 v1和v2代理無法同時運行。
5 重啟服務
# service neutron-lbaasv2-agent restart # service neutron-server restart
三 查看日志
# tail -f /var/log/neutron/neutron-lbaasv2-agent.log
四 創建測試(horizon界面暫不支持v2版本)
# neutron lbaas-loadbalancer-create --name test-lb test108 # neutron lbaas-loadbalancer-show test-lb # neutron security-group-create lbaas # neutron security-group-rule-create --direction ingress --protocol tcp --port-range-min 80 --port-range-max 80 --remote-ip-prefix 0.0.0.0/0 lbaas # neutron security-group-rule-create --direction ingress --protocol tcp --port-range-min 443 --port-range-max 443 --remote-ip-prefix 0.0.0.0/0 lbaas # neutron security-group-rule-create --direction ingress --protocol icmp lbaas # neutron port-update --security-group lbaas $PORT-ID # neutron lbaas-listener-create --name test-lb-http --loadbalancer test-lb --protocol HTTP --protocol-port 80 # neutron lbaas-pool-create --name test-lb-pool-http --lb-algorithm ROUND_ROBIN --listener test-lb-http --protocol HTTP # neutron lbaas-member-create --subnet test108 --address 192.168.108.126 --protocol-port 80 test-lb-pool-http # ping ip # ps aux |grep haproxy
一 安裝軟件
# apt-get install haproxy neutron-lbaas-agent
1 # vi /etc/neutron/neutron.conf 在已有的plugins后面添加
service_plugins = lbaas
2 # vi /etc/neutron/neutron_lbaas.conf 添加下面一行
service_provider = LOADBALANCER:Haproxy:neutron_lbaas.services.loadbalancer.drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
3 在/etc/neutron/lbaas_agent.ini文件中啟用HAProxy負載均衡器
# vi /etc/neutron/lbaas_agent.ini [DEFAULT] ###在文件/etc/neutron/lbaas_agent.ini中選擇所需要的驅動## ###激活Open vSwitch 負載均衡即服務驅動: ###interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver ###或者,激活Linux網橋負載均衡即服務驅動: ###interface_driver = neutron.agent.linux.interface.BridgeInterfaceDriver interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver [haproxy] user_group = haproxy
4 在數據庫中創建所要求的表:
# neutron-db-manage --service lbaas upgrade head
5 重啟服務 如果您已部署LBaaS v2,現在停止LBaaS v2代理。 v1和v2代理無法同時運行。
# service neutron-lbaas-agent restart # service neutron-server restart
二 查看日志
# tail -f /var/log/neutron/neutron-lbaas-agent.log
三 創建測試(horizon界面支持v1版本配置)
以上是“OpenStack lbaas haproxy v1v2怎么配置”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。