您的位置:

mysql5.7得配置文件在哪,mysql57环境配置

本文目录一览:

MySQL配置文件(my.cnf)路径查看及相关配置

查找my.cnf文件路径;

从上可以看出, 服务器首先会读取/etc/my.cnf文件,如果发现该文件不存在,再依次尝试从后面的几个路径进行读取。

参数详解:

[client] #客户端设置,即客户端默认的连接参数

port = 3307 #默认连接端口

socket = /data/mysqldata/3307/mysql.sock #用于本地连接的socket套接字

default-character-set = utf8mb4 #编码

[mysqld] #服务端基本设置

port = 3307 MySQL监听端口

socket = /data/mysqldata/3307/mysql.sock #为MySQL客户端程序和服务器之间的本地通讯指定一个套接字文件

pid-file = /data/mysqldata/3307/mysql.pid#pid文件所在目录

basedir = /usr/local/mysql-5.7.11#使用该目录作为根目录(安装目录)

datadir = /data/mysqldata/3307/data #数据文件存放的目录

tmpdir = /data/mysqldata/3307/tmp #MySQL存放临时文件的目录

character_set_server = utf8mb4 #服务端默认编码(数据库级别)

collation_server = utf8mb4_bin #服务端默认的比对规则,排序规则

user = mysql #MySQL启动用户

log_bin_trust_function_creators = 1 #This variable applies when binary logging is enabled. It controls whether stored function creators can be trusted not to create stored functions that will cause #unsafe events to be written to the binary log. If set to 0 (the default), users are not permitted to create or alter stored functions unless they have the SUPER #privilege in addition to the CREATE ROUTINE or ALTER ROUTINE privilege. 开启了binlog后,必须设置这个值为1.主要是考虑binlog安全

performance_schema = 0 #性能优化的引擎,默认关闭

secure_auth = 1 #secure_auth 为了防止低版本的MySQL客户端(

MAC 下 Mysql 5.7 的配置文件在哪

mysql在5.7.6之后的版本去掉了在本地文件/root/.mysql_secret中生成初始密码的机制,所以在安装最新版的5.7.10过程中踩了坑,

按照正常安装方式一直提示如下错误

Access denied for user 'root'@'localhost' (using password: NO)

新版版本安装过程大致如下:

1.在系统偏好设置中关闭mysql服务

2.用安全模式启动服务:sudo mysqld_safe --skip-grant-tables

3.mysql -u root 登录,因为安全模式下,所以无需输入密码

4.登录后进行密码修改(密码修改这部分mysql做了很大的改动)

use mysql

select * from user;

update mysql.user set authentication_string=password('root') where user='root';

update mysql.user set Host='localhost' where user='root';

flush privileges;

密码字段已经不是之前的Password,新版本改为了现在的authentication_string字段

如果不按照这个步骤会报错:Access denied for user 'root'@'localhost' (using password: NO)

最后就可以用 mysql -uroot -p 然后输入上面设置的密码登录进mysql了

mysql的配置文件在哪

默认的mysql配置在 /etc/my.cnf ,这个配置默认用yum安装的存放路径。

如果你是自行用二进制安装的mysql,可以自行存放路径,但是建议是放在/etc 下面,有时候也可以新建个文件夹用于存放mysql的配置文件,比如/etc/mysql/mysql.cnf。

当然如果自定义存放路径,请记得把配置文件里面的参数修改到对应的路径,比如 socket路径等。

linux mysql5.7的配置文件在哪

Linux 下 MySQL 的配置文件是 my.cnf

Linux 下按文件名查找的命令是 find / -name xxx

所以应该这样查找:

[root@localhost /]# find / -name my.cnf

查找结果:

mysql5.7解压版安装配置文件在哪

mysql在5.7.6之后的版本去掉了在本地文件/root/.mysql_secret中生成初始密码的机制,所以在安装最新版的5.7.10过程中踩了坑,按照正常安装方式一直提示如下错误

access

denied

for

user

'root'@'localhost'

(using

password:

no)

新版版本安装过程大致如下:

1.在系统偏好设置中关闭mysql服务

2.用安全模式启动服务:sudo

mysqld_safe

--skip-grant-tables

3.mysql

-u

root

登录,因为安全模式下,所以无需输入密码

4.登录后进行密码修改(密码修改这部分mysql做了很大的改动)