参考来源:
https://blog.csdn.net/liuxw1/article/details/81434005 https://blog.csdn.net/cheng649090216/article/details/79246333 https://dev.mysql.com/downloads/mysql/5.7.html https://www.jianshu.com/p/0f8213da9f20
mysql 完全卸载步骤-mac系统
brew remove mysqlbrew cleanuplaunchctl unload -w ~/Library/LaunchAgents/com.mysql.mysqld.plistrm ~/Library/LaunchAgents/com.mysql.mysqld.plistsudo rm -rf /usr/local/var/mysqlsudo rm -rf /usr/local/mysql*sudo rm -rf /Library/StartupItems/MySQLCOMsudo rm -rf /Library/PreferencePanes/My*sudo rm -rf ~/Library/PreferencePanes/My*sudo rm -rf /Library/Receipts/mysql*sudo rm -rf /Library/Receipts/MySQL*sudo rm -rf /var/db/receipts/com.mysql.*
mysql centos系统安装
cat /etc/redhat-releaseCentOS 系统版本:Linux release 7.9.2009 (Core)
mysql关于mysqld_safe的总结
http://blog.itpub.net/30126024/viewspace-2221483/
wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpmyum localinstall -y mysql57-community-release-el7-11.noarch.rpmyum repolist enabled | grep "mysql.*-community.*"# 我这次按照查询的版本号:5.7.36-1.el7yum install -y mysql-community-serversystemctl status mysqld(service mysqld status)systemctl start mysqldsystemctl restart mysqld获取密码:grep 'temporary password' /var/log/mysqld.logmysql -uroot -pset global validate_password_policy=0;set global validate_password_length=4;alter user 'root'@'localhost' identified by 'root';use mysqlupdate user set host='%' where user ='root';exitsystemctl restart mysqldsystemctl enable mysqldsystemctl daemon-reload
配置文件调整vi /etc/my.cnf
[mysqld]max_connections=200max_connect_errors=10character-set-server=utf8mb4default-storage-engine=INNODB[mysql]default-character-set=utf8mb4[mysql.server]default-character-set=utf8mb4[mysql_safe]default-character-set=utf8mb4[client]port=3306default-character-set=utf8mb4
mysql mac系统brew安装步骤
brew 安装 mysql@5.7
brew search mysqlbrew install mysql@5.7ln -sfv /usr/local/opt/mysql@5.7/*.plist ~/Library/LaunchAgentsmy.cnf 配置文件找到写入内容(可忽略)mysql.server start
接下来设置mysql密码
mysql -urootshow databases;use mysqlupdate user set authentication_string = password('root') where User='root';
刷新权限
flush privileges;
重启mysql服务
mysql.server stopmysql.server start --skip-grant-tables (安全模式启动)
mysql my.cnf 加载顺序
/etc/my.cnf/etc/mysql/my.cnf/usr/local/etc/my.cnf~/.my.cnf
my.cnf mac配置文件内容
# my.cnf mac配置文件内容# Example MySQL config file for medium systems.## This is for a system with little memory (32M - 64M) where MySQL plays# an important part, or systems up to 128M where MySQL is used together with# other programs (such as a web server)## MySQL programs look for option files in a set of# locations which depend on the deployment platform.# You can copy this option file to one of those# locations. For information about these locations, see:# http://dev.mysql.com/doc/mysql/en/option-files.html## In this file, you can use all long options that a program supports.# If you want to know which options a program supports, run the program# with the "--help" option.# The following options will be passed to all MySQL clients[client]default-character-set=utf8#password = your_passwordport = 3306socket = /tmp/mysql.sock# Here follows entries for some specific programs# The MySQL server[mysqld]character-set-server=utf8init_connect='SET NAMES utf8port = 3306socket = /tmp/mysql.sockskip-external-lockingkey_buffer_size = 16Mmax_allowed_packet = 1Mtable_open_cache = 64sort_buffer_size = 512Knet_buffer_length = 8Kread_buffer_size = 256Kread_rnd_buffer_size = 512Kmyisam_sort_buffer_size = 8Mcharacter-set-server=utf8secure_file_priv=''init_connect='SET NAMES utf8'# Don't listen on a TCP/IP port at all. This can be a security enhancement,# if all processes that need to connect to mysqld run on the same host.# All interaction with mysqld must be made via Unix sockets or named pipes.# Note that using this option without enabling named pipes on Windows# (via the "enable-named-pipe" option) will render mysqld useless!##skip-networking# Replication Master Server (default)# binary logging is required for replicationlog-bin=mysql-bin# binary logging format - mixed recommendedbinlog_format=mixed# required unique id between 1 and 2^32 - 1# defaults to 1 if master-host is not set# but will not function as a master if omittedserver-id = 1# Replication Slave (comment out master section to use this)## To configure this host as a replication slave, you can choose between# two methods :## 1) Use the CHANGE MASTER TO command (fully described in our manual) -# the syntax is:## CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,# MASTER_USER=<user>, MASTER_PASSWORD=<password> ;## where you replace <host>, <user>, <password> by quoted strings and# <port> by the master's port number (3306 by default).## Example:## CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,# MASTER_USER='joe', MASTER_PASSWORD='secret';## OR## 2) Set the variables below. However, in case you choose this method, then# start replication for the first time (even unsuccessfully, for example# if you mistyped the password in master-password and the slave fails to# connect), the slave will create a master.info file, and any later# change in this file to the variables' values below will be ignored and# overridden by the content of the master.info file, unless you shutdown# the slave server, delete master.info and restart the slaver server.# For that reason, you may want to leave the lines below untouched# (commented) and instead use CHANGE MASTER TO (see above)## required unique id between 2 and 2^32 - 1# (and different from the master)# defaults to 2 if master-host is set# but will not function as a slave if omitted#server-id = 2## The replication master for this slave - required#master-host = <hostname>## The username the slave will use for authentication when connecting# to the master - required#master-user = <username>## The password the slave will authenticate with when connecting to# the master - required#master-password = <password>## The port the master is listening on.# optional - defaults to 3306#master-port = <port>## binary logging - not required for slaves, but recommended#log-bin=mysql-bin# Uncomment the following if you are using InnoDB tables#innodb_data_home_dir = /usr/local/mysql/data#innodb_data_file_path = ibdata1:10M:autoextend#innodb_log_group_home_dir = /usr/local/mysql/data# You can set .._buffer_pool_size up to 50 - 80 %# of RAM but beware of setting memory usage too high#innodb_buffer_pool_size = 16M#innodb_additional_mem_pool_size = 2M# Set .._log_file_size to 25 % of buffer pool size#innodb_log_file_size = 5M#innodb_log_buffer_size = 8M#innodb_flush_log_at_trx_commit = 1#innodb_lock_wait_timeout = 50[mysqldump]quickmax_allowed_packet = 16M[mysql]no-auto-rehash# Remove the next comment character if you are not familiar with SQL#safe-updatesdefault-character-set=utf8[myisamchk]key_buffer_size = 20Msort_buffer_size = 20Mread_buffer = 2Mwrite_buffer = 2M[mysqlhotcopy]interactive-timeout
Windows安装Mysql
• path bin环境变量配置(略过)a. mysqld --initialize --console (执行完毕之后会生成初始密码)b. mysqld --install [服务名](服务名可以不加默认为mysql)c. mysqld --install mysql --defaults-file="xxxx/my.ini"d. sc delete mysql [删除服务]e. net start mysql [启动MySQL的服务]
my.ini Windows配置文件内容
# my.ini windows配置文件内容[mysqld]# 设置3306端口port=3306# 设置mysql的安装目录basedir=C:\Program Files\MySQL# 设置mysql数据库的数据的存放目录datadir=C:\Program Files\MySQL\Data# 允许最大连接数max_connections=200# 允许连接失败的次数。max_connect_errors=10# 服务端使用的字符集默认为utf8mb4character-set-server=utf8mb4# 创建新表时将使用的默认存储引擎default-storage-engine=INNODB# 默认使用“mysql_native_password”插件认证#mysql_native_passworddefault_authentication_plugin=mysql_native_password# 选用sql的严格模式# sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES[mysql]# 设置mysql客户端默认字符集default-character-set=utf8mb4[mysql.server]# 设置mysql客户端默认字符集default-character-set=utf8mb4[mysql_safe]default-character-set=utf8mb4[client]# 设置mysql客户端连接服务端时默认使用的端口port=3306default-character-set=utf8mb4
MySql 命令
更新域属性,’%’表示允许外部访问;
update user set host='%' where user ='root';
执行以上语句之后再执行(刷新配置)
FLUSH PRIVILEGES;GRANT ALL PRIVILEGES ON *.* TO 'root'@'%'WITH GRANT OPTION;
创建用户并给予root权限 nacos(你的用户名)
CREATE USER 'nacos'@'%' IDENTIFIED BY 'nacos';GRANT ALL PRIVILEGES ON *.* TO 'nacos'@'%'WITH GRANT OPTION;
设置密码长度、安全型
set global validate_password_policy=0;set global validate_password_length=4;
版本号查询
select version();
提供什么存储引擎
show engines;
当前默认的存储引擎
show variables like '%storage_engine%';
查询数据库存储
select table_schema as '数据库',table_name as '表名',table_rows as '记录数',truncate(data_length / 1024 / 1024, 2) as '数据容量(MB)',truncate(index_length / 1024 / 1024, 2) as '索引容量(MB)'from information_schema.tableswhere table_schema = 'xxxxxxxxxxxtable'order by data_length desc, index_length desclimit 0, 10
Mac mysql 设置可远程连接
怎么知道mysql的配置文件在哪里呢?
mysql --helpDefault options are read from the following files in the given order:/etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
修改mysql配置,由于是通过brew安装的mysql,配置文件在:/usr/local/etc/my.cnf;
找到:bind-address = 127.0.0.1
修改为:bind-address = 0.0.0.0 或用#注释掉
然后mysql重启:
mysql.server restart
