Docker 容器中的 MySQL 绑定地址

MySQL bind-address in a Docker container(Docker 容器中的 MySQL 绑定地址)
本文介绍了Docker 容器中的 MySQL 绑定地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想构建一个容器,它可以绑定到多个 IP 地址.绑定地址保存在my.cnf中,就可以了.如何定义它或使用 Dockerfile 注释掉以授予远程访问权限?

I would like to build a container, which enables bind to multiple IP addresses. Bind address is stored in my.cnf, it is okay. How to define it or maybe comment out with use of a Dockerfile to grant remote access?

推荐答案

sed 是通常是此类任务的首选武器.取自官方mysql dockerfile:

sed is usually the weapon of choice for such tasks. Taken from the official mysql dockerfile:

RUN sed -Ei 's/^(bind-address|log)/#&/' /etc/mysql/my.cnf

该命令注释掉 my.cnf 或 conf.d/* 中以 bind-addresslog 开头的行.

The command comments out lines starting with bind-address or log in my.cnf or conf.d/*.

这篇关于Docker 容器中的 MySQL 绑定地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)