Access MAMP#39;s MySQL from Terminal(从终端访问 MAMP 的 MySQL)
问题描述
我想练习使用 SQL 而不是 phpMyAdmin.
I want to practice using SQL instead of phpMyAdmin.
如何从终端登录 MAMP 的 MySQL?
How do I log into MAMP's MySQL from the terminal?
推荐答案
我假设您使用的 MAMP 版本会自行安装在/Applications/MAMP 中.首先通过 MAMP 控制台确保 Mysql 服务器已打开.然后从命令行像这样连接:
I'm assuming the version of MAMP you're using installs itself in /Applications/MAMP. First make sure via the MAMP console that the Mysql server is on. Then connect like this from command line:
/Applications/MAMP/Library/bin/mysql -uUsername -pPassword
显然替换用户名和密码.顺便说一句,-u 和用户名或 -p 和密码之间没有空格.
Obviously replace Username and Password. BTW, there is no space between -u and the Username or -p and the Password.
祝你好运以旧时尚的方式学习 Mysql!
Good Luck learning Mysql the old fashion way!
这篇关于从终端访问 MAMP 的 MySQL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从终端访问 MAMP 的 MySQL
基础教程推荐
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01