Posted On April 1, 2019

Install phpMyAdmin in Centos 5.3

kimconnect 0 comments
blog.KimConnect.com >> Database , Linux >> Install phpMyAdmin in Centos 5.3
# Prerequisite: must install RPMForge Repo prior
 
yum install httpd php php-mysql php-gd php-mbstring php-mcrypt mysql mysql-server phpmyadmin
chkconfig httpd on
chkconfig mysqld on
service httpd start
service mysqld start
—-
vim /usr/share/phpmyadmin/config.inc.php
—-
$cfg[‘blowfish_secret’] = ‘[whatever]’; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */
—-
 
—- configure port 50000 open on firewall —
vim /etc/httpd/conf/httpd.conf
—- Add virtual website —-
Add:
Listen 50000
 
<VirtualHost *:50000>
        # Basic setup
        ServerAdmin [email protected]
        ServerName localhost
        ServerAlias 192.168.1.80
        DocumentRoot /usr/share/phpmyadmin
    # HTML documents, with indexing.
        <Directory />
        Options +Includes
        </Directory>
</VirtualHost>
 
vim /etc/httpd/conf.d/phpmyadmin.conf
—- To allow overrides —-
AllowOverride All  //inside the brackets
Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin
 
Create user root:
mysqladmin -u root password PASSWORD (mySQL ‘root’ is not the same as system root)

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Experimental selinux Settings

enable or disable selinux: vim /etc/sysconfig/selinux   setsebool -P httpd_read_user_content 1   grep nginx /var/log/audit/audit.log |…

How To Install Rancher Onto a Kubernetes Cluster

Step 1: Add Rancher Repo into Helm Source: https:// rancher.com/docs/rancher/v2.x/en/installation/install-rancher-on-k8s/ # Add Rancher repo helm…

How to Add Printers on Linux Mint 20

Overview: The Common Unix Printing System (CUPS) is an open source printing system developed by…