You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just wanted to note a few hiccups I encountered during the installation and thought it would be useful to for others. Some of the issues are not related to this script but webrecorder code yet hope it's alright to list them here as well.
This one is really simple but might be overlooked by newbies like myself. After cloning this git, run the following command to enter nano editor and add your email address for SSL certification.
sudo nano playbook.yml and look for certbot_email and edit as appropriate.
Sometimes certbot returns SSL_"ST_INIT" error, for me the following command worked.
sudo pip install -U pyopenssl
Even after everything is installed correctly, some background applications (app, warcserver, recorder) refuse to start and returns ulimit error when run sudo docker logs app As mentioned here just comment ulimit on docker-compose.yml but be mindful not to comment out all the line and remember there are three instance where ulimit is called. Here is what worked for me:
Hello, thanks again for this great work.
I just wanted to note a few hiccups I encountered during the installation and thought it would be useful to for others. Some of the issues are not related to this script but webrecorder code yet hope it's alright to list them here as well.
sudo nano playbook.yml
and look for certbot_email and edit as appropriate.sudo pip install -U pyopenssl
ulimit
error when runsudo docker logs app
As mentioned here just commentulimit
ondocker-compose.yml
but be mindful not to comment out all the line and remember there are three instance whereulimit
is called. Here is what worked for me:original code:
command: ulimit -n 65536; uwsgi --need-app /code/apps/apiapp.ini
version that worked:
The text was updated successfully, but these errors were encountered: