Code Monkey home page Code Monkey logo

Comments (1)

cubicwork avatar cubicwork commented on June 1, 2024

@Drswith 您好,1. 在使用 docker 暴露端口前,您需要确定您的宿主机的 3306 端口是否已经被占用。如果已经被常用,需要映射到其它端口。2. docker 镜像中的 mariadb 被设置设置成仅止除了 localhost 主机之外禁止访问,你需要登录 docker 后自行调整权限。或者使用 CREATE USER 命令为自己创建一个新的管理用户(推荐)。

具体操作如下:

  1. 使用 docker exec 启动 docker 镜像的 shell
  2. 使用 mysql -uroot -p123456 来登录数据库
  3. 使用 create user 'admin'@'%' identified by '123456'; 创建一个用户名是 admin 密码是 123456 并允许任何 host 访问数据库的用户。
  4. 使用 grant all privileges on codefever_community.* to 'admin'@'%'; 为用户授权数据库权限
  5. 使用 flush privileges; 来更新权限设置。
  6. 在宿主机上使用 admin / 123456 来访问数据库

from codefever.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.