ajenti: Ajenti does not open after upgrading

root@srv1:~# apt-get upgrade 
Чтение списков пакетов… Готово
Построение дерева зависимостей       
Чтение информации о состоянии… Готово
Расчёт обновлений…Готово
Следующие пакеты устанавливались автоматически и больше не требуются:
  linux-headers-3.13.0-24 linux-headers-3.13.0-24-generic
  linux-headers-3.13.0-74 linux-headers-3.13.0-74-generic
  linux-headers-3.13.0-76 linux-headers-3.13.0-76-generic
  linux-image-3.13.0-24-generic linux-image-3.13.0-74-generic
  linux-image-3.13.0-76-generic linux-image-extra-3.13.0-24-generic
  linux-image-extra-3.13.0-74-generic linux-image-extra-3.13.0-76-generic
Для их удаления используйте «apt-get autoremove».
Пакеты, которые будут обновлены:
  ajenti python-reconfigure
обновлено 2, установлено 0 новых пакетов, для удаления отмечено 0 пакетов, и 0 пакетов не обновлено.
Необходимо скачать 1 723 kB/1 753 kB архивов.
После данной операции, объём занятого дискового пространства возрастёт на 1 409 kB.
Хотите продолжить? [Д/н] y
Получено:1 http://repo.ajenti.org/debian/ main/main ajenti all 1.2.23.6 [1 723 kB]
Получено 1 723 kБ за 0с (5 075 kБ/c)
(Чтение базы данных … на данный момент установлено 178919 файлов и каталогов.)
Preparing to unpack …/python-reconfigure_0.1.75_all.deb ...
Unpacking python-reconfigure (0.1.75) over (0.1.72) ...
Preparing to unpack …/ajenti_1.2.23.6_all.deb ...
Stopping Ajenti:
 * stopped
Unpacking ajenti (1.2.23.6) over (1.2.23.3) ...
Processing triggers for python-support (1.0.15) ...
Processing triggers for ureadahead (0.100.0-16) ...
Настраивается пакет python-reconfigure (0.1.75) …
Настраивается пакет ajenti (1.2.23.6) …
:: SSL is already configured
------------------------------------------------
Now start Ajenti with 'service ajenti restart'
Ajenti will listen on HTTPS port 8000 by default

Default username : root
Default password : admin
------------------------------------------------
Processing triggers for python-support (1.0.15) ...

После обновления панель не открывается - Веб-страница недоступна

About this issue

  • Original URL
  • State: closed
  • Created 8 years ago
  • Comments: 19

Commits related to this issue

Most upvoted comments

The issue is the SSL cert, so you just need a good one. I ended up getting myself a Cert from LetsEncrypt since my situation permitted me to. I then collapsed the key and cert PEM files into one and stowed that away for Ajenti.

    cat /etc/letsencrypt/live/example.com/cert.pem >> /etc/ajenti/le_ajenti.cert
    cat /etc/letsencrypt/live/example.com/privkey.pem >> /etc/ajenti/le_ajenti.cert

Once you have that just edit the Ajenti Config file.

    vi /etc/ajenti/config.json

Here’s a snittpet of the JSON

{



    "bind": {
        "host": "0.0.0.0",
        "port": 8000
    },
    "enable_feedback": true,
    "ssl": {
        "enable": true,
        "certificate_path": "/etc/ajenti/mpajenti.cert"
    },
    "authentication": true

}

Once done, just restart the Ajenti Service.

    systemctl restart ajenti