How to install Wordpress in a Linux system
WordPress is one of the popular Content Management System (CMS). It is an open source website creation tool build by PHP. Most the websites are running through this application. It is also available in FTP server or we can configure it and run from our own servers. In this article we going to see how to install and run Wordpress in our local system. For installing wordpress the server should be a LAMP configured server since wordpress is a PHP based application, For LAMP installation, For Centos, Click here for RPM based machines. For Ubuntu, Click here for Debian based machines. Installing wordpress, Download the wordpress opensource package from their official site Wordpress.Org . You can either download the zip file or tar.gz file. $ wget https://wordpress.org/latest.zip Unzip the file $ unzip latest.zip Move the unzipped file to the document root of your apache server. $ mv wordpress /usr/local/apache-2.4.37/htdocs/ Add a Vir...