MySQL 服務與數據庫管理

1、啟動和關閉服務指令

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 服務與數據庫管理的文章就介紹到這瞭,更多相關MySQL 服務與數據庫管理內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: