Questions tagged [adminer]

Adminer is an open-source database management tool distributed in a single PHP file. It supports MySQL, PostgreSQL, SQLite, MS SQL and Oracle. It focuses mainly on security, user experience, performance and feature set.

Overview

Adminer (formerly phpMinAdmin) is a full-featured database management tool written in PHP. Conversely to , it consist of a single file ready to deploy to the target server.
It is available for and .

It focuses mainly on :

  1. security
  2. User experience
  3. Performance
  4. Feature set
  5. Size

Features

  • Connect to a database server with username and password
  • Select an existing database or create a new one
  • List fields, indexes, foreign keys and triggers of table
  • Change name, engine, collation, auto_increment and comment of table
  • Alter name, type, collation, comment and default values of columns
  • Add and drop tables and columns
  • Create, alter, drop and search by indexes including fulltext
  • Create, alter, drop and link lists by foreign keys
  • Create, alter, drop and select from views
  • Create, alter, drop and call stored procedures and functions
  • Create, alter and drop triggers
  • List data in tables with search, aggregate, sort and limit results
  • Insert new records, update and delete the existing ones
  • Supports all data types, blobs through file transfer
  • Execute any SQL command from a text field or a file
  • Export table structure, data, views, routines, databases to SQL or CSV
  • Print database schema connected by foreign keys
  • Show processes and kill them
  • Display users and rights and change them
  • Display variables with links to documentation
  • Manage events and table partitions (MySQL 5.1)
  • Schemas, sequences, user types (PostgreSQL)
  • Extensive customization options

Requirements

  • Works with MySQL, PostgreSQL, SQLite, MS SQL, Oracle, SimpleDB, Elasticsearch, MongoDB
  • Supports PHP 5 with enabled sessions
  • Available in Arabic, Catalan, Chinese, Czech, Dutch, English, Estonian, French, German, Hungarian, Italian, Japanese, Lithuanian, Persian, Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovenian, Spanish, Tamil, Turkish, Ukrainian, ... (32)
  • Free for commercial and non-commercial use (Apache License or GPL 2)

Links

143 questions
1
vote
3 answers

Docker Postgres and Adminer accept connection but doesn't work

On my rasperry pi 4 I've installed docker and docker-compose and now I'm tring to install and use Postgres and Adminer following that https://hub.docker.com/_/postgres I've created docker-compose.yaml file as follow: # Use postgres/example…
oscurodrago
  • 788
  • 1
  • 8
  • 18
1
vote
1 answer

docker-compose with adminer & mariadb shows 403 on attempted database connection

I have spent the last few hours debugging my system and I am at a loss as to what is going on here. I am using a simple docker-compose.yml file to start a mariadb and an adminer instance on my Ubuntu 20.04 LTS system. docker-compose.yml: version:…
DaveMitHut
  • 144
  • 1
  • 14
1
vote
1 answer

Docker: Adminer backend for PostgrSQL database times out

I'm trying to set up a simple database system using a PostgreSQL Docker container and an Adminer container as a backend. Note this is all running on a RaspberryPi 4. docker-compose.yml: services: postgres: image: postgres …
Alex
  • 95
  • 1
  • 10
1
vote
0 answers

Why is a connection to adminer inside a docker container stuck in infinite loading?

I have a postgres docker instance running on my Raspberry PI. In addition I want to access the database with adminer. I tried to run it inside a docker container on multiple ways (see below). But every try leads to the sample problem: When I enter…
Tim S.
  • 238
  • 2
  • 10
1
vote
2 answers

Docker mysql container doesn't persist data despite using volumes. Why?

I am running two docker containers. mysql adminer I want to persist my database, therefore I use volumes in my docker-compose file. Still I lose data whenever I restart the containers (docker-compose down and up). What I am missing? (I am on…
Sanyifejű
  • 2,610
  • 10
  • 46
  • 73
1
vote
1 answer

Nginx causes problems with access to the Adminer SQL web administrator

I'm new to nginx. I have a php server listening on 127.0.0.1:82 (started from adminer firectory so it gives adminer.php when it is requested) and nginx on 127.0.0.1:80. I need to redirect any /admin request to Adminer, meaning to PHP server. When I…
Rabter
  • 952
  • 1
  • 6
  • 9
1
vote
1 answer

How can I connect a adminer docker container with a mariadb docker container?

I was trying to create a PHP development environment with PHP, MariaDB, and a tutorial suggested to use Adminer for database management. So I generate my docker-compose.yml file like this: version : '3.1' services: php: build: context:…
Andres P
  • 56
  • 1
  • 6
1
vote
3 answers

How to use adminer without password basing on login-password-less plugins

I want to use adminer without password. I uploaded adminer-4.7.7-en.php file and finding login-password-less plugin I create file plugins/login-password-less.php with content :
mstdmstd
  • 2,195
  • 17
  • 63
  • 140
1
vote
1 answer

Postgresql 11.3 delete constraint by adminer

I'm hurting my head through a wall. I'm trying to remove a UNIQUE constraint for my table, using Adminer GUI. When i'm looking the structure of my table : Indexes: UNIQUE | fk_bank, type UNIQUE | fk_bank, url_id, type PRIMARY | rowid I click on…
1
vote
1 answer

Cannot connect to port 8080 adminer (Postgres+Adminer docker stack)

Problem Following the postgres docker official page: https://hub.docker.com/_/postgres I've created "stack.yml" and it's contain: # Use postgres/example user/password credentials version: '3.1' services: db: image: postgres restart:…
tonywei
  • 677
  • 2
  • 12
  • 25
1
vote
2 answers

MongoDB + Adminer

I am running a local MongoDB service on Windows using WAMP64. I want to access the db using Adminer. I cannot get thru the login page. It keeps saying that Database does not support password, which it does as proven by me logging into the db using…
charlie090
  • 318
  • 3
  • 17
1
vote
3 answers

WAMP server's Adminer login: "Access denied" - for all users

I downloaded WAMPServer 3.2.0 and installed it on Windows 10. I started PHPMyAdmin, logged in to the mysql database, and changed the empty password of 'root' user to a real password. I Started the Adminer 4.7.5 and tried to log in the…
Gabor
  • 41
  • 1
  • 5
1
vote
1 answer

Why inserting only one column to mysql database not show an error in codeigniter?

UPDATE: Because the answers already given, I make a testing with fresh installation of CodeIgniter 3.1.11. And make a new database and table, with 3 columns: id, name, email. Then, I try to insert the data using mysql cli: INSERT INTO users (name)…
1
vote
1 answer

Bitnami with Adminer on EC2 - how to increase the max_upload_size

I'm running an EC2 instance with Bitnami Wordpress AMI and adminer.php to manage the Databases. When launching adminer.php on my IP it shows me that I have an upload limit of 40mb. I'd like to increase that, but have no idea how. What I tried so…
matt
  • 42,713
  • 103
  • 264
  • 397
1
vote
1 answer

How to setup adminer.php in local windows 7 ( if the db have no password)

I'm setting up a new adminer.php (version 4.7.1) file in local windows (version 7) system. My local db have no password. While open the adminer.php (version 4.7.1) file in local it shows below error, Adminer does not support accessing a database…
CreativeMinds
  • 333
  • 3
  • 22