MySQL 綠色版安裝方法圖文教程

來源:互聯網
上載者:User

一、下載,這裡使用綠色解壓縮版

http://mirror.services.wisc.edu/mysql/Downloads/MySQL-5.1/mysql-noinstall-5.1.32-win32.zip

二、配置MySQL的參數

1、解壓縮綠色版軟體到D:\AppServ\MySQL
設定系統內容變數, 在Path中添加 D:\AppServ\MySQL\bin;

2、修改D:\AppServ\MySQL\my-small.ini檔案內容,添加紅色內容

[client]
#password = your_password
port = 3306
socket = /tmp/mysql.sock
default-character-set=gbk

[mysqld]
port = 3306
socket = /tmp/mysql.sock
default-character-set=gbk
skip-locking
key_buffer = 16K
max_allowed_packet = 1M
table_cache = 4
sort_buffer_size = 64K
read_buffer_size = 256K
read_rnd_buffer_size = 256K
net_buffer_length = 2K
thread_stack = 64K
basedir=D:\Appserv\MySQL\
datadir=D:\Appserv\MySQL\Data\
#basedir是mysql安裝目錄;#datadir是mysql資料庫存放位置,必須是Data檔案夾名

將修改後的檔案另存新檔my.ini

3、安裝MySQL的服務,服務名自己定義為MySQL.
1)、進入DOS視窗
2)、執行安裝MySQL服務名的命令:
D:\AppServ\MySQL\bin\mysqld-nt -install mysql --defaults-file="D:\Appserv\MySQL\my.ini"
出現Service successfully installed.表示安裝成功。

然後開啟服務視窗(在運行框中輸入services.msc即可開啟服務視窗,然後可以找到mysql服務了,右鍵mysql服務屬性,在彈出的視窗中可以看到以下資訊:)
D:\AppServ\MySQL\bin\mysqld-nt --defaults-file=D:\Appserv\MySQL\my.ini mysql 則表示mysql會隨開機啟動而啟動!

3)、啟動MySQL服務
net start mysql
MySQL服務正在啟動 .
MySQL服務無法啟動。

4)、登陸MySQL伺服器
mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.32-community MySQL Community Edition (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

注意:MySQL的管理使用者名為root,密碼預設為空白。

5)、查看資料庫
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
3 rows in set (0.02 sec)

可以看到MySQL伺服器中有三個資料庫。

6)、使用資料庫
mysql> use test
Database changed

7)、查看資料庫中的表
mysql> show tables;
Empty set (0.00 sec)

8)、建立表ttt
mysql> create table ttt(a int,b varchar(20));
Query OK, 0 rows affected (0.00 sec)

9)、插入三條資料
mysql> insert into ttt values(1,'aaa');
Query OK, 1 row affected (0.02 sec)

mysql> insert into ttt values(2,'bbb');
Query OK, 1 row affected (0.00 sec)

mysql> insert into ttt values(3,'ccc');
Query OK, 1 row affected (0.00 sec)

10)、查詢資料
mysql> select * from ttt;
+------+------+
| a | b |
+------+------+
| 1 | aaa |
| 2 | bbb |
| 3 | ccc |
+------+------+
3 rows in set (0.00 sec)

11)、刪除資料
mysql> delete from ttt where a=3;
Query OK, 1 row affected (0.01 sec)

刪除後查詢操作結果:
mysql> select * from ttt;
+------+------+
| a | b |
+------+------+
| 1 | aaa |
| 2 | bbb |
+------+------+
2 rows in set (0.00 sec)

12)、更新資料
mysql> update ttt set b = 'xxx' where a =2;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0

查看更新結果:
mysql> select * from ttt;
+------+------+
| a | b |
+------+------+
| 1 | aaa |
| 2 | xxx |
+------+------+
2 rows in set (0.00 sec)

13)、刪除表
mysql> drop table ttt;
Query OK, 0 rows affected (0.00 sec)

查看資料庫中剩餘的表:
mysql> show tables;
Empty set (0.00 sec)

三、更改MySQL資料庫root使用者的密碼

1、使用mysql資料庫
mysql> use mysql
Database changed

2、查看mysql資料庫中所有的表
mysql>show tables;
+---------------------------+
| Tables_in_mysql |
+---------------------------+
| columns_priv |
| db |
| func |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| host |
| proc |
| procs_priv |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+
17 rows in set (0.00 sec)

3、刪除mysql資料庫中使用者表的所有資料
mysql> delete from user;
Query OK, 3 rows affected (0.00 sec)

4、建立一個root使用者,密碼為"xiaohui"。
mysql>grant all on *.* to root@'%' identified by 'xiaohui' with grant option;
Query OK, 0 rows affected (0.02 sec)

5、查看user表中的使用者
mysql> select User from user;
+------+
| User |
+------+
| root |
+------+
1 row in set (0.00 sec)

6、重啟MySQL:更改了MySQL使用者後,需要重啟MySQL伺服器才可以生效。
net stop mysql
MySQL 服務正在停止..
MySQL 服務已成功停止。

net start mysql
MySQL 服務正在啟動 .
MySQL 服務已經啟動成功。

7、重新登陸MySQL伺服器
mysql -uroot -pxiaohui
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.32-community MySQL Community Edition (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>

如果修改密碼後net startmysql出現不能啟動mysql的1067錯誤,則可以使用以下辦法解決:
使用cmd命令:D:\Appserv\mysql\bin\mysqladmin -uroot -p shutdown,然後輸入密碼,再net start mysql 就沒有這個錯誤提示了!

四、資料庫的建立與刪除

1、建立資料庫testdb
mysql> create database testdb;
Query OK, 1 row affected (0.02 sec)

2、使用資料庫testdb
mysql> use testdb;
Database changed

3、刪除資料庫testdb
mysql> drop database testdb;
Query OK, 0 rows affected (0.00 sec)

4、退出登陸
mysql>exit
Bye

C:\Documents and Settings\Administrator>

五、操作資料庫資料的一般步驟

1、啟動MySQL伺服器
2、登陸資料庫伺服器
3、使用某個要操作的資料庫
4、操作該資料庫中的表,可執行增刪改查各種操作。
5、退出登陸。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.