複製代碼 代碼如下:
解壓mysql到d:\mysql,編輯my.ini
[mysqld]
port=3306
basedir="D:/mysql/"
datadir="D:/mysql/Data/"
tmpdir="d:/mysql/tmp/"
default-character-set=utf8
default-storage-engine=MYISAM
skip-bdb
skip-innodb
skip-locking
key_buffer=16M
max_allowed_packet=1M
table_cache=128
thread_cache=8
join_buffer_size=512K
sort_buffer=512K
record_buffer=512K
max_connections=500
wait_timeout=120
interactive_timeout=120
max_connect_errors=3000
long_query_time=1
max_heap_table_size=16M
tmp_table_size=8M
thread_concurrency=8
myisam_sort_buffer_size=8M
myisam_sort_buffer_size=4M
low_priority_updates=1
ft_min_word_len=1
編輯兩個批處理
安裝
d:
cd D:\mysql\bin
mysqld-nt.exe --install MySQL --defaults-file=D:\mysql\my.ini
net start mysql
pause
卸載
d:
cd D:\APM\mysql\bin
net stop mysql
mysqld-nt.exe --remove MySQL
pause
複製代碼 代碼如下:
添加一個mysql啟動使用者,設定此使用者為guest組,
設定d:\mysql目錄為administrators組、system、新加的使用者完全許可權。
設定mysql服務的啟動帳戶為新加的使用者,重新啟動mysql服務。
設定拒絕本地登陸。