Author: fapeeler
Date: Mon Feb 2 19:37:58 2015
New Revision: 1656551
URL: http://svn.apache.org/r1656551
Log:
CMS commit to vcl by fapeeler
Modified:
vcl/site/trunk/content/docs/installphpMyAdminVCL.mdtext
Modified: vcl/site/trunk/content/docs/installphpMyAdminVCL.mdtext
URL:
http://svn.apache.org/viewvc/vcl/site/trunk/content/docs/installphpMyAdminVCL.mdtext?rev=1656551&r1=1656550&r2=1656551&view=diff
==============================================================================
--- vcl/site/trunk/content/docs/installphpMyAdminVCL.mdtext (original)
+++ vcl/site/trunk/content/docs/installphpMyAdminVCL.mdtext Mon Feb 2 19:37:58
2015
@@ -24,7 +24,10 @@ the VCL web server.
1. Install via yum package manager ( CentOS and RedHat based distributions ).
Tested on clean installs of OS versions 6 and 7
- a. yum -y install epel-release phpMyAdmin
+ a. phpMyAdmin is located in the extras repository use, can use
epel-release package to add this repo
+
+ :::BashLexer
+ yum -y install epel-release; yum -y install phpMyAdmin
b. Move the phpMyAdmin directory to the web server directory:
@@ -40,7 +43,6 @@ the VCL web server.
sed -i "s|/usr/share/|/var/www/html/|g"
/etc/httpd/conf.d/phpMyAdmin.conf
-
* Follow the installation instructions in:
/var/www/html/phpmyadmin/Documentation.txt
<pre class="docnote">
@@ -48,7 +50,8 @@ the VCL web server.
At a minimum set the MySQL user and password in the config.inc.php file
Edit the /etc/phpMyAdmin/config.inc.php
- Set the follow variables to match the LockerWrtUser(typically vcluser) and
wrtPass from /etc/vcl/vcld.conf
+ Set the follow variables to match the LockerWrtUser(typically vcluser)
+ and wrtPass from /etc/vcl/vcld.conf
$cfg['Servers'][$i]['user'] = 'vcluser';
$cfg['Servers'][$i]['password'] = '';
@@ -56,6 +59,9 @@ the VCL web server.
* Restart httpd service and test
+ :::BashLexer
+ service httpd restart
+
If you receive 403-Forbidden errors after installing phpMyAdmin, the
problem is likely caused by SELinux. Run the following command to correct the
problem:
<pre class="docnote">
chcon -R -t httpd_sys_content_t /var/www/html/phpmyadmin