• centos通过yum安装mariadb(mysql)无法启动服务或者找不到mysql.sock

    日期:

    今天在某云主机(centos7)安装(yum install方式)mariadb(即开源mysql)后,无法启动mariadb,其实是安装不完整,当然启动不了,更不用说输入mysql -u root提示Cant connect to local MySQL server through socket /tmp/mysql.sock (2)了 。没什么技术含...

  • centos 7 卸载 mariadb 的正确命令

    日期:

    #列出所有被安装的rpm package rpm -qa | grep mariadb #卸载 rpm -e mariadb-libs-5.5.37-1.el7_0.x86_64 错误:依赖检测失败: libmysqlclient.so.18()(64bit) 被 (已安裝) postfix-2:2.10.1-6.el7.x86_64 需要 libmysqlclient.so.18(libmysqlclient_18)(64...

  • MariaDB 10.2.0 Alpha 发布

    日期:

    MariaDB 10.2.0 Alpha 发布了。 主要更新内容: Syntax: Window functions have been introduced. This release adds support for a limited set of functions, and the basic execution algorithm. Development continues to expand the set of supported f...

  • MariaDB 10.1.13 和 MariaDB Connector/J 1.3.7 发布

    日期:

    MariaDB 10.1.13 和 MariaDB Connector/J 1.3.7 发布了。 MariaDB 10.1.13值得关注的改进有: MDEV-9659 AWS Key management encryption plugin (currently distributed in source form only). MDEV-6058 new server variables; log_slow_admin_statements a...

  • MariaDB 10.1.12 发布,MySQL 衍生版

    日期:

    MariaDB 10.1.12 发布了,值得关注的改进有: XtraDB updated to XtraDB-5.6.28-76.1 InnoDB updated to InnoDB-5.6.29 Performance Schema updated to 5.6.29 完整改进记录请看: https://mariadb.com/kb/en/mariadb-10112-changelog/ MariaDB数据库管理系...

  • centos7下mariadb 忘记密码处理方法

    日期:

    systemctl stop mariadb ==停止mariadb数据库 mysqld_safe --skip-grant-table ==进入单机模式 use mysql;==进入mysql库 update user set password=password(新密码) where user=root and host=localhost;==设置新密码 flush privileges;==刷新 新开窗口 mysq...

  • 基于MariaDB Galera Cluster的数据库HA方案

    日期:

    部署方案: 1、安装MariaDB Galera Cluster,参考文章:http://note.youdao.com/share/?id=8516332a78f4256f5d5273bc88c6173ftype=note 2、安装Percona-xtrabackup,参考文章:http://note.youdao.com/share/?id=9aece83dded6f6f07de444f7882f4b4dtype=note 3...

  • CentOS6.5安装 MariaDB Galera Cluster 10.0

    日期:

    MariaDB is a relational database management system (RDBMS) and MariaDB Galera Clusteris a synchronous multi-master cluster for MariaDB. It is available on Linux only, and only supports the XtraDB/InnoDB storage engines. This article explai...

  • MariaDB Galera Cluster Startup

    日期:

    1.环境 系统信息 CentOS-6.5-x86_64 服务器节点IP:192.168.1.200 , 192.168.1.201 , 192.168.1.202 2.关闭SELinux 修改/etc/selinux/config 文件 将SELINUX=enforcing改为SELINUX=disabled 重启机器(可以通过/usr/sbin/sestatus -v查看状态) 3.安装基础软...

  • MariaDB 5.5.48 发布,流行的 MySQL 分支版本

    日期:

    MariaDB 5.5.48 发布了,该版本修复很多 bug ,值得关注的更新有: XtraDB 升级到 5.5.47-37.7 版本 从 Feedback Plugin , feedback_http_proxy 移植新的代理服务器选项,用于无法发起 https 请求时,例如在防火墙环境中。 完整的改进记录请看 changelog 。...