How to install phpmyadmin
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...