使用系统版本
CentOS 7.6 3.10.0-957.el7.x86_64 GNU/Linux
使用软件版本说明
mariadb-5.5.60-1.el7_5.x86_64
php-5.4.16-46.el7.x86_64
httpd-2.4.6-89.el7.centos.x86_64
lepus版本
Lepus数据库企业监控系统3.7版本官方下载
一、lepus服务部署
01.安装服务
[root@lepus ~]# yum install httpd php php-mysql mariadb-server mysql-devel python-devel python-pip -y
02.创库授权
[root@lepus ~]# systemctl start mariadb
[root@lepus ~]# mysql -uroot -p
MariaDB [(none)]> create database lepus default character set utf8;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all on lepus.* to lepus@localhost identified by '123456';
Query OK, 0 rows affected