Install Apache, PHP And MariaDB On CentOS

This tutorial shows how you can install an Apache2 webserver on a CentOS 7.0 server with PHP5 support (mod_php) and MariaDB (MySQL fork) support. LAMP is short for Linux, Apache, MySQL, PHP but actualy, it’s a CAMP: CentOS, Apache, MariaDB, PHP.  Install Apache server: # yum -y install httpd after resolving depedencies (apr, httpd tools, … Read moreInstall Apache, PHP And MariaDB On CentOS

Installing SSH server On CentOS

You need to install the following packages (which are installed by default until and unless you removed it or skipped it while installing CentOS) openssh-clients : The OpenSSH client applications openssh-server : The OpenSSH server daemon   OpenSSH Installations under CentOS Linux To install the server and client type: yum -y install openssh-server openssh-clients Start … Read moreInstalling SSH server On CentOS