Hi, > I want to use adminer for php operations. I installed it via apt install > adminer. > But I am not able to open it on localhost. Can anyone help me?
You must also install and setup a php-enabled web server for it to work. The simplest way to get it running is: $ cd /usr/share/adminer $ php -S localhost:8000 and you'll find adminer at http://localhost:8000/adminer/ (There are many other ways to run a php app) Alex