Stefan Kecskes

Never stop learning, because life never stops teaching

Setup Virtual Host

Today we will be creating virtual host on Apache2 web server. As one Apache2 web server can serve multiple websites we can later add more configs and tell Apache2 web server to serve all the websites from single unix instance.

Edit crontab with NANO

I often need to add some scheduled job on server. I mean something that runs periodically, like every day or every hour. You simply add a command that will run as scheduled and when I say command it can be anything that your system is capable of running. Therefore, it can be shell command or script or even a java application. But let’s look closer how could we set up our own cron task on linux.

LAMP stack

LAMP stands for Linux - Apache - MySql - PHP. This is basically everything you need to have a fully working testing server on your machine.

Install SSH key

Part 2

Today we are going to install the public key on server, that we want to use. The point of installing the Public key is to get to the target server, locate the authorized_keys file (usually in home directory inside .ssh folder) and add our public key to this file.

Generate SSH keys on Linux

Part 1

SSH is a cryptographic network protocol for initiating text-based shell sessions for secure data communication and/or remote command execution.