第一次在自己虛機上安裝mysql 中間碰到很多問題在這裡記下來,特此分享到腳本之家平台供大家參考
第一次在自己虛機上安裝mysql 中間碰到很多問題在這裡記下來,分享一下。
linux centOS 6
mysql版本mysql-5.7.19-linux-glibc2.12-x86_64.tar.gz
#1、groupadd mysql
## 新增一個mysql群組
2、useradd -r -g mysql mysql
## 新增一個使用者
3、解壓縮下載的包,tar -xzvf /usr/local/mysql-5.7.13-linux-glibc2.5-x86_64.tar.gz
#4、mv /usr/local /mysql-5.7.13-linux-glibc2.5-x86_64 /usr/local/mysql
##重新命名
解壓縮後目錄:
##解壓縮後目錄:
5、
## 預設是沒有這個資料夾得用來放資料6、
##進入mysql套件中,授權給這個套件給mysql7、
##進入mysql包中8、
##進入mysql basedir 為mysql 的路徑,datadir 為mysql的data 包,裡面 存放著mysql自己的包, 如user
網上很多教程mysql_install_db
方式安裝的,我剛開始也是這麼安裝,各種報錯、失敗,mysql_install_db 指令不推薦、按上面的指令來就好這裡需要注意記錄產生的暫存密碼,如上文:YLi>7ecpe;YP9、
10、進入mysql
##10、進入mysql
support-file
##11、
cp my-default.cnf /etc/my.cnf#發現這個版本就沒有
my-default
#這個是時候我們自己創建一個(內部程式碼如圖): 重點下面兩個socket(紅色)對應的值必須一致,不然啟動以後連結不上
#dvice 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 = /temp/mysqld.sock 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 socket = /var/run/mysqld/mysqld.sock 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] loose-default-character-set = utf8
12、
cp mysql.server /etc/init.d/mysql13、
vim /etc/init.d/mysql
bin/mysqld_safe --#=my
./mysql -uroot -p##bin目錄下
14、 輸入臨時密碼15、修改MySQL的root密碼 此時mysql只有本機localhost可以存取
#16 修改可遠端存取
##重啟MySQL服務
此時本機可以正常使用MySQL
總結
#以上是MySQL5.7.19在Linux下安裝出現的問題解決圖文詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!