mysqlインストール不要方法

4015 ワード

公式サイトでmysql-installer-community-5.6.27.0をダウンロードしました.msiは、インストール環境が必要で、検出に失敗し、面倒です.その後、ネットで資料を調べた後、圧縮パッケージmysql-5.6.27-winx 64をダウンロードした.zip.解凍してからプロファイルを直接変更すれば使用でき、インストールするのがそんなに面倒ではありません.
手順:
1.解凍、私のパスは:E:Program Files(x 86)mysqlmysql-5.6.27-winx 64
2.ディレクトリの下にmy-defaultがあります.iniプロファイルを次のように変更します.
# 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.

[mysqld]

# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
  innodb_buffer_pool_size = 128M

# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin

# These are commonly set, remove the # and set as required.
  #mysql   
  basedir = "E:\Program Files (x86)\mysql\mysql-5.6.27-winx64"
  #         
  datadir = "E:\Program Files (x86)\mysql\mysql-5.6.27-winx64\data"
# port = .....     3306
# server_id = .....           


# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M 

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 
#       
character-set-server=utf8
 [client]
 #       ,          
 loose-default-character-set = utf8
 [WinMySQLadmin]  
 Server = "E:\Program Files (x86)\mysql\mysql-5.6.27-winx64\bin\mysqld.exe"

3.Mysqlサービスの登録
開始——実行——cmd、それからcdはmysqlインストールディレクトリのbinの下に着いて、私のディレクトリは“E:Program Files(86)mysqlmysql-5.62-win 32bin”で、それからmysqld-installを実行して、サービスのインストールに成功することを提示します!サービスを実行します.mscを見ると、確かにMySQLというサービスがあり、起動しました.
管理者として実行する必要があります.そうしないとdeniedが報告されます.
 
転載先:https://www.cnblogs.com/345214483-qq/p/4866414.html