1.查看mysql編輯情況rpm -qa|grep mysql
十年的和田網(wǎng)站建設經(jīng)驗,針對設計、前端、開發(fā)、售后、文案、推廣等六對一服務,響應快,48小時及時工作處理。網(wǎng)絡營銷推廣的優(yōu)勢是能夠根據(jù)用戶設備顯示端的尺寸不同,自動調(diào)整和田建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)公司從事“和田網(wǎng)站設計”,“和田網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。
2.卸載原有的mysql rpm -e --nodeps mysql
//
強力刪除模式,如果使用上面命令刪除時,提示有依賴的其它文件,則用該命令可以對其進行強力刪除
3.通過命令查看yum上面提供的可下載版本 ?yum list | grep mysql
4.安裝mysql客戶端和服務端?yum install -y mysql-server mysql mysql-deve
5.查看mysql啟動狀態(tài)?mysql service status
6.登錄mysql提示
7.修改mysql的root密碼
service mysqld stop
無密碼登錄mysql:mysqld_safe --skip-grant-tables
輸入mysql -uroot -p?直接回車進入mysql客戶端頁面
use mysql;
update user set password=PASSWORD("root")where user="root";修改密碼
flush privileges; 更新權限
service mysqld restart
最后直接登錄 mysql -u root -p回車輸入密碼
用 SSH客戶端登錄上以后
首先啟動數(shù)據(jù)庫:
[root@iZm5ec880z2rorZ ~]#?service mysqld start
可以輸入一下加粗命令:
[root@iZm5ec880z2rorZ ~]# ?mysql -u root -p?
Enter password: (輸入你的數(shù)據(jù)庫密碼)
Welcome to the MySQL monitor. ?Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.1.73-log MySQL Community Server (GPL)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql?use mysql
Database changedmysql?GRANT ALL PRIVILEGES ON *.* TO root@'%' IDENTIFIED BY 'ldyu123' WITH GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)
mysql?commit;
Query OK, 0 rows affected (0.00 sec)
mysql?flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql ?exit;
退出后,輸入下邊的命令:
[root@iZm5ec880z2rorZ ~]#?service mysqld restart
Shutting down MySQL... ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? [ ?OK ?]
Starting MySQL. ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?[ ?OK ?]
1、在MySQL數(shù)據(jù)庫安裝時選擇過MySQL服務器隨系統(tǒng)啟動,但如果沒有選擇,也沒關系,可以在可以在Windows服務管理器啟動,具體在開始菜單搜索services.msc,
2、單擊出現(xiàn)如下圖窗口,下滑鼠標找到MySQL57:
3、右擊后點擊啟動,MySQL57旁邊狀態(tài)列顯示“已啟動”字樣,說明啟動成功。如下圖:
二、登錄MySQL數(shù)據(jù)庫
4、用系統(tǒng)命令行工具登錄,點擊開始菜單,找到附件,點擊命令提示符。
5、在命令行中輸入cd加空格然后粘貼bin路徑:cdc:\ProgramFiles(x86)\MySQL\MySQLServer5.7\bin回車命令行定位到c:\ProgramFiles(x86)\MySQL\MySQLServer5.7\bin,在后面輸入mysql_hlocalhost_uroot_p(這些都是安裝時設置好的)敲回車,
6、出現(xiàn)Enterpassword:在后面輸入安裝時設置的登錄密碼,按回車后出現(xiàn)WelcometotheMySQLmonitor.說明登陸成功。如下圖:
7、用安裝時配置好的命令行工具登錄,在開始菜單,點擊MySQL5.7CommandLineClient或下面搜索程序框中輸入comm選擇MySQL5.7CommandLineClient啟動DOS命令窗口。如下圖:
8、在窗口Enterpassword:處輸入安裝時設置的MySQL數(shù)據(jù)庫客戶端登陸密碼,回車,如果出現(xiàn)WelcomtotheMySQLmonitor.等字眼表示登陸服務器成功,可以在閃爍光標處輸入SQL可執(zhí)行語言:如下圖: