ICode9

精准搜索请尝试: 精确搜索
首页 > 数据库> 文章详细

docker安装mysql8.0

2022-08-20 00:31:03  阅读:152  来源: 互联网

标签:mysql8 data etc mysql8.0 mysql var -- docker 安装


docker run \
    -p 3306:3306 \
    -e MYSQL_ROOT_PASSWORD=QQ.123 \
    -v /home/data/mysql8/data:/var/lib/mysql:rw \
    -v /home/data/mysql8/log:/var/log/mysql:rw \
    -v /home/data/mysql8/config/my.cnf:/etc/mysql/my.cnf:rw \
    -v /etc/localtime:/etc/localtime:ro \
    --name mysql8 \
    --restart=always \
    -d mysql:8.0

my.cnf

# Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA

#
# The MySQL  Server configuration file.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

[mysqld]
pid-file        = /var/run/mysqld/mysqld.pid
socket          = /var/run/mysqld/mysqld.sock
datadir         = /var/lib/mysql
secure-file-priv= NULL

# 设置忽略大小写,设置后数据库无法启动
# lower_case_table_names=1

# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0

# Custom config should go here
!includedir /etc/mysql/conf.d/

default_authentication_plugin= mysql_native_password

忽略大小写

docker run \
    -p 3308:3306 \
    -e MYSQL_ROOT_PASSWORD=QQ.123 \
    -v /home/data/mysql8-ignorecase/config/my.cnf:/etc/mysql/my.cnf:rw \
    -v /home/data/mysql8-ignorecase/data:/var/lib/mysql:rw \
    -v /etc/localtime:/etc/localtime:ro \
    --name mysql8-ignorecase \
    --restart=always \
    -d ncp-kms-registry:5000/mysql:8.0 \
    --lower_case_table_names=1

标签:mysql8,data,etc,mysql8.0,mysql,var,--,docker,安装
来源: https://www.cnblogs.com/jiftle/p/16606981.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有