centos7 安装mysql(mariadb)

来源:互联网 发布:搜索算法open表close表 编辑:程序博客网 时间:2024/04/30 03:38
 在centos7上面安装mariadb时,使用[root@localhost ~]# systemctl status mariadb.service 会报错,使用
systemctl enable mariadb进行开机启动时,报:Failed to issue method call: Access denie。
所以在百度上找到正确的安装方式:
# yum install mariadb-server -y# systemctl start mariadb.service# systemctl enable mariadb.service# mysqlWelcome to the MariaDB monitor.  Commands end with ; or \g.Your MariaDB connection id is 10Server version: 5.5.44-MariaDB MariaDB ServerCopyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MariaDB [(none)]> 

提示成功!
0 0