본문 바로가기
MySql

MySQL 5.5 명령 줄 클라이언트에서 phpmyadmin의 데이터베이스에 액세스합니까?

by 베이스 공부 2021. 1. 20.
반응형

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

 

 

반응형

댓글