gpt4 book ai didi

mysql - 错误: database is uninitialized and password option is not specified

转载 作者:行者123 更新时间:2023-11-29 05:55:03 25 4
gpt4 key购买 nike

我是 docker 的新手。我一直在关注本教程:https://medium.com/coderscorner/connecting-to-mysql-through-docker-997aa2c090cc 。我已经设置了 root 密码,但是一旦我尝试访问 mysql 命令,它就会抛出此数据库未初始化错误。另外,当我这样做时docker-compose up命令拉取所需的模块,它会给出django.db.utils.InternalError:(1049,“未知数据库'bitpal'”)。我放置的命令是:

docker run --name=mysql -e MYSQL_USER=root MYSQL_ROOT_PASSWORD=password -d mysql

我想我已经在这里寻找答案,但我无法确定出了什么问题。

docker-compose.yml

version: '2'
services:
# Redis
mysql:
image: mysql:5.7
restart: always
hostname: mysql
container_name: mysql
environment:
- MYSQL_USER=root
- MYSQL_ROOT_PASSWORD=password
- MYSQL_DB=bitpal
ports:
- "3306:3306"


# Redis
redis:
image: redis:latest
restart: always
hostname: redis
container_name: redis
ports:
- "6379:6379"


# Django web server
bitpal:
image: python:3.5
restart: always
hostname: bitpal
container_name: bitpal
working_dir: /bitpal
command: ./bin/start_dev.sh
volumes:
- ./bitpal:/bitpal
- ./etc/config:/etc/config
- ./log:/log
ports:
- "80:80"
links:
- mysql
- redis
depends_on:
- mysql
environment:
# Database
- DB_NAME=bitpal
- DB_USER=root
- DB_PASSWORD=password
- DB_HOST=mysql
- DB_PORT=3306


# Celery worker
worker:
image: python:3.5
restart: always
container_name: worker
command: bash -c "./bin/install.sh && ./bin/celery_worker.sh"
working_dir: /bitpal
volumes:
- ./bitpal:/bitpal
- ./etc/config:/etc/config
- ./log:/log
links:
- mysql
- redis
depends_on:
- redis


# Bitshares websocket listener
websocket_listener:
image: python:3.5
restart: always
container_name: websocket_listener
command: bash -c "./bin/install.sh && ./bin/websocket_listener.sh"
working_dir: /bitpal
volumes:
- ./bitpal:/bitpal
- ./etc/config:/etc/config
- ./log:/log
links:
- mysql
- redis
depends_on:
- redis


# Nginx
nginx:
image: nginx:1.12.1
container_name: nginx
ports:
- "8000:80"
volumes:
- ./bitpal:/home/bitpal/bitpal/bitpal
- ./nginx:/etc/nginx/conf.d
depends_on:
- bitpal

我的目录如下所示。

`**ROOT**
`root: .gitignore, docker-compose.yml, docker-compose-production.yml...
/bitpal /etc /log /nginx /public_html`

**ROOT/bitpal**
`.gitignore, Dockerfile, Makefile, manage.py... /bin /bitpal /media
/static /tests`

所有项目的.sh文件存储在 root/bitpal/bin 下。我放置wait-for-it.sh或者将其放在 bitpal 和 nginx 文件夹中?

最佳答案

您所遵循的本教程不完整。它没有告诉你如果你想使用它,你必须等到数据库初始化。

通过run命令运行数据库容器后,您应该检查该容器的日志并等待数据库初始化 流程已完成

你可以这样做:

$ docker logs -f <container name>

在您的情况下,其中容器名称mysql。当您看到数据库已初始化并且数据库已启动时,只需从日志中分离(ctrl+c)并继续。

您的数据库现在可以使用了。

考虑您的撰写文件的重要说明

此撰写文件将无法工作,因为其他服务(例如 bitpal/worker)不会等待数据库服务初始化。

首先下载一个 wait-for-it.sh 脚本,该脚本允许其他服务在使用撰写文件设置您的应用程序时等待您的数据库。该脚本由 vishnubob 制作,可用 here ,然后将其复制到您需要数据库的服务所在的所有目录中。

在同一目录中创建一个 docker-entrypoint.sh 文件并按如下方式编写:

#!/bin/bash
set -e
sh -c './wait-for-it.sh mysql:3306 -t 30'
exec "$@"

然后,在您的撰写文件中,在每个需要数据库的服务(以及放置 wait-for-it.sh 脚本的位置)中添加将执行等待脚本的条目:

entrypoint: ["./docker-entrypoint.sh"]

然后,您的服务将等待数据库,直到它初始化并准备好接受连接。

在编辑中,我将添加直接的目录树,以便您可以更清楚地看到这些文件应如何放置。

这是唯一有效的方法之一,因为 depends_on 不会等待数据库服务初始化,正如官方文档中明确指出的那样。

编辑文件位置说明

root 
- bitpal
+ *some service files*
+ wait-for-it.sh
+ docker-entrypoint.sh
- some_service_requiring_db
+ *some service files*
+ wait-for-it.sh
+ docker-entrypoint.sh
- docker-compose.yml

你的撰写文件应该是这样的:

version: '2'
services:
# MySQL service definition
mysql:
# like you have

# some services

# Django web server
bitpal:
# ...
entrypoint: ["./docker-entrypoint.sh"]
# further declarations

关于mysql - 错误: database is uninitialized and password option is not specified,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50248217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com