MySQL5 7免安裝教程

2021-10-05 00:10:44 字數 2629 閱讀 4581

安裝包:

第一步:解壓到要安裝的目錄,這裡解壓出來缺少乙個data資料夾和乙個my.ini檔案,需要自己建立

第二步:建立data資料夾和my.ini配置檔案

第三步:填寫my.ini的內容

[client]

port=3306

default-character-set=utf8

[mysql]

default-character-set=utf8

[mysqld]

basedir="d:\mysql57\mysql-5.7.28-winx64" ##這是安裝目錄

datadir="d:\mysql57\mysql-5.7.28-winx64\data" ##自己建立的data資料夾路徑

explicit_defaults_for_timestamp=true

port=3306

server_id=1

character-set-server=utf8

default-storage-engine=innodb

sql-mode="strict_trans_tables,no_auto_create_user,no_engine_substitution"

log-output=file

general-log=0

general_log_file="123-pc.log"

slow-query-log=1

slow_query_log_file="123-pc-slow.log"

long_query_time=10

max_connections=151

query_cache_size=0

table_open_cache=2000

tmp_table_size=25m

thread_cache_size=10

myisam_max_sort_file_size=100g

myisam_sort_buffer_size=42m

key_buffer_size=8m

read_buffer_size=64k

read_rnd_buffer_size=256k

sort_buffer_size=256k

innodb_flush_log_at_trx_commit=1

innodb_log_buffer_size=1m

innodb_buffer_pool_size=8m

innodb_log_file_size=48m

innodb_thread_concurrency=9

innodb_autoextend_increment=64

innodb_buffer_pool_instances=8

innodb_concurrency_tickets=5000

innodb_old_blocks_time=1000

innodb_open_files=300

innodb_stats_on_metadata=0

innodb_file_per_table=1

innodb_checksum_algorithm=0

back_log=80

flush_time=0

join_buffer_size=256k

max_allowed_packet=4m

max_connect_errors=100

open_files_limit=4161

query_cache_type=0

sort_buffer_size=256k

table_definition_cache=1400

binlog_row_event_max_size=8k

sync_master_info=10000

sync_relay_log=10000

sync_relay_log_info=10000

[winmysqladmin]

server=d:\mysql57\mysql-5.7.28-winx64\bin\mysqld.exe ##這裡的路徑也需要寫自己的

如果沒有出現此提示忽略此步

第六步:初始化資料庫

mysqld --initialize-insecure --user=mysql57

第七步:啟動mysql服務

第八步:登入資料庫修改密碼

mysql –u root –p

當提示輸入密碼時,不用填寫直接回車,然後執行

update mysql.user set authentication_string=password(『123456789』) where user=『root』 and host = 『localhost』

最後重啟服務就ok了

免安裝mysql5 7配置

我執行的步驟 到 bin目錄下,執行 mysqld install net start mysql 出現的問題 mysql 服務正在啟動 mysql 服務無法啟動。服務沒有報告任何錯誤。使用mysqld console會出現執行過程中的提示,提示有需要建立data資料夾,但是建立了之後還是會有一堆錯...

MySQL5 7安裝教程

mysql 作為免費資料庫,備受個人開發者追捧的同時也深受各大網際網路廠商的青睞!小白最近在掘金平台上開始閱讀關於mysql原理上的知識,因此又又又重新安裝mysql。linux版本 centos 7 安裝方式 rpm 其中server模組安裝會報如下錯誤 warning mysql communi...

mysql5 7 安裝教程

basedir e mysql5.7 mysql需要安裝的目錄 datadir e mysql5.7 data 資料庫的資料存放目錄 具體如下圖 具體路徑自己修改,然後儲存。e 回車 e cd mysql5.7 bin 回車 e cd mysql5.7 bin mysqld initialize i...