表示 进入内容 2121213014826
« 先前的 10 新的记录 | 下一步 10 较早的记录 »
Displaying posts with tag: MySQL (reset)
1.6. Replication

1.6.1. Master Slave

1.6.1.1. Master

过程 1.1. Master 设置步骤

配置 my.cnf 文件 确保主服务器主机上my.cnf文件的[mysqld]部分包括一个log-bin选项。

【服务器】  【mysql】  【数据库】  【配置】  【test】  【grant】  【replication】   …

[获取更多]
1.3. Percona

http://www.percona.com/

1.3.1. Percona yum Repository

# yum install http://www.percona.com/redir/downloads/percona-release/redhat/latest/percona-release-0.

【mysql】  【数据库】  【yum】  【rpm】  【stream】  【test】  【database】  【RedHat】   …

[获取更多]
1.4. my.cnf

1.4.1. bind-address

bind-address = 0.0.0.0

1.4.2. 禁用TCP/IP链接

与bind-address互斥,skip-networking 开启,只能通过UNIX SOCKET链接,而不能使用IP地址链接 [mysqld] skip-networking

1.

【mysql】  【LOG】  【数据库】  【配置】  【login】   点击查看原文>

第 1 章 MySQL Server

目录 1.1. MySQL Installation 1.1.1. Installation by apt-get under debian/ubuntu 1.1.2. Installation by source code 1.

【mysql】  【数据库】  【shell】  【yum】  【配置】  【rpm】  【Server】  【test】   …

[获取更多]
1.2. MariaDB

http://mariadb.org/

1.2.1. CentOS YUM 安装 MariaDB

cat >> /etc/yum.repos.d/MariaDB.repo
【mysql】  【SQL】  【数据库】  【yum】  【Server】  【Mariadb】  【test】  【fast】   …

[获取更多]
72.15. ERROR 1086 (HY000): File '/var/lib/mysql-files/order.txt' already exists

SELECT * FROM tabname INTO OUTFILE 不支持覆盖操作,这是MySQL从安全角度考虑的。 mysql> SELECT * FROM `order` INTO OUTFILE '/var/lib/mysql-files/order.txt'; ERROR 1086 (HY000): File '/var/lib/mysql-files/order.txt' already exists

原文出处:Netkiller 系列 手札 本文作者:陈景峯 转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

【安全】  【mysql】  【file】   点击查看原文>

72.14. ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement

MySQL 不允许向 secure_file_priv 意外的目录导出文件。 mysql> SELECT * FROM `order` INTO OUTFILE '/tmp/order.txt'; ERROR 1290 (HY000): The MySQL server is running...

【mysql】  【Server】  【variables】  【IT】   点击查看原文>

72.11. this is incompatible with sql_mode=only_full_group_by

ERROR 1055 (42000): Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'mydb.

【mysql】  【Group】   点击查看原文>

72.7. ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.

这个错误来自 MySQL 5.7,首次登陆MySQL 5.7 必须修改密码 ALTER USER 'root'@'localhost' IDENTIFIED BY 'your_password';

原文出处:Netkiller 系列 手札 本文作者:陈景峯 转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

【mysql】  【BY】   点击查看原文>

72.8. ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

MySQL 5.7 密码强度,必须含有0-9,a-z,A-Z以及“-”或“_” https://dev.mysql.com/doc/refman/5.7/en/validate-password-options-variables.

【安全】  【mysql】  【test】  【grant】  【html】   点击查看原文>

表示 进入内容 2121213014826
« 先前的 10 新的记录 | 下一步 10 较早的记录 »