Differences between revisions 4 and 5
Revision 4 as of 2021-04-20 12:33:30
Size: 541
Comment: minor formatting and external link added
Revision 5 as of 2021-04-21 06:03:24
Size: 603
Editor: PaulWise
Comment: cleanups
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
Line 9: Line 10:
To install adminer
I
nstall DebianPackage:adminer:
Line 11: Line 14:
# apt-get install adminer $ sudo apt install adminer
Line 15: Line 18:
create /etc/apache2/conf-available/adminer.conf and create alias
C
reate {{{/etc/apache2/conf-available/adminer.conf}}} with an alias:
Line 17: Line 22:
alias /adminer /usr/share/adminer/adminer/ Alias /adminer /usr/share/adminer/adminer/
Line 20: Line 25:
enable configuration Enable the configuration:
Line 22: Line 28:
# /usr/sbin/a2enconf adminer.conf $ sudo a2enconf adminer.conf
Line 25: Line 31:
reload apache Reload Apache web server:
Line 27: Line 34:
# systemctl reload apache2 $ sudo service apache2 reload
Line 32: Line 39:
= See also =
Line 33: Line 41:
= See also =
* [[https://www.adminer.org/]]
 * [[https://www.adminer.org/|Adminer website]]

Adminer Overview

Adminer is a Database management tool.

Installation

Install adminer:

$ sudo apt install adminer

Configuration

Create /etc/apache2/conf-available/adminer.conf with an alias:

Alias /adminer /usr/share/adminer/adminer/

Enable the configuration:

$ sudo a2enconf adminer.conf

Reload Apache web server:

$ sudo service apache2 reload

you can access http://localhost/adminer

See also