标签:cte conf move 产生 and 执行 centos6 dir sock
1.mysql安装冲突:conflicts with file from package
看到“conflicts”,是产生冲突了,文件“/usr/share/mysql/charsets/*”需要MySQL-server-5.6.19-1.linux_glibc2.5.x86_64版本的,而系统已经存在mysql-libs-5.1.71-1.el6.x86_64版本的!
解决办法:
执行以下命令,删除mysql-libs-5.1.71-1.el6.x86_64:
yum -y remove mysql-libs-5.1.71*
再执行以下命令安装MySQL:
rpm -ivh MySQL-server-5.6.19-1.linux_glibc2.5.x86_64.rpm
一切Ok,安装成功了。
2. 在CentOS 7上安装MySQL时,遇到FATAL ERROR: please install the following Perl modules before executing scripts/mysql_install_db: Data::Dumper
要想解决此错误,需要用以下命令安装Perl模块:yum install perl-Data-Dumper.x86_64
3. MySQL [ERROR] Table ‘mysql.user‘ doesn‘t exist 解决办法:
#由于编译安装时指定的路径为/opt/data以及mysql_install_db时指定的datadir也为/opt/data,而my.cnf为缺省的路径。因此修改datadir至正确路径后,问题解决
参见:http://blog.csdn.net/leshami/article/details/41801395
4. MySQL 5.7以上root用户默认密码问题:
CentOS系统用yum安装MySQL的朋友,请使用 grep "temporary password" /var/log/mysqld.log 命令,返回结果最后引号后面的字符串就是root的默认密码。
(如果不存在/var/log/mysqld.log文件,请确保您已经启动过一次MySQL服务。CentOS 7启动MySQL服务的命令是:systemctl start mysqld.service)
参见:https://www.yanning.wang/archives/379.html
有些版本,安装完没有密码。第一次登录的时候,需要设置密码。
5. error 2002 (hy000) mysql.sock /var/lib/mysql/mysql.sock
CentOS 7已经将默认集成mariadb而不是mysql,这对于多数还是依赖于mysql的应用来说,需要手动的进行更新。
遇到这样的错误,将所有的mariadb安装包都删除,然后自行安装MySQL就可以了。
参见:http://blog.csdn.net/furzoom/article/details/49466565
6. centos 7 mariadb 启动问题:
安装完了 mariadb 后 有一天重启机器发现 启动不了 mariadb.service
systemctl start mariadb.service //然后发现下面的问题
job for mariadb.service failed because the control process exited with error code .
See "systemctl status mariadb.service" and "journalctl -xe" for details
// 按照上面的 查看 一无所获 但是看见了 "journalctl -xe"里面在启动 mariadb的时候 有Logging to ‘/var/log/mariadb/mariadb.log‘ 然后就去查看了这个 log
找到最后下面在Aborting 上面有 一行 Character set ‘utf8‘ is not a compiled character set and is not specified in the ‘/usr/share/mysql/charsets/Index.xml‘
之后去查看这个Index.xml 发现里面有utf8 这个配置
然后就猜想 服务器的配置可能没指定 字符集
接着找到 服务器配置
在/etc/mycnf.d 里面有一个 server.cnf 在 [mysqld] 下面 添加
character-set-server=utf8 保存
然后 systemctl start mariadb.service
ok搞定
参见:http://www.cnblogs.com/CodeWu91/p/6142958.html
7. centos7 MYSQL数据库安装和配置,参见:https://www.cnblogs.com/starof/p/4680083.html
CentOS6.4下Mysql数据库的安装与配置:http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html
8. centos 7 卸载 mariadb 的正确命令,参见:http://www.cnblogs.com/kluan/p/4809895.html
9. 比较重要的几个文件:
/etc/my.cnf
/var/log/mysqld.log
10. 几个常用命令:
1).MySQL数据库中使用use来切换数据库
2).使用show databases; 看看服务器上有哪些数据库:mysql> show databases;
3).想要切换到test数据库,那我们可以使用use命令: mysql> use test
标签:cte conf move 产生 and 执行 centos6 dir sock
原文地址:http://www.cnblogs.com/Jtianlin/p/7700086.html