Last active
September 23, 2020 19:53
-
-
Save sjha4/c58367185083f6ecd130a6e97c414b49 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install dynaconf 3 and update /etc/pulp/settings.py | |
sudo systemctl stop pulpcore* | |
sudo su - postgres | |
dropdb pulp -p 7878 | |
createdb pulp -p 7878 | |
exit | |
cd /usr/local/lib/pulp/src/pulpcore/ | |
sudo -u pulp PULP_SETTINGS='/etc/pulp/settings.py' DJANGO_SETTINGS_MODULE='pulpcore.app.settings' /usr/local/lib/pulp/bin/django-admin migrate --no-input | |
sudo -u pulp PULP_SETTINGS='/etc/pulp/settings.py' DJANGO_SETTINGS_MODULE='pulpcore.app.settings' /usr/local/lib/pulp/bin/django-admin reset-admin-password --password password | |
cd ~ | |
Copy /etc/httpd/conf.d/05-foreman-ssl.d/pulpcore.conf from your dev box to proxy | |
sudo systemctl restart pulpcore* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment