logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Docker daemon 解决Mac不能监听2375问题

参考链接:https://github.com/docker/for-mac/issues/770For security reasons, we choose to not expose that port directly. However, as described in our FAQ you can run a socat container to redirect the Docke.

#docker
Mysql报错Duplicate column name xxx

背景:使用Paginator插件进行分页时,如果查询的字段中有重复,就会报错Duplicate column name xxx。举个栗子:select cust_name,cust_id,cust_name from user_info;如果单独执行查询语句,mysql是支持重复字段查询的,但是使用了Paginator插件后,会在查询SQL外面包一层进行统计,就变成了s...

#mysql
Docker下使用Mysql

Docker下使用Mysqlstep1:拉取mysql镜像docker pull mysqlstep2:运行容器docker run -itd --name mysql-test -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 mysqlMYSQL_ROOT_PASSWORD=123456:设置 MySQL 服务 root 用户的密码。...

#docker#mysql
到底了