參考https://blog.csdn.net/zhouxianli/article/details/89398746這篇文章,在Ubuntu18操作系統上部署了Open-Falcon,打開瀏覽器訪問,注冊賬號,點擊“Sign up”按鈕時沒有反應
登錄時,點擊“Sign in”按鈕,有彈出的提示框中發現有個端口是18080
在cd ~/go/src/github.com/open-falcon/目錄下搜索
find ./ -type f |xargs grep "http://127.0.0.1:18080"
解決方法:
cd ~/go/src/github.com/open-falcon/dashboard/rrd/
vim config.py
將 http://127.0.0.1:18080/api/v1 中的18080端口更改為8080
保存退出
cd ~/go/src/github.com/open-falcon/dashboard/
# 重啟
./control restart
再次注冊,登錄,就沒問題了
本文參考自:https://blog.csdn.net/wangxinhe1018/article/details/100566680