Below you will find pages that utilize the taxonomy term “HAProxy”
Posts
HAProxy - HAProxy Statistics
要啟動 HAProxy Statistics,需將 HAProxy 設定檔開啟進行設定。
sudo vim /etc/haproxy/haproxy.cfg 將設定檔加上如下設定:
# HAProxy Statistics listen stats bind :9000 mode http stats enable # Enable stats page stats hide-version # Hide HAProxy version stats realm Haproxy\ Statistics # Title text for popup window stats uri /haproxy_stats # Stats URI stats auth Username:Password # Authentication credentials 設定檔的 bind、uri 與 auth 資訊需視需要調動。
接著調用命令啟動 HAProxy。
sudo service haproxy start 訪問設定的 HAProxy Statistics 網址。
帶入設定檔 auth 那邊設定的帳密。
read morePosts
HAProxy - Install on ubuntu
要在 Ubuntu 使用 HAProxy,可直接透過 apt-get 進行 HAProxy 的安裝。
apt-get install haproxy 安裝完後可調用命令並帶入參數 -v 確認安裝無誤。
haproxy -v
read more