JAdmin is a lightweight, web-based database administration tool designed to provide a simple and efficient way to manage MySQL and PostgreSQL databases through a modern web interface. JAdmin offers database management capabilities in a compact, standalone module.
PostgreSQL and MySQL
jadmconf.yml standard config (should be located next to .jar):
jadm:
database:
type: postgres # or "mysql"
url: jdbc:postgresql://localhost:5432/your_database
username: db_user
password: db_pass
admin:
username: admin
password: adminRun the application
java -jar jadmin.jarOpen the http://localhost:8080
Login with the credentials specified in jadmconf.yml
- View all database tables with row counts
- Click on any table to open detailed view
- Execute custom SQL queries
- View query results in a formatted table
- Support for both SELECT and UPDATE/INSERT/DELETE operations
- Real-time error reporting
- CSRF protection enabled
- Session-based authentication
- Configurable admin credentials
type: Database type (postgresormysql)url: JDBC connection URLusername: Database usernamepassword: Database password
username: Admin login usernamepassword: Admin login password