這篇文章主要介紹了Linux下MySQL5.7.18二進位套件安裝教學(無預設設定檔my_default.cnf) ,需要的朋友可以參考下
最新在學習MySQL,純新手,對Linux了解的也不多,因為是下載的最新版的MySQL(MySQL5.7.18)二進位包,CentOS7.2下測試安裝,方便以後折騰。
大概步驟如下,安裝刪除重複折騰了幾遍,依照以下步驟,應該沒啥問題了。
也沒有想像中的複雜,大部分步驟都是參考網路上的,照做就是了,出錯的話,多嘗試,多查資料。
作業系統版本
# 建立mysql群組與使用者
#下載最新版的MySQL 5.7.18二進位包,上傳到伺服器的usr/local目錄下
#解壓縮MySQL二進位套件
如下是解壓縮之後的,並且重命名資料夾之後的檔案資訊
#更改所屬的群組和使用者
解壓縮之後的MySQL檔案所包含的內容
查看support-files
資料夾的內容,發現並沒有my_default.cnf
預設的配置文件,如果沒有預設的配置文件,需要手動建立一個my_default.cnf
設定檔
從網路上找了一個設定文件,如下,上傳到supp-files資料夾中,當然這個設定檔可以根據需自行修改
# For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.7/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] sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES # 一般配置选项 basedir = /usr/local/mysql datadir = /usr/local/mysql/data port = 3306 socket = /var/run/mysqld/mysqld.sock character-set-server=utf8 back_log = 300 max_connections = 3000 max_connect_errors = 50 table_open_cache = 4096 max_allowed_packet = 32M #binlog_cache_size = 4M max_heap_table_size = 128M read_rnd_buffer_size = 16M sort_buffer_size = 16M join_buffer_size = 16M thread_cache_size = 16 query_cache_size = 128M query_cache_limit = 4M ft_min_word_len = 8 thread_stack = 512K transaction_isolation = REPEATABLE-READ tmp_table_size = 128M #log-bin=mysql-bin long_query_time = 6 server_id=1 innodb_buffer_pool_size = 1G innodb_thread_concurrency = 16 innodb_log_buffer_size = 16M innodb_log_file_size = 512M innodb_log_files_in_group = 3 innodb_max_dirty_pages_pct = 90 innodb_lock_wait_timeout = 120 innodb_file_per_table = on [mysqldump] quick max_allowed_packet = 32M [mysql] no-auto-rehash default-character-set=utf8 safe-updates [myisamchk] key_buffer = 16M sort_buffer_size = 16M read_buffer = 8M write_buffer = 8M [mysqlhotcopy] interactive-timeout [mysqld_safe] open-files-limit = 8192 [client] /bin/bash: Q: command not found
如下,將上述預設設定檔上傳至support-files資料夾中
##已註冊並初始化MySQL服務
這一點比較坑,網路上的教學大多是mysql_install_db 方式安裝的,這一步也是遇到問題最最多的,折騰了好久,但是mysql_install_db 指令是不推薦的,也提示使用mysqld來安裝bin/mysqld --initialize-insecure --user=mysql --basedir=/usr/local/mysql/ --datadir=/usr/local/mysql/data/
#啟動MySQL服務
#連接至MySQL,預設沒有密碼,直接回車後連接至MySQL
修改MySQL的root密碼
##修改可遠端存取
#重啟MySQL服務
#此時本機可以正常使用MySQL
測試遠端連線 #
以上是Linux下MySQL5.7.18二進位套件安裝教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!