Amazon Elastic IP The maximum number of addresses has been reached.

When assigning Elastic IP in Amazon AWS, I get an error The maximum number of addresses has been reached. This is because Amazon only allows 5 Elastic IP address per region. You can see the AWS service limits at http://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html You can open a support ticket with Amazon, they will increase the Elastic IP limit. … Read more

WordPress bitnami

Install LetsEncrypt SSL on Bitnami To stop/start service use ctlscript.sh root@ip-172-31-26-46:~# /opt/bitnami/ctlscript.sh usage: /opt/bitnami/ctlscript.sh help /opt/bitnami/ctlscript.sh (start|stop|restart|status) /opt/bitnami/ctlscript.sh (start|stop|restart|status) mysql /opt/bitnami/ctlscript.sh (start|stop|restart|status) php-fpm /opt/bitnami/ctlscript.sh (start|stop|restart|status) apache help – this screen start – start the service(s) stop – stop the service(s) restart – restart or start the service(s) status – show the status of the service(s) … Read more

Amazon EFS

Amazon EFS can be used to mount same drive on multiple EC2 instances allowing you to make the website scale on multiple web servers. To mount EFS drive on Ubuntu, you need to install To mount a EFS drive, run Here is fstab entry for auto-mounting the EFS file system on boot. In this example, … Read more

rancher

Rancher is an open source container management platform. https://rancher.com To install rancher, you need to install docker. Once you have docker installed and running, run docker run -d –restart=unless-stopped -p 80:80 -p 443:443 –privileged rancher/rancher Now you will be able to access your Rancher installation at https://your-server-ip On your first visit, you will be asked … Read more