Posts

Showing posts with the label LAMP server

How to install phpmyadmin

Image
How to install phpmyadmin Phpmyadmin   is an opensource tool to manage MySQL database using web browser. it can perform almost all tasks such as creating,deleting,modifying databases,users,tables and fields . This guide helps you to install phpmyadmin on centos 7. it contains step by step installation through YUM using EPEL repository. Prerequisite – LAMP server Before starting phpmyadmin installation, You must setup LAMP server on your centos 7 server. Copy and paste below command in terminal for quick setup . At the end, you need to provide some inputs . » leave blank for current mysql password. » provide new password and press enter for the rest. yum -y install httpd mariadb-server mariadb php php-mysql php-gd php-pear php-mbstring && systemctl start httpd.service && systemctl enable httpd.service && systemctl start mariadb && systemctl enable mariadb && firewall-cmd --permanent --add-service http && systemctl restart firew...

How to install LAMP server

Image
How to install LAMP server LAMP is a group of open source softwares installed together to build a webserver. LAMP refers to Linux (Operating system), Apache (Web service), MySQL/MariaDB (Database) , PHP (Programming language). This guide helps you to install LAMP server on centos 7. Before starting installation, you need to setup Static IP and hostname . You can also refer this guide –   Setup network on centos 7   to setup static ip and hostname. Install LAMP server on centos 7. 1.   Apache installation . 2.   Mysql installation . 3.   PHP installation . 4.   Testing all together . let’s start Apache installation Step 1 »   Update the repositories. [root@krizna ~]# yum check-update Step 2 »   After updating repository, issue the below command to install apache package. [root@krizna ~]# yum install httpd Step 3 »   Now start the service and enable it at startup. Command to start the service [root@krizna ~]# systemctl start httpd.se...