반응형
MySQL 명령 줄에서 내 phpMyAdmin에있는 데이터베이스에 액세스하고 관리하는 방법이 있습니까?
해결 방법
* nix 스테이션에서 BASH와 유사한 쉘을 가정합니다.
mysql -h<hostname> -u<username> -p<password>
-h는 localhost에 대해 건너 뛸 수 있습니다. 원격 호스트를 처리하는 경우 외부 인터페이스에서 수신하도록 구성해야하며 원격 호스트의 해당 인터페이스에서 포트 3306에 액세스 할 수 있어야합니다. 사용자 이름은 루트이거나 암호와 같이 데이터베이스 / 스키마 고유입니다.
12:02:26 justin@justin-4320s:~
$ mysql -htiny -uroot -p################
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2710
Server version: 5.5.28-0ubuntu0.12.10.1-log (Ubuntu)
Copyright (c) 2000, 2012, 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> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| Assessor |
| mysql |
| performance_schema |
| test |
| ... contd. |
+--------------------+
12 rows in set (0.10 sec)
mysql>
참조 페이지 https://stackoverflow.com/questions/13434430
반응형
'MySql' 카테고리의 다른 글
MySQL Java, 현재 데이터베이스를 다른 데이터베이스로 변경하는 방법은 무엇입니까? (0) | 2021.01.20 |
---|---|
MySQL php mysql SET NAMES 'utf8'COLLATE 'utf8_unicode_ci'가 mysqli에서 작동하지 않습니다. (0) | 2021.01.20 |
MySQL JDBC : 쿼리가 성공했는지 알아 보시겠습니까? (0) | 2021.01.20 |
MySQL mysql 테이블에서 세션을 참조하기 위해 고유 한 세션 키를 생성하는 방법은 무엇입니까? (0) | 2021.01.20 |
MySQL Ruby on Rails 연결 문제 (0) | 2021.01.20 |
댓글