happy-dazza | Hi All, | 01:39 |
---|---|---|
happy-dazza | I am getting a OfflineGenerationError following cloud-init on Digital Ocean Droplet (2VCPU/4VRAM/Ubuntu 22.04 LTS). | 01:39 |
happy-dazza | Any guidance greatly appreciated. | 01:39 |
happy-dazza | ---------------------------------------------------------------------- | 01:39 |
happy-dazza | error message from browser | 01:39 |
happy-dazza | ---------------------------------------------------------------------- | 01:39 |
happy-dazza | OfflineGenerationError at /auth/login/ | 01:39 |
happy-dazza | You have offline compression enabled but key "cc177adda5db0dd2d1e20f42f87deed795726b7ffce1589ee2c01fda847f0487" is missing from offline manifest. You may need to run "python manage.py compress". Here is the original content: | 01:39 |
happy-dazza | <link href="/dashboard/static/horizon/lib/bootstrap_datepicker/datepicker3.css" type="text/css" media="screen" rel="stylesheet" /> | 01:39 |
happy-dazza | <link href="/dashboard/static/horizon/lib/rickshaw/rickshaw.css" type="text/css" media="screen" rel="stylesheet" /> | 01:39 |
happy-dazza | Request Method:GET | 01:39 |
happy-dazza | Request URL:http://testbox1.mydomain.au/dashboard/auth/login/?next=/dashboard/ | 01:39 |
happy-dazza | Django Version:3.2.18 | 01:39 |
happy-dazza | Exception Type:OfflineGenerationError | 01:39 |
happy-dazza | Exception Value: | 01:39 |
happy-dazza | You have offline compression enabled but key "cc177adda5db0dd2d1e20f42f87deed795726b7ffce1589ee2c01fda847f0487" is missing from offline manifest. You may need to run "python manage.py compress". Here is the original content: | 01:39 |
happy-dazza | <link href="/dashboard/static/horizon/lib/bootstrap_datepicker/datepicker3.css" type="text/css" media="screen" rel="stylesheet" /> | 01:39 |
happy-dazza | <link href="/dashboard/static/horizon/lib/rickshaw/rickshaw.css" type="text/css" media="screen" rel="stylesheet" /> | 01:39 |
happy-dazza | Exception Location:/usr/local/lib/python3.10/dist-packages/compressor/templatetags/compress.py, line 84, in render_offline | 01:40 |
happy-dazza | Python Executable:/usr/bin/python3 | 01:40 |
happy-dazza | Python Version:3.10.6 | 01:40 |
happy-dazza | Python Path: | 01:40 |
happy-dazza | ['/opt/stack/horizon', | 01:40 |
happy-dazza | '/opt/stack/horizon', | 01:40 |
happy-dazza | '/usr/lib/python310.zip', | 01:40 |
happy-dazza | '/usr/lib/python3.10', | 01:40 |
happy-dazza | '/usr/lib/python3.10/lib-dynload', | 01:40 |
happy-dazza | '/usr/local/lib/python3.10/dist-packages', | 01:40 |
happy-dazza | '/opt/stack/horizon', | 01:40 |
happy-dazza | '/opt/stack/keystone', | 01:40 |
happy-dazza | '/opt/stack/glance', | 01:40 |
happy-dazza | '/opt/stack/cinder', | 01:40 |
happy-dazza | '/opt/stack/neutron', | 01:40 |
happy-dazza | '/opt/stack/nova', | 01:40 |
happy-dazza | '/opt/stack/placement', | 01:40 |
happy-dazza | '/usr/lib/python3/dist-packages', | 01:40 |
happy-dazza | '/opt/stack/horizon/openstack_dashboard'] | 01:40 |
happy-dazza | Server time:Sun, 14 May 2023 00:40:17 +0000 | 01:40 |
happy-dazza | ---------------------------------------------------------------------- | 01:40 |
happy-dazza | droplet creation command | 01:40 |
happy-dazza | ---------------------------------------------------------------------- | 01:40 |
happy-dazza | # doctl compute droplet create \ | 01:40 |
happy-dazza | --image ubuntu-22-04-x64 \ | 01:40 |
happy-dazza | --size s-2vcpu-4gb \ | 01:40 |
happy-dazza | --region syd1 \ | 01:40 |
happy-dazza | --vpc-uuid 4fbb8fb1-8b33-4a47-9478-35cfbc34eeee \ | 01:40 |
happy-dazza | --ssh-keys 00:be:f2:fa:21:00:b9:d8:25:13:2a:0a:4c:17:53:e9 \ | 01:41 |
happy-dazza | --user-data-file cloud-config.yaml \ | 01:41 |
happy-dazza | --wait \ | 01:41 |
happy-dazza | testbox1.mydomain.au | 01:41 |
happy-dazza | ---------------------------------------------------------------------- | 01:41 |
happy-dazza | cloud-init.yaml file | 01:41 |
happy-dazza | ---------------------------------------------------------------------- | 01:41 |
happy-dazza | #cloud-config | 01:41 |
happy-dazza | users: | 01:41 |
happy-dazza | - default | 01:41 |
happy-dazza | - name: stack | 01:41 |
happy-dazza | lock_passwd: False | 01:41 |
happy-dazza | sudo: ["ALL=(ALL) NOPASSWD:ALL\nDefaults:stack !requiretty"] | 01:41 |
happy-dazza | shell: /bin/bash | 01:41 |
happy-dazza | write_files: | 01:41 |
happy-dazza | - content: | | 01:41 |
happy-dazza | #!/bin/sh | 01:41 |
happy-dazza | DEBIAN_FRONTEND=noninteractive sudo apt-get -qqy update || sudo yum update -qy | 01:41 |
happy-dazza | DEBIAN_FRONTEND=noninteractive sudo apt-get install -qqy git || sudo yum install -qy git | 01:41 |
happy-dazza | sudo chown stack:stack /home/stack | 01:41 |
happy-dazza | cd /home/stack | 01:41 |
happy-dazza | git clone https://git.openstack.org/openstack-dev/devstack | 01:41 |
happy-dazza | cd devstack | 01:41 |
happy-dazza | echo '[[local|localrc]]' > local.conf | 01:41 |
happy-dazza | echo ADMIN_PASSWORD=password >> local.conf | 01:41 |
happy-dazza | echo DATABASE_PASSWORD=password >> local.conf | 01:41 |
happy-dazza | echo RABBIT_PASSWORD=password >> local.conf | 01:41 |
happy-dazza | echo SERVICE_PASSWORD=password >> local.conf | 01:41 |
happy-dazza | ./stack.sh | 01:42 |
happy-dazza | path: /home/stack/start.sh | 01:42 |
happy-dazza | permissions: 0755 | 01:42 |
happy-dazza | runcmd: | 01:42 |
happy-dazza | - su -l stack ./start.sh | 01:42 |
happy-dazza | ---------------------------------------------------------------------- | 01:42 |
happy-dazza | ubuntu release information | 01:42 |
happy-dazza | ---------------------------------------------------------------------- | 01:42 |
happy-dazza | # cat /etc/*release | 01:42 |
happy-dazza | DISTRIB_ID=Ubuntu | 01:42 |
happy-dazza | DISTRIB_RELEASE=22.04 | 01:42 |
happy-dazza | DISTRIB_CODENAME=jammy | 01:42 |
happy-dazza | DISTRIB_DESCRIPTION="Ubuntu 22.04.2 LTS" | 01:42 |
happy-dazza | PRETTY_NAME="Ubuntu 22.04.2 LTS" | 01:42 |
happy-dazza | NAME="Ubuntu" | 01:42 |
happy-dazza | VERSION_ID="22.04" | 01:42 |
happy-dazza | VERSION="22.04.2 LTS (Jammy Jellyfish)" | 01:42 |
happy-dazza | VERSION_CODENAME=jammy | 01:42 |
happy-dazza | ID=ubuntu | 01:42 |
happy-dazza | ID_LIKE=debian | 01:42 |
happy-dazza | HOME_URL="https://www.ubuntu.com/" | 01:42 |
happy-dazza | SUPPORT_URL="https://help.ubuntu.com/" | 01:42 |
happy-dazza | BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" | 01:42 |
happy-dazza | PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" | 01:42 |
happy-dazza | UBUNTU_CODENAME=jammy | 01:42 |
happy-dazza | ---------------------------------------------------------------------- | 01:42 |
happy-dazza | Hi All, I am getting a OfflineGenerationError following cloud-init on Digital Ocean Droplet (2VCPU/4VRAM/Ubuntu 22.04 LTS). Any guidance greatly appreciated. | 01:42 |
happy-dazza | Sorry, my first time using IRC. | 01:43 |
*** mhen_ is now known as mhen | 01:50 |
Generated by irclog2html.py 2.17.3 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!