Questions tagged «mariadb»

MariaDB是MySQL关系数据库管理系统的社区开发分支。



4
为什么mariadb不断死亡?如何停止?
我在Ubuntu 15.10上将LAMP服务器运行MariaDB 10.0.23-0。运行sudo /etc/init.d/mysql start结果: Job for mariadb.service failed because a timeout was exceeded. See "systemctl status mariadb.service" and "journalctl -xe" for details. 输出systemctl status mariadb.service为: ●mariadb.service-MariaDB数据库服务器 已加载:已加载(/lib/systemd/system/mariadb.service;已启用;供应商预设:已启用) 插入:/etc/systemd/system/mariadb.service.d └─从my.cnf-settings.conf迁移 活动:自星期六2016-03-26 22:52:42美国东部时间以来失败(结果:超时);26s前 进程:8707 ExecStart = / usr / sbin / mysqld $ MYSQLD_OPTS $ _WSREP_NEW_CLUSTER(代码=已退出,状态= 0 /成功) 进程:8706 ExecStartPre = …
25 15.10  mysql  timeout  mariadb 


2
如何直接用MariaDB替换MySQL?
我已经在Ubuntu 14.04 Server上运行了多个MySQL数据库,并且希望将它们尽可能平稳地迁移到兼容的MariaDB。我也在使用PHPMyAdmin。除了导出所有数据然后在安装后全部重新导入之外,还有其他方法吗?
18 14.04  mysql  mariadb 

2
在Ubuntu 16.04 LTS上安装mariadb-server时不提示输入根密码
我刚刚在我的电脑上重新安装了Ubuntu 16.04 LTS。当我尝试通过键入以下命令来安装MariaDB时: sudo apt-get install mariadb-server 安装进行得很顺利,但是在此过程中,系统未提示我输入mysql root帐户的密码。安装后,我无法登录MariaDB(mysql -u root -p),并显示错误消息: ERROR 1698 Access denied for user 'root' 一切都是全新安装。/etc/apt/sources.list检查了其中的条目,并正确启用了所有主要组件。 似乎是什么问题?
14 mysql  sql  mariadb 

5
在Ubuntu 14.04上安装Mysql Workbench
我已安装Ubuntu社区支持的MariaDb,在最新LTS的发行说明中提到。 之后,我尝试安装Mariadb-client,该安装也成功安装了,这对拥有GUI工具来说很好,因此决定从Ubuntu-SOftware-Center和通过Terminal都安装MySql-workbench,但是它提示了以下提到的错误- 通过Ubuntu-Software-Center-错误 This error could be caused by required additional software packages which are missing or not installable. Furthermore there could be a conflict between software packages which are not allowed to be installed at the same time. mysql-workbench: Depends: libgcc1 (>= 1:4.1.1) but 1:4.9-20140406-0ubuntu1 is to be installed …

2
当Apt报告MariaDB具有未满足的依赖关系或损坏的软件包时安装MariaDB
我已经尽一切努力在干净的Ubuntu安装上安装MariaDB,但是我一直收到此错误, Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The …


1
无法再以root用户身份登录MySQL?
看来我在Ubuntu 15.04中无法再以root用户身份登录MySQL(实际上是MariaDB)(我是从14.04通过14.10升级的) 我已经尝试过重设密码。 什么是工作,是sudo mysql-但我使用要以root登录,从其他用户mysql -uroot -p。当我创建具有完整权限和密码的新用户时,它正在工作。 有什么变化吗?
8 15.04  mysql  mariadb 

3
如何在Ubuntu 14.04(Trusty Tahr)上卸载MariaDB?
我已经从源代码安装了MariaDB,现在需要卸载它。我使用以下命令进行安装: wget http://mirrors.hustunique.com/mariadb/mariadb-10.0.14/source/mariadb-10.0.14.tar.gz tar -zxvf mariadb-10.0.14.tar.gz cd mariadb-10.0.14/ apt-get install cmake apt-get install g++ openssl libssl-dev libncurses5-dev libboost-dev bison cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \ -DWITH_FEDERATED_STORAGE_ENGINE=1 -DWITH_SSL=system make && make install 如何卸载?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.