PHPMyAdmin
PHPMyAdmin for SME Server
Maintainer
JP Pialasse (aka Unnilennium)
Description
PHPMyAdmin is a tool written in PHP intended to handle the administration of MySQL over the Web.
Currently it can create and drop databases, create/drop/alter tables, delete/edit/add fields, execute any SQL statement, manage keys on fields, manage privileges,export data into various formats.
This contrib provides PHPMyAdmin for SME Server.
Installation
For SME8
This contrib can be found in the smecontribs repository. To install this contrib you will have to get shell access as root user, and issue the following command:
yum --enablerepo=smecontribs install smeserver-phpmyadmin
On sme8 this will also install the dependencies libmcrypt, php53-mcrypt, php53-php-gettext & phpMyAdmin3
then do either
signal-event post-upgrade; signal-event reboot
or
expand-template /etc/phpMyAdmin/config.inc.php expand-template /etc/httpd/conf/httpd.conf service httpd-e-smith restart
For SME9
This contrib is in the stephdl and epel, you have to enable it before to install the contrib
db yum_repositories set stephdl repository \ BaseURL http://mirror.de-labrusse.fr/smeserver/\$releasever \ EnableGroups no GPGCheck yes \ Name "Mirror de Labrusse" \ GPGKey http://mirror.de-labrusse.fr/RPM-GPG-KEY \ Visible yes status disabled
/sbin/e-smith/db yum_repositories set epel repository \ Name 'Epel - EL6' \ BaseUrl 'http://download.fedoraproject.org/pub/epel/6/$basearch' \ MirrorList 'http://mirrors.fedoraproject.org/mirrorlist?repo=epel-6&arch=$basearch' \ EnableGroups no \ GPGCheck yes \ GPGKey http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL \ Visible no \ status disabled
After adding it to the database updating the configuration file is required:
signal-event yum-modify
yum install --enablerepo=stephdl,epel smeserver-phpmyadmin
then reconfigure
signal-event post-upgrade; signal-event reboot
or if you don't want to restart your server
signal-event phpmyadmin-update
Configuration
By default, access to phpmyadmin is restricted to the local network, and to any trusted networks. To make phpmyadmin accessible to external networks (the internet), the configuration parameter for access has to be changed. Changing this parameter requires you to use the SME Server shell.
To view the current access setting:
config show phpmyadmin
This would output something like this:
phpmyadmin=configuration access=private adminaccess=enabled multiaccess=disabled
To change the current setting:
private or public access
config setprop phpmyadmin access (private|public) signal-event ibay-modify
admin access only (default)
set to enabled (enabled|disabled) to use with the url https://your-sme-ip/phpmyadmin with the SME admin account and its password.
config setprop phpmyadmin adminaccess enabled
and do these commands
expand-template /etc/phpMyAdmin/config.inc.php expand-template /etc/httpd/conf/httpd.conf service httpd-e-smith restart
multiuser access
set to enabled (enabled|disabled) to use with the url https://your-sme-ip/phpmyadmin-multi with the Mysql user account of a database and its password. Only the database concerned is seen in the phpmyadmin management web page.
config setprop phpmyadmin multiaccess enabled
and do these commands
expand-template /etc/phpMyAdmin/config.inc.php expand-template /etc/httpd/conf/httpd.conf service httpd-e-smith restart
prevent the admin access
in certain cases you may want to forbid the adminaccess and allow only the multiaccess, so you have to set the adminaccess to disabled and the multiaccess to enabled
config setprop phpmyadmin adminaccess disabled config setprop phpmyadmin multiaccess enabled
and do these commands
expand-template /etc/phpMyAdmin/config.inc.php expand-template /etc/httpd/conf/httpd.conf service httpd-e-smith restart
therefore the access for multi user will be available through the url https://your-sme-ip/phpmyadmin (instead of phpmyadmin-multi)
specific SME Server 9 settings
Only for SME9 you have some more settings available by DB
# config show phpmyadmin phpmyadmin=configuration DbName=phpmyadmin DbPassword=rvAd9ShvG2GyiWPXiH+oAK3/yk4GwCxDW5PWzy2CWdtMG7zu3SSH7XkJUEV7EpY8HSVaCCHKL//2 DbUser=phpmyadmin access=private adminaccess=enabled multiaccess=disabled sqladminPassword=mcJ1Tad4I0XENJrl+sfzkKjS8rs4Bq6C0MsjbTkgyv3evFLrPgrXy8eP1u23vANuGtSkQ3//8tmM status=enabled
- status
You can enable/disable phpmyadmin
config setprop phpmyadmin status disabled signal-event phpmyadmin-update
- sqladmin
You have a super sql user when you use the cookies authentication mode (phpmyadmin-multi or multiaccess enabled) login : sqladmin password : content of the db sqladminPassword
Additional information
- NEVER MODIFY MYSQL ROOT user PASSWORD
- Adminaccess with admin username/password via: https://yourdomain/phpmyadmin
- multiaccess with the Mysql user account of a database and its password via: https://your-sme-ip/phpmyadmin-multi (or https://yourdomain/phpmyadmin if admin access disabled)
- The password is changed using the privileges section of phpmyadmin. (Locate the admin user and assign a new password there).
- Did we mention : NEVER MODIFY MYSQL ROOT user PASSWORD
More information about PhpMyAdmin can be found on the PHPMyAdmin site.
Uninstall
yum remove smeserver-phpmyadmin phpMyAdmin3 libmcrypt php53-mcrypt php53-php-gettext signal-event post-upgrade; signal-event reboot
Bugs
Please raise bugs under the SME-Contribs section in bugzilla and select the smeserver-phpmyadmin component or use this link .