作者:妖姬脸似花甘露_545 | 来源:互联网 | 2023-01-04 13:29
我在让GitLab的CI与Django项目一起工作时遇到问题。我使用的是Postgres服务器,看来我设置有误。任何帮助将非常感激!
错误:
django.db.utils.OperationalError: could not connect to server: No such file or directory
Is the server running locally and accepting
connections on Unix domain socket "/var/run/postgresql/.s.PGSQL.5432"?
我的.gitlab-ci.yml文件:
image: python:3.6.1
services:
- postgres:9.3
variables:
POSTGRES_DB: project_ci_test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ""
test:
script:
- export DATABASE_URL=postgres://postgres:@postgres:5432/project_ci_test
- apt-get update -qy
- apt-get install -y python-dev python-pip
- pip install -r requirements.txt
- python manage.py makemigrations
- python manage.py migrate
- python manage.py test Project
在我的Django设置文件中:
DATABASES = {
'default': {
'ENGINE' : 'django.db.backends.postgresql_psycopg2',
'NAME' : 'project_ci_test',
'USER' : 'postgres',
'PASSWORD': '',
}
}
我目前正在尝试利用GitLab的共享跑步者。我希望有人能够成功获得一个带有postgres的Django项目,以在GitLab的CI上工作。
谢谢!
1> Tyler Bell..:
终于解决了问题。在我的Django项目的设置文件中指定主机和端口可以解决该问题!
DATABASES = {
'default': {
'ENGINE' : 'django.db.backends.postgresql_psycopg2',
'NAME' : 'project_ci_test',
'USER' : 'postgres',
'PASSWORD': '',
'HOST' : 'postgres'
'PORT' : '5432'
}
}