91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

centos7下如何安裝mysql6初始化安裝密碼

發布時間:2020-07-18 14:12:17 來源:億速云 閱讀:370 作者:小豬 欄目:MySQL數據庫

這篇文章主要講解了centos7下如何安裝mysql6初始化安裝密碼,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

1.先停止數據庫服務器

service  mysqld stop

2.vim /etc/my.cnf

3.配置文件添加skip-grant-tables

[root@VM_0_8_centos ~]# vim /etc/my.cnf

# For advice on how to change settings please see
# http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html

[mysqld]
#
# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
# innodb_buffer_pool_size = 128M
#
# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin
#
# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
skip-grant-tables      此處!!!!!!
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0

4.重啟數據庫

 systemctl restart mysql

5.登錄數據庫

mysql -uroot -p

如果詢問密碼,直接空密碼登錄

6.set password for root@localhost = password('123456');括號里面的密碼你自己修改。

7.mysql -uroot -p123456 登錄成功

PS:下面看下Mysql初始化root密碼和允許遠程訪問

mysql默認root用戶沒有密碼,輸入mysql –u root 進入mysql

1、初始化root密碼

進入mysql數據庫

mysql>update user set password=PASSWORD(‘123456') where User='root';

2、允許mysql遠程訪問,可以使用以下三種方式:

a、改表。

mysql -u root –p
mysql>use mysql;
mysql>update user set host = '%' where user = 'root';
mysql>select host, user from user;

b、授權。

例如,你想root使用123456從任何主機連接到mysql服務器。

mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION;

如果你想允許用戶jack從ip為10.10.50.127的主機連接到mysql服務器,并使用654321作為密碼

mysql>GRANT ALL PRIVILEGES ON *.* TO 'jack'@'10.10.50.127' IDENTIFIED BY '654321' WITH GRANT OPTION;
mysql>FLUSH RIVILEGES

c:在安裝mysql的機器上運行:

//進入MySQL服務器
d:\mysql\bin\>mysql -h localhost -u root
//賦予任何主機訪問數據的權限
mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION
//使修改生效
mysql>FLUSH PRIVILEGES
//退出MySQL服務器
mysql>EXIT

看完上述內容,是不是對centos7下如何安裝mysql6初始化安裝密碼有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

城口县| 大同市| 六枝特区| 二手房| 沽源县| 八宿县| 城固县| 深圳市| 连城县| 玛曲县| 广汉市| 西乡县| 彰武县| 姜堰市| 扎囊县| 乐亭县| 临泉县| 吉安县| 荆州市| 乐清市| 湘乡市| 寻乌县| 石城县| 曲阜市| 黔南| 小金县| 大邑县| 五华县| 恩施市| 镇平县| 铁力市| 肇源县| 宁陕县| 辉县市| 娄烦县| 夹江县| 梅河口市| 伊宁县| 夏津县| 景泰县| 昌都县|