How i can access ERPNext DATABASE AS UI and my xamp mysql database both on same pc

i get database by using

bench --site sitename mariadb
SHOW TABLES;

i want ui like phpmyadmin
and also i want to run mysql phpmyadmin and erpnext database at same time

1 Like

The ERPNext MariaDB database is an ordinary, separate MySQL database. You can use any UI you want, including phpmyadmin. Install your favorite UI or IDE. And create a connection to the database, using IP, port, username, password. No special ERPNext knowledge is required.

1 Like

Try this:

  1. sudo apt install php
  2. sudo apt install phpmyadmin
  3. spacebar to select apache then enter
  4. choose NO then enter

Php username is root or the same username you set with your MariaDB as well as your set password

Source : https://itslinuxfoss.com/install-phpmyadmin-ubuntu-22-04/

1 Like