You are here
Error message
Deprecated function: The each() function is deprecated. This message will be suppressed on further calls in menu_set_active_trail() (line 2396 of /home/blackh31/public_html/BLACKHILL/includes/menu.inc).
Blog
published by admin on Wed, 09/30/2015 - 17:53
After installing Subversion in an Amazon EC2 instance, set the Security group to allow SSH from your IP and SVN from the EC2 instance's IP.
Connect to the Amazon EC2 instance using the key provided by Amazon and forward the Local SVN port to the Remote SVN port.
ssh -i ~/.ssh/AWS-ubuntu-key.pem ubuntu@xxx.xxx.xxx.xxx -L 3690:xxx.xxx.xxx.xxx:3690
You should now be able to connect to your remote SVN server via SSH tunnel using:
svn co svn://localhost/repository
published by admin on Sat, 04/11/2015 - 20:36
One of the ideas behind Docker containers is that you create a sandbox environment segregated from the host environment in such a way that the configuration of the container can be guaranteed. However, when planning a Docker deployment, it can be useful to log into the container to troubleshoot unforeseen issues. As long as the lessons learned get conveyed into the Dockerfile and the image is rebuilt, then the original containerization intent can be achieved.
# show full id
sudo docker ps --notrunc
# use lxc-attach
sudo lxc-attach -n <full-id>
published by admin on Sat, 04/11/2015 - 20:36
If you like to install and update Webmin via APT, edit the /etc/apt/sources.list file on your system and add the lines :
deb http://download.webmin.com/download/repository sarge contrib
deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib
You should also fetch and install my GPG key with which the repository is signed, with the commands :
cd /root
wget http://www.webmin.com/jcameron-key.asc
apt-key add jcameron-key.asc
You will now be able to install with the commands :
published by admin on Sat, 04/11/2015 - 20:35
published by admin on Sat, 04/11/2015 - 20:34
published by admin on Sat, 04/11/2015 - 20:34
To create a Docker Registry, execute the following CLI to download the stackbrew/registry image and run it.
$ sudo docker run -d -p 127.0.0.1:5000:5000 stackbrew/registry
Now, determine what the image id is for the Docker image you want to store within the registry:
published by admin on Sat, 04/11/2015 - 20:33
published by admin on Sat, 04/11/2015 - 20:33
Putting the M in LAMP
In Part I we built a Dockerfile to generate the LAP part of a LAMP server. Now, all we need to do is add instructions to a Dockerfile in order to install and start MySQL.
published by admin on Sat, 04/11/2015 - 20:33
Putting the LAP in LAMP
Assuming you have Docker installed and have a docker user within a docker group, you're ready to set up a Linux-Apache-MySQL-PHP (LAMP) Server.
As root, launch a container from the ubuntu image (not base):
$ sudo docker run -i -t ubuntu \bin\bash
In the launched container, install PHP and Apache2.
# apt-get install php5
# apt-get install apache2
Assuming everything goes well, exit the container and view the list of containers with "sudo docker ps -a".
published by admin on Sat, 04/11/2015 - 20:32
The docker daemon always runs as root, and since docker version 0.5.2, docker binds to a Unix socket instead of a TCP port. By default that Unix socket is owned by the user root, and so, by default, you can access it with sudo.
Pages