Centos7.2 中安裝完MySQL5.7 數據庫

# 最簡單最粗暴的方法 找到mysql的配置文件直接編輯
vim /etc/my.cnf
 # 在 [mysqld] 中加上一行跳過權限限制
skip-grant-tables
# 保存退出 重啓mysql服務
service mysqld restart
# 用戶登陸
mysql -uroot -p (直接點擊回車,密碼爲空)
# 選擇數據庫
use mysql;
# 可是在5.7版本中不存在password字段,全部咱們要用如下修改進行重置密碼
update user set authentication_string=password('new password') where user='root';
# 刷新權限
flush privileges;
# 退出mysql
quit;
# 將最開始修改的配置文件my.cnf中的skip-grant-tables刪除 重啓mysql
service mysqld restart
# 當你登錄mysql以後你會發現,當你執行命令時會出現
ERROR 1820 (HY000): You must reset your password using ALTER USER statement;
# 這是提示你須要修改密碼 當你執行了
SET PASSWORD = PASSWORD('root');
# 若是出現
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
# 你須要執行兩個參數來把mysql默認的密碼強度的取消了才行 固然也能夠把你的密碼複雜度提升也行啊
set global validate_password_policy=0;
set global validate_password_mixed_case_count=2;
# 這時你再執行 就ok了
SET PASSWORD = PASSWORD('root');
# 下面再說一下mysql中的字符集的問題
show variables like "%character%";
# 出現以下狀況 能夠忽略…………
+--------------------------+----------------------------+
| Variable_name      | Value           |
+--------------------------+----------------------------+
| character_set_client   | utf8            |
| character_set_connection | utf8            |
| character_set_database  | utf8            |
| character_set_filesystem | binary           |
| character_set_results  | utf8            |
| character_set_server   | utf8            |
| character_set_system   | utf8            |
| character_sets_dir    | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+
#找到mysql的配置文件 加上幾句話就ok 在mysqld下面加上
character-set-server=utf8
collation-server=utf8_general_ci
# 在client下面加上
default-character-set=utf8
相關文章
相關標籤/搜索