程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> Mac下使用mysql

Mac下使用mysql

編輯:MySQL綜合教程

Mac下使用mysql


1. 安裝mysql

2. 在偏好設置中啟動 mysql 服務

3. 打開終端 輸入 mysql , 會發現

chenhong:~ chenhong$ mysql
-bash: mysql: command not found

4. 設置mysql 命令,輸入

1)alias mysql=/usr/local/mysql/bin/mysql

2)alias mysqladmin=/usr/local/mysql/bin/mysqladmin

再次輸入 mysql 命令會發現

chenhong:~ chenhong$ mysql
-bash: mysql: command not found
chenhong:~ chenhong$ alias mysql=/usr/local/mysql/bin/mysql
chenhong:~ chenhong$ alias mysqladmin=/usr/local/mysql/bin/mysqladmin
chenhong:~ chenhong$ mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 36
Server version: 5.1.63-log MySQL Community Server (GPL)

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

5. 使用數據庫 , 出現 mysql Access denied for user root@localhost錯誤

mysql Access denied for user root@localhost錯誤


是由於登陸賬號的權限問題,因此,用最高權限登陸(安裝mysql時候設置的用戶名和密碼)

$ mysql -u root -p

然後控制台會提示你輸入密碼

chenhong:~ chenhong$ mysql -u root -p
Enter password: 

輸入密碼後,就可以使用數據庫

mysql> use micro_message
Database changed




  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved