From 46141b7e50447d61fe1ddd8ad7656b9db9442b6c Mon Sep 17 00:00:00 2001 From: cytopia Date: Fri, 28 Dec 2018 22:44:50 +0100 Subject: [PATCH] Update readthedocs for phpPgAdmin --- docs/_includes/links/tools.rst | 6 ++++++ docs/features.rst | 5 +++-- docs/getting-started/devilbox-intranet.rst | 7 +++++++ docs/maintenance/backup-and-restore-pgsql.rst | 16 ++++++++++++++++ 4 files changed, 32 insertions(+), 2 deletions(-) diff --git a/docs/_includes/links/tools.rst b/docs/_includes/links/tools.rst index 85d3da96..6cb2cba8 100644 --- a/docs/_includes/links/tools.rst +++ b/docs/_includes/links/tools.rst @@ -267,6 +267,12 @@ phpMyAdmin +.. |ext_lnk_tool_phppgadmin| raw:: html + + + phpPgAdmin + + .. |ext_lnk_tool_phpredmin| raw:: html diff --git a/docs/features.rst b/docs/features.rst index a648c2db..58cd76cc 100644 --- a/docs/features.rst +++ b/docs/features.rst @@ -107,8 +107,9 @@ port exposures, hostnames and any errors including how they can be resolved. Third-party tools ^^^^^^^^^^^^^^^^^ -Mandatory web projects are also shipped: |ext_lnk_tool_phpmyadmin|, |ext_lnk_tool_adminer| and -|ext_lnk_tool_opcachegui| as well as a web GUI to view all sent emails. +Mandatory web projects are also shipped: |ext_lnk_tool_phpmyadmin|, |ext_lnk_tool_phppgadmin|, +|ext_lnk_tool_phpredmin|, |ext_lnk_tool_adminer| and |ext_lnk_tool_opcachegui| as well as a web GUI +to view all sent emails. Dockerized diff --git a/docs/getting-started/devilbox-intranet.rst b/docs/getting-started/devilbox-intranet.rst index 1de0d375..3ebc8e37 100644 --- a/docs/getting-started/devilbox-intranet.rst +++ b/docs/getting-started/devilbox-intranet.rst @@ -95,6 +95,13 @@ columns, relations, indexes, users, permissions, etc) can be performed via the u while you still have the ability to directly execute any SQL statement. +phpPgAdmin +---------- + +|ext_lnk_tool_phppgadmin| is a web-based administration tool for PostgreSQL. It is perfect for +PostgreSQL DBAs, newbies, and hosting services. + + phpRedMin ---------- diff --git a/docs/maintenance/backup-and-restore-pgsql.rst b/docs/maintenance/backup-and-restore-pgsql.rst index d16f22c2..a7dba475 100644 --- a/docs/maintenance/backup-and-restore-pgsql.rst +++ b/docs/maintenance/backup-and-restore-pgsql.rst @@ -40,6 +40,14 @@ To backup a database named ``my_db_name`` follow the below listed example: # Run pg_dump devilbox@php-7.1.6 in /shared/httpd $ pg_dump -h pgsql -U postgres -W my_db_name > /shared/backups/pgsql/my_db_name.sql + +phpPgAdmin +---------- + +If you do not like to use the command line for backups, you can use |ext_lnk_tool_phppgadmin|. +It comes bundled with the devilbox intranet. + + Adminer ------- @@ -100,6 +108,14 @@ Here are a few examples for different file types: devilbox@php-7.1.6 in /shared/httpd $ tar xzOf /shared/backups/pgsql/my_db_name.sql.tar.gz | psql -h pgsql -U postgres -W my_db_name +phpPgAdmin +---------- + +|ext_lnk_tool_phppgadmin| supports importing many different formats out-of-the-box. +Simply select the compressed or uncompressed file and press ``Go`` in the import section of +the web interface. + + Adminer -------