Initial Server Setup with LAMP
The Basics
When you first begin to access your KaOS install for use as a server, there are a few early steps you should take to make it more secure. Some of the first tasks can include configuring SSH.
The LAMP stack is a group of open source software used to get web servers up and running. The acronym stands for Linux, Apache, MySQL, and PHP.
Configure SSH
Time first to make accessing the server over SSH more secure.
Open the configuration file. The default cli editor for KaOS will be used in this Guide, replace micro with nano or vim to your liking.
Find the following sections and change the information where applicable. Be sure to uncomment the lines as well, otherwise the changes will not take effect. (You can find words and phrases in the file by pressing Control-F)
Port: Although port 22 is the default, you can change this to any number between 1025 and 65536. In this example, I am using port 25000. Make sure you make a note of the new port number. You will need it to log in in the future. This change will make it more difficult for unauthorized people to log in.
PermitRootLogin: change this from yes to no to stop future root login. You will now only be logging on as the new user.
Reload SSH, and it will implement the new ports and settings.
To test the new settings, open a new terminal window and login as your user.
Don’t forget to include the new port number.
Your prompt should now say:
Installing LAMP
Install Apache
Apache is a free open source software that runs over 50% of the world’s web servers.
As always, make sure the system is fully up to date before installing any:
Once the update is complete, we can install Apache:
After Apache is installed, we need to make a couple of changes in the configuration.
Open up the apache configuration file:
Comment out the unique_id_module (you can use ctrl F
to find it quickly):
#LoadModule unique_id_module modules/mod_unique_id.so
Restart Apache:
During the apache restart, you may get a notice that says the following:
Although this alert does not interfere with the apache launch, you can easily eliminate it if you like by adding your hostname to your configuration.
Open up the hosts file:
Add your hostname to the end of the line beginning with 127.0.0.1:
Subsequent restarts of Apache will no longer display that message. With that, Apache is now installed on your server. Directing your browser to your server’s IP address (http://12.34.56.789) will display an auto-index directory. You can quickly try out a sample page by adding an index.html file to KaOS’s document root directory, located within srv/http
:
You can visit the placeholder page by going to your server’s IP address in your browser.
How to Find your Server’s IP address
You can run the following command to reveal your server’s IP address.
Install MariaDB
MariaDB is a powerful database management system used for organizing and retrieving data. It is a drop in replacement of MySQL.
Many commands will still use mysql
To install MariaDB, open terminal and type in these commands:
Hit enter if it asks you anything, unless you know you don’t want the defaults.
Once you have installed MariaDB, start it by running
Finish up by running the MariaDB set up script:
The process will ask you for your current MySQL root password (not to be confused with your server password) and, since it has not yet been set, simply press enter.
When prompted, Set root password?
type Y
, and afterwards enter in your new MySQL root password.
After that it’s easiest just to say Yes
to all the options. At the end, MySQL will reload and implement the new changes.
Once you’re done installing MariaDB, finish the LAMP stack by installing PHP.
Install PHP
PHP is an open source web scripting language that is widely used to build dynamic webpages.
To install PHP, open terminal and type in this command.
PHP should also be added to the apache configuration file:
Paste in this text block within the config.
When loading php7_module the httpd.service often fails with this error in the journal:
For this you need to replace mpm_event_module with mpm_prefork_module:
LoadModule mpm_event_module modules/mod_mpm_event.so
Now you should be done configuring /etc/httpd/conf/httpd.conf
so save this file and restart Apache:
See your PHP Config and Add Programs to Startup
After LAMP is completely installed, we can take a look and see the PHP details by creating a quick php info page
To set this up, first create a new blank file:
Add in the following line:
Then Save and Exit.
Visit your php info page (make sure you replace the example ip address with your correct one): http://12.34.56.789/info.php
To close out the LAMP installation, add the apache server and MySQL daemons to the list of programs that run upon server startup:
Congratulations, you have now installed the LAMP server on KaOS!