How to manage the MySQL database using phpMyAdmin: Difference between revisions

From wiki
Jump to navigation Jump to search
imported>Franklin
m (2.11.9 auth update)
imported>Jamieshaw
m (→‎Step 3:: Text editor info for Mac users)
Line 86: Line 86:
|
|
===Step 3:===
===Step 3:===
Open '''config.default.php''' in [http://notepad-plus.sourceforge.net/uk/site.htm Notepad++] or Windows WordPad, or another ''advanced'' text editor.<br>It is not recommended to use Windows Notepad, as this program has the probability of corrupting the php file.
Open '''config.default.php'''. Windows users may wish to use [http://notepad-plus.sourceforge.net/uk/site.htm Notepad++] or Windows WordPad, or another ''advanced'' text editor. It is not recommended to use Windows Notepad, as this program has the probability of corrupting the php file. Mac users can use the supplied TextEdit, the shell, or another text editor such as [http://www.barebones.com/products/textwrangler TextWrangler].
||
||
|-<!----Begin Row---->
|-<!----Begin Row---->
|
|
===Step 4:===
===Step 4:===
Browse to line 144, where it contains
Browse to line 144, where it contains

Revision as of 20:14, 1 October 2008

This guide will cover how to manage the MySQL database of the Synology Server using phpMyAdmin, a free tool which can be downloaded from the Internet.

This guide assumes the following

  • That the Web Station and MySQL service are enabled on the Synology Server
  • That you are familiar with the Synology Management menu, and have experience with manipulating the security permissions of the Synology Server
  • That you are familiar with file management tasks, such as copying data from one folder to another.


Initial Setup of phpMyAdmin

  1. Download phpMyAdmin
  2. Decompress the zip file to reveal the program folder
  3. Rename the program folder from phpMyAdmin-2.11.2.2-all-languages-utf-8-only to phpMyAdmin
    • Note: phpMyAdmin-2.11.2.2-all-languages-utf-8-only is an example.
  4. Move phpMyAdmin to the Synology Server's Web folder, such as \\synologyserver\web\
    • Note: Final folder structure is \\synologyserver\web\phpMyAdmin
  5. Point a web-browser to http://synologyserver/phpmyadmin/
  6. The finished result






Securing the phpMyAdmin Installation

By default, phpMyAdmin does not feature a password to protect the MySQL database, this guide will aim to resolve that error.

Step 1:

Login to phpMyAdmin and click on Privileges

Step 2:

Note the selected user, this password will need to be secured. Click on the edit key, denoted by the arrow.

Step 3:

Locate the password field, update the password field. Once finished, click on the "Go" button the right hand side of the form.

Step 4:

Password successfully changed for root@localhost

Step 5:

Click on the Home key to refresh the phpMyAdmin Windows

Step 6:

phpMyAdmin will display error 1045, this is normal and proceed to the next portion of this guide


Correcting phpMyAdmin error 1045

This guide will cover updating the security permissions of phpMyAdmin to resolve error 1045

Step 1:

Browse to \\synologyserver\web\phpMyAdmin\libraries

Step 2:

Create a backup copy of config.default.php, name it config.default.php.bak for example

Step 3:

Open config.default.php. Windows users may wish to use Notepad++ or Windows WordPad, or another advanced text editor. It is not recommended to use Windows Notepad, as this program has the probability of corrupting the php file. Mac users can use the supplied TextEdit, the shell, or another text editor such as TextWrangler.

Step 4:

Browse to line 144, where it contains

$cfg['Servers'][$i]['auth_type'] = 'config';
  • Note, for version 2.11.9, browse to line 159. If the above string is not present, please search for it using the Editor's Search function.

Step 5:

Change that line to reflect the following

$cfg['Servers'][$i]['auth_type'] = 'http';

Step 6:

Save the config.default.php and exit the text editor. Refresh the web browser and it should present a login window. Enter the user root and the password for root

Step 7:

After logging in and viewing the priledges once again, it is recommended to change the password of root@SynologyServer


Notes

phpMyAdmin also features a setup script, which can be used to perform initial setup, it can be accessed here: http://synologyserver/phpmyadmin/scripts/setup.php
For more advanced information on using phpMyAdmin, please refer to the following links