Trying to install Ajenti in Debian 8 (Jessie), but problem occurs: cannot access to panel. It just because SSL problem.
How to fix it? Let's try:
Install and upgrade gevent and dependencies:
apt-get install python-dev python-greenlet python-gevent python-vte python openssl python-crypto python-appindicator
apt-get install python-setuptools
easy_install -U gevent
Then edit port 3600 in two files:
nano /usr/lib/python2.7/dist-packages/socketio/handler.py
nano /usr/lib/python2.7/dist-packages/socketio/transports.py
Add "" to 3600 port, becomes "3600".
Now edit SSL:
nano /usr/lib/python2.7/dist-packages/gevent/ssl.py
Change ctx = SSLContext(ssl_version)
to ctx = __ssl__.SSLContext(ssl_version)
Then restart ajenti:
service ajenti restart
Ajenti Panel in https://ip-address:8000 now could be open.**
Comments