Report this

What is the reason for this report?

Trying to install Ajenti admin

Posted on May 3, 2015

Hi I have followed this tutorial https://www.digitalocean.com/community/tutorials/how-to-install-ajenti-control-panel-on-ubuntu-13-04

I am running Ubuntu 15.04 the install went fine I added port 8000 to the firewall but when I browse to the site I get this error

This web page is not available

ERR_CONNECTION_REFUSED

:~# sudo netstat -plutn | grep 8000 tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN

this is a fresh install of ubuntu with webserver installed WAMP

any idea why it will not load ?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

I have run a fresh install centos 7 and then followed this guide

http://support.ajenti.org/topic/349866-installing-on-centosrhel/

auto install and manual install when I try and run service ajenti restart

I get Failed to issue method call: Unit ajenti.service failed to load: No such file or directory.

ok so I installed ubuntu 14.04 and the install worked fine I guess there is a problem with 15.04 as I followed the same steps

@mikejsaunders

Have you tried disabling the firewall? IIRC, Ajenti has an option to manage firewall rules, so it’s possible that if you’re running, for example, UFW (which uses iptables) and Ajenti uses another, they are conflicting. Just one possible scenario. I’d have to install Ajenti to see as I don’t have an instance spun up for it.

You can check the status of UFW by:

sudo ufw status

If enabled, that’ll give you a list of ports available. If it’s not enabled, you can use the following to enable Port 8000, set the Default Policy to Deny Incoming and then enable UFW. I would also run the following to add your SSH Port so you’re not disconnected:

sudo ufw allow [SSH-PORT]/tcp

sudo ufw allow 8000/tcp
sudo ufw default deny incoming
sudo ufw enable

the /tcp at the end simply specifies the type of connection allowed (udp would also would and by default, if you don’t specify, both tcp and udp will be enabled for each port allowed).

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.