標籤:blog http java 使用 io 檔案 for cti
1:下載64位mysql壓縮包:http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.17-winx64.zip
2:解壓,路徑自己定,我的是在S:\program\mysql-5.7.4-m14-winx64 。
3:建立my.ini , 內容如下,我從網上copy的一個:
####################設定檔開始################### # For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It‘s a template which will be copied to the # *** default location during install, and will be replaced if you # *** upgrade to a newer version of MySQL. [client] default-character-set=utf8 [mysqld] port=3306 basedir="S:/program/mysql-5.7.4-m14-winx64" datadir="S:/program/mysql-5.7.4-m14-winx64/data/" tmpdir="S:/program/mysql-5.7.4-m14-winx64/data/" socket="S:/program/mysql-5.7.4-m14-winx64/data/mysql.sock" log-error="S:/program/mysql-5.7.4-m14-winx64/data/mysql_error.log" #server_id = 2 #skip-locking max_connections=100 table_open_cache=256 query_cache_size=1M tmp_table_size=32M thread_cache_size=8 innodb_data_home_dir="S:/program/mysql-5.7.4-m14-winx64/data/" innodb_flush_log_at_trx_commit =1 innodb_log_buffer_size=128M innodb_buffer_pool_size=128M innodb_log_file_size=10M innodb_thread_concurrency=16 innodb-autoextend-increment=1000 join_buffer_size = 128M sort_buffer_size = 32M read_rnd_buffer_size = 32M max_allowed_packet = 32M explicit_defaults_for_timestamp=true sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" #sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES####################設定檔結束###################
注意上面有路徑的地方要換成自己的路徑。
其中datadir路徑必須是xxx/data/。(如果不使用這個路徑,會出現什麼情況?這裡沒實驗...)
4:在系統內容變數中path中加入:
;S:\program\mysql-5.7.4-m14-winx64\bin; (替換成自己的路徑,注意要加分號)
5:運行cmd,要以管理員權限運行,然後切換到bin下:
執行增加服務命令 : mysqld intall MySQL (MySQL 是服務的名字,這個可以隨便取吧)
移除服務的命令是: mysqld remove MySQL
6:然後控制台-管理工具-服務,找到MySQL,右鍵啟動。
7:修改root密碼:
命令列執行:mysql –uroot
mysql>show databases;
mysql>use mysql;
mysql> UPDATE user SET password=PASSWORD(‘123456‘) WHERE user=‘root‘;
mysql> FLUSH PRIVILEGES;
mysql> QUIT
至此mysql就安裝完畢了,然後可以用視覺化檢視登入了。如果是遠程登入的話,還需要加許可權。這裡暫時沒有弄,就先不細說了。
註:啟動服務的時候我遇到了1067錯誤,經過檢查後發現是my.ini裡路徑配置有誤。