宜信数据采集平台DBus生产环境部署实战案例

                                     作者:尹正杰

版权声明:原创作品,谢绝转载!否则将追究法律责任。

 

 

 

一.准备工作 

1>.MySQL数据库安装

  DBus的数据库我们可以和Ambari Server公用同一个MySQL数据库。因此关于MySQL的安装部署我这里就不罗嗦啦,毕竟以前的笔记已经整理过。

  博主推荐阅读:
    https://www.cnblogs.com/yinzhengjie2020/p/12219108.html

2>.创建dbusmgr库

[root@hdp101.yinzhengjie.org.cn ~]# egrep -v  "^#|^$" /etc/my.cnf
[mysqld]
default_authentication_plugin=mysql_native_password
validate_password.policy=LOW
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
[root@hdp101.yinzhengjie.org.cn ~]# 
[root@hdp101.yinzhengjie.org.cn ~]# 
[root@hdp101.yinzhengjie.org.cn ~]# egrep -v "^#|^$" /etc/my.cnf          #数据库服务器的配置文件

相关文章: