mysql启动停止 以及基本使用,乱码处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql启动停止 以及基本使用,乱码处理相关的知识,希望对你有一定的参考价值。
1)可以使用解压版本直接解压:比如mysql-5.7.9-linux-glibc2.5-x86_64.tar.gz
2)将准备好的my.cnf(该文件可以通过mysql目录下的support-files目录下的my_default.cnf复制过来,然后在里面添加一些参数)放到 mysql解压目录下
my.cnf具体为:
#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]
character-set-server=utf8
collation-server=utf8_general_ci
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
skip-host-cache
skip-name-resolve
lower_case_table_names=1
#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.
basedir =/home/bes/webgate/mysql-5.7.9-linux-glibc2.5-x86_64
datadir =/home/bes/webgate/mysql-5.7.9-linux-glibc2.5-x86_64/data
socket=/home/bes/webgate/mysql-5.7.9-linux-glibc2.5-x86_64/mysql.sock
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.
joinbuffersize = 128M
sortbuffersize = 2M
readrndbuffersize = 2M**
max_connections=1000
max_allowed_packet=1073741824
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
以上是关于mysql启动停止 以及基本使用,乱码处理的主要内容,如果未能解决你的问题,请参考以下文章