腾讯云ubuntu18.04搭建open-falcon
一、环境准备 sudo apt-get install -y mysql-server mysql-client golang redis 自从mysql5.7版本开始不支持在安装时手动设置密码,所以要在安装mysql后手动设置root的用户的密码和密码登录,直接使用root用户登录mysql会报错 Access denied for user 'root'@'localhost'` 以root用户身份可以直接登录mysql sudo mysql use mysql update user set authentication_string=passowrd("root") where user='root'; 之后配置root用户使用密码登录 update user set plugin='mysql_native_password' where User='root'; 刷新权限并退出 flush privileges; exit 重启mysql sudo service mysql restart 初始化mysql表结构 cd /tmp/ && git clone https://github.com/open-falcon/falcon-plus.git cd /tmp/falcon-plus/scripts/mysql/db_schema/ mysql -h 127.0