简体   繁体   中英

Is there a way to access the mysql database without running MAMP?

I'm working on laravel, and I run the project using the command

 php -S localhost:8888 -t public

But When I want to look at the database I quit and go to run the MAMP , to access the phpMyAdmin ?

is there any way to use mysql without having to run mamp ?

I use Sequel Pro. I'm assuming you're on a Mac since you use MAMP.

More info here: http://www.sequelpro.com/

Mysql doesn't require apache server to run. You can use mysql cli for accessing database. Link to install mysql

use mysql -u {username} -p and enter password

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM