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!
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
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).
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.