程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL 綠色版裝置辦法圖文教程

MySQL 綠色版裝置辦法圖文教程

編輯:MySQL綜合教程

MySQL 綠色版裝置辦法圖文教程。本站提示廣大學習愛好者:(MySQL 綠色版裝置辦法圖文教程)文章只能為提供參考,不一定能成為您想要的結果。以下是MySQL 綠色版裝置辦法圖文教程正文


1、下載,這裡應用綠色解緊縮版

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

2、設置裝備擺設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)

3、更改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 就沒有這個毛病提醒了!

4、數據庫的創立與刪除

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>

5、操作數據庫數據的普通步調

1、啟動MySQL辦事器
2、上岸數據庫辦事器
3、應用某個要操作的數據庫
4、操作該數據庫中的表,可履行增刪改查各類操作。
5、加入上岸。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved