您好,登錄后才能下訂單哦!
本篇內容主要講解“MySQL 服務與數據庫管理的方法是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“MySQL 服務與數據庫管理的方法是什么”吧!
1.1windows下Mysql5.7官方MSI安裝地址(選擇自己心儀的版本安裝):
https://downloads.mysql.com/archives/installer/
1.1.1:win7 會遇到的問題:遇到無法定位程序輸入點fesetround于動態鏈接庫 解決辦法:
下載C++庫地址:
https://support.microsoft.com/en-us/help/3138367/update-for-visual-c-2013-and-visual-c-redistributable-package
下載選中的安裝完成,繼續下一步即可
1.2、windows下(mysql57為mysql服務名稱):
啟動:net start mysql57
關閉:net stop mysql57
1.3、linux下(mysql 為mysql服務名稱):
啟動:[root@localhost ~]service mysql start
關閉:[root@localhost ~]service mysql stop
1.4、windows下cmd窗體進入mysql:
cd到mysql安裝的bin目錄下:
C:\Windows\system32>cd C:\Program Files\MySQL\MySQL Server 5.7\bin
連接mysql服務器:
C:\Program Files\MySQL\MySQL Server 5.7\bin>mysql -uroot -p Enter password: ****** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.7.17-log MySQL Community Server (GPL) Copyright (c) 2000, 2016, 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>
mysql
代表客戶端命令, -u
后面跟連接的數據庫用戶, -p
表示需要輸入密碼。
1.4、數據庫管理
1.4.1、創建一個orderManage數據庫
mysql> create database orderManage; Query OK, 1 row affected (0.00 sec)
1.4.2、展示所有的數據庫
mysql> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | cluster | | mysql | | test | | orderManage| +--------------------+ 5 rows in set (0.00 sec)
可以發現,在上面的列表中除了剛剛創建的orderManage
外,還有另外 4 個數據庫,它們都是安裝MySQL
時系統自動創建的,其各自功能如下。
1、 information_schema
:主要存儲了系統中的一些數據庫對象信息。比如用戶表信息、列信息、權限信息、字符集信息、分區信息等。
2、 cluster
:存儲了系統的集群信息。
3 、mysql
:存儲了系統的用戶權限信息。
4、 test
:系統自動創建的測試數據庫,任何用戶都可以使用。
1.4.3、選擇進入某一個數據
選擇進入orderManage數據庫中:
mysql> use ordermanage; Database changed
由此可以發現,選擇進入數據庫時候,數據庫的名稱是不區分大小寫的
1.4.4、查看此數據庫中的所有表
mysql> show tables; Empty set (0.00 sec)
此時,顯示orderManage
數據庫中是沒有表的(Empty set表示操作結果為空)
1.4.5、刪除數據庫
mysql> drop database ordermanage; Query OK, 0 rows affected (0.01 sec)
1.5、配置MySQL允許遠程訪問
通過ip連接出現如下問題:
解決方法:
以root 用戶進入mysql數據庫,并查詢登錄用戶信息:
mysql -u root -p use mysql; select host from user where user = 'root'
將host設置為%
update user set host='%' where user='root';
Host修改完成后記得執行flush privileges使配置立即生效即可
flush privileges;
到此,相信大家對“MySQL 服務與數據庫管理的方法是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。