在mac中完全绿色安装mysql服务器
时间:2021-07-01 10:21:17
帮助过:19人阅读
mysql]
default-character-set=
utf8
[mysqld]
port=3306
#Mysql服务器对应的端口;
basedir=/Users/huGuohua/Applications/mysql-5.7.28-macos10.14
-x86_64 #Mysql安装的绝对路径;
datadir=/Users/huGuohua/Applications/mysql-5.7.28-macos10.14
-x86_64/data/ #Mysql数据存放的绝对路径;
socket = /Users/huGuohua/Applications/mysql-5.7.28-macos10.14
-x86_64/mysql.sock:#套接字文件
plugin_dir = /Users/huGuohua/Applications/mysql-5.7.28-macos10.14
-x86_64/lib/plugin #mysql中plugin插件所在的路径;
log-error = /Users/huGuohua/Applications/mysql-5.7.28-macos10.14
-x86_64/log/error.log #mysql生成的错误日志存放的路径
character-set-server=
utf8
default-storage-engine=
MyIsam
max_connections=100
collation-server=
utf8_unicode_ci
init_connect=
‘SET NAMES utf8‘
innodb_buffer_pool_size=
64M
innodb_flush_log_at_trx_commit=1
innodb_lock_wait_timeout=120
innodb_log_buffer_size=
4M
innodb_log_file_size=
256M
interactive_timeout=120
join_buffer_size=
2M
key_buffer_size=
32M
log_error_verbosity=1
max_allowed_packet=
16M
max_heap_table_size=
64M
myisam_max_sort_file_size=
64G
myisam_sort_buffer_size=
32M
read_buffer_size=
512kb
read_rnd_buffer_size=
4M
server_id=1
skip-external-locking=
on
sort_buffer_size=
256kb
table_open_cache=256
thread_cache_size=16
tmp_table_size=
64M
wait_timeout=120
[client]
default-character-set=utf8
初始化数据库:
${MYSQL_HOME}/bin/mysqld --initialize --datadir=${MYSQL_HOME}/data --log-error=${MYSQL_HOME}/log/error.log --explicit-defaults-for-timestamp=ON
运行数据库服务:
nohup ${MYSQL_HOME}/bin/mysqld --defaults-file=${MYSQL_HOME}/my.cnf &
正常情况,我们运行ps -ef | grep mysqld,就可以看到数据库服务启动了。
修改root密码
在${MYSQL_HOME}/log/error.log中找到root的密码,然后用客户端工具去登录,在第一次登录的时候,会提示修改root用户的密码。
停止数据库服务:
${MYSQL_HOME}/bin/mysqladmin -uroot -p"123456" -h127.0.0.1 -P3306 shutdown
然后界面提示
mysqladmin: [Warning] Using a password on the command line interface can be insecure.
[20-01-01 22:21:40 /Users/huGuohua/Applications/mysql-5.7.28-macos10.14-x86_64]$
[1] + done nohup ${MYSQL_HOME}/bin/mysqld --defaults-file=${MYSQL_HOME}/my.cnf
另外一个mysql的启动方法
这个相当于把配置文件中的内容用命令参数的方式来自由指定
nohup ${MYSQL_HOME}/bin/mysqld --defaults-file=${MYSQL_HOME}/my.cnf --basedir=${MYSQL_HOME} --datadir=${MYSQL_HOME}/data --plugin-dir=${MYSQL_HOME}/lib/plugin --log-error=${MYSQL_HOME}/log/error.log --pid-file=/${MYSQL_HOME}/mysql.pid --socket=${MYSQL_HOME}/mysql.sock --port=3306 &
在mac中完全绿色安装mysql服务器
标签:erro font col 数据库 pre external done timestamp 方式