Admin tools

Hi, I am really liking your scripts. After a couple of days of destroying, redeploying my DO droplets, and always running into permissions issues with media uploads I was very appreciative of such a quick and easy way of setting up my domains.

Regarding the admin tools, I finally found the documentation about installing the admin stack. Thank you.

However is there some documentation that details how to access all of those tools. I did find a thread that directed someone to the url https://domain.com:22222/db/pma to access phpmyadmin. But are there other urls to the various tools available?

Also is there a way to install phpmyadmin with configuration storage enabled?

Thanks again. jim

@jimlongo

You can use https://domain.com:22222/ link to access all the Admin tools.

You can refer https://rtcamp.com/easyengine/docs/admin-tools-22222/ for more details.

Currently, there is no option for auto enabled phpMyAdmin configuration storage enabled. You will have to manually enable it.

To enable it manually you can refer this tutorial: https://docs.phpmyadmin.net/en/latest/setup.html#phpmyadmin-configuration-storage

Thank you. I’ve created the tables, I have the user ‘pma’ and updated config.inc.php but I keep getting the error in phpmyadmin

$cfg['Servers'][$i]['users'] ...	not OK
$cfg['Servers'][$i]['usergroups'] ...	OK
Configurable menus: Disabled

Here is the block from config.inc.php

/* User used to manipulate with storage */
$cfg['Servers'][$i]['controlhost'] = 'localhost';
$cfg['Servers'][$i]['controluser'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = 'xxxxxxxxxxxxxxx';

/* Storage database and tables */
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
$cfg['Servers'][$i]['relation'] = 'pma__relation';
$cfg['Servers'][$i]['table_info'] = 'pma__table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma__column_info';
$cfg['Servers'][$i]['history'] = 'pma__history';
$cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
$cfg['Servers'][$i]['tracking'] = 'pma__tracking';
$cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords';
$cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
$cfg['Servers'][$i]['recent'] = 'pma__recent';
$cgf['Servers'][$i]['users'] = 'pma__users';
$cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
$cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
$cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
$cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';

Do you see anything wrong there?