Menu Close

*Update, 2023: Please note portions of this may be outdated as it was written in 2018. However, the core options remain though many will opt for a node or containerized approach rather than the traditional LAMP stack.

The portion about being self-hosted are no longer true as I moved to Montana and internet there is well, slow. So, I now use a third party hosting provider. Nevertheless, I did at one time have everything hosted on my own network and plan to in the future as well.

I run this website and most of the systems it relies on are off of my own, self hosted servers. These are 2 Raspberry Pi computers. Here’s links to the guides I’ve used to install Ubuntu Server, and LAMP onto them. They run extremely well and are very reliable, besides the issues associated with using consumer-grade SD cards for storage and their lack of RAM or processing power.

Install Ubuntu, I highly recommend using Ubuntu Server for ARM. This guide assumes you have a basic knowledge of flashing images to SD cards using programs like Etcher, and some familiarity with a Linux command line. If you don’t that’s ok, just follow the commands and everything should be fine.

1. Install Ubuntu onto your Raspberry Pi initially. Write the .img file you download to a MicroSD card using Etcher (I prefer an old version of Win32DiskImager)or similar software. 

https://ubuntu-pi-flavour-maker.org/download/

You’ll need a keyboard, mouse, and monitor temporarily connected to the device for the initial install. 
2.  Install Open SSH for remote access.

$ sudo apt-get install -y openssh-server

3. Enable the SSH Server using systemctl

$ sudo systemctl start ssh

4. Make OpenSSH a process that starts automatically on boot so we can remote access our server “headless”.

$ sudo systemctl enable ssh.socket

These commands above enable SSH-Server from the terminal and make it auto-start on reboot. SSH allows us to remotely control a computer from the command line over the internet- not just your local network.

5. Now remotely connect to your server at it’s local IP address from another computer on the same network. You can find it’s IP address by looking at your router’s configuration page or executing “ip addr show” from terminal on the Pi. You’ll login using the username and password you setup when installing Ubuntu. To do this remotely you’ll have to forward the SSH port used then route traffic from your DNS provider through that port to the SSH server. This process not only exposes the server more if not properly configured but also is for much more advanced users.

6. Remove all unneeded programs from Ubuntu. It’s hard for me to put together a comprehensive list for this, but in short, you need to remove: (Note, some installations come with most extras pre-removed from the distro)

  • The Desktop and related functions
  • All non-essential programs (FireFox, Solitare, OpenOffice, etc.
  • Any power-managment utilities.
  • File explorer.

7. Now install LAMP (Linux, Apache, MySQL, PHP) using this guide from DigitalOcean:

https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-ubuntu-16-04

I recommend installing some other software (not yet included in this guide) to help you administer your completed server.

  • vsftpd – This is a fast and light FTP server for remote filesystem access.
  • Adminer or PHPMyAdmin – Adminer is a one page, lightweight MySQL database management utility. It runs as a virtual host on Apache Webserver, (for example yoursite.com/adminer). PHPMyAdmin is more feature rich, but is substantially larger and more resource intensive. It installs it’s own webserver (which is great if Apache is not working and you still need to access and manage databases). I recommend PHPMyAdmin.
  • Webmin – Webmin is a full management dashboard for Linux. It has modules for controlling Apache, SSH, MySQL, and more. It can control all aspects of a Linux server from one place, but it does take up quite a few resources to run. I think the trade-off is worth the benefits, though, as so many settings are in one easy to use interface.

That’s essentially it! You have your own self-hosted website up and running.