File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ flake8 --config flake8.cfg || exit 1
77
88# Run migrations.
99export DJANGO_SETTINGS_MODULE=pulpcore.app.settings
10- export PULP_CONTENT_HOST=localhost:8080
10+ export PULP_CONTENT_HOST=localhost:24816
1111django-admin makemigrations python
1212django-admin migrate --noinput
1313
@@ -16,8 +16,8 @@ django-admin migrate --noinput
1616
1717# Run functional tests.
1818django-admin reset-admin-password --password admin
19- django-admin runserver >> ~ /django_runserver.log 2>&1 &
20- gunicorn pulpcore.content:server --bind ' localhost:8080 ' --worker-class ' aiohttp.GunicornWebWorker' -w 2 >> ~ /content_app.log 2>&1 &
19+ django-admin runserver 24817 >> ~ /django_runserver.log 2>&1 &
20+ gunicorn pulpcore.content:server --bind ' localhost:24816 ' --worker-class ' aiohttp.GunicornWebWorker' -w 2 >> ~ /content_app.log 2>&1 &
2121rq worker -n ' resource-manager@%h' -w ' pulpcore.tasking.worker.PulpWorker' >> ~ /resource_manager.log 2>&1 &
2222rq worker -n ' reserved-resource-worker-1@%h' -w ' pulpcore.tasking.worker.PulpWorker' >> ~ /reserved_worker-1.log 2>&1 &
2323sleep 8
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ Run Services
5050.. code-block :: bash
5151
5252 pulp-manager runserver
53- gunicorn pulpcore.content:server --bind ' localhost:8080 ' --worker-class ' aiohttp.GunicornWebWorker' -w 2
53+ gunicorn pulpcore.content:server --bind ' localhost:24816 ' --worker-class ' aiohttp.GunicornWebWorker' -w 2
5454 sudo systemctl restart pulp-resource-manager
5555 sudo systemctl restart pulp-worker@1
5656 sudo systemctl restart pulp-worker@2
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ accordingly. If you prefer to specify the username and password with each reques
2222To make these workflows copy/pastable, we make use of environment variables. The first variable to
2323set is the hostname and port::
2424
25- $ export BASE_ADDR=http://<hostname>:8000
25+ $ export BASE_ADDR=http://<hostname>:24817
2626
2727This documentation makes use of the `jq library <https://stedolan.github.io/jq/ >`_
2828to parse the json received from requests, in order to get the unique urls generated
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ $ cat pip.conf
9191.. code ::
9292
9393 [global]
94- index-url = http://localhost:8080 /pulp/content/foo/simple/
94+ index-url = http://localhost:24816 /pulp/content/foo/simple/
9595
9696 The above configuration informs ``pip `` to install from ``pulp ``::
9797
You can’t perform that action at this time.
0 commit comments