>  기사  >  데이터 베이스  >  mysql에서 사용자 이름을 확인하는 방법은 무엇입니까?

mysql에서 사용자 이름을 확인하는 방법은 무엇입니까?

little bottle
little bottle원래의
2019-05-18 13:19:5046501검색

mysql에서 사용자 이름을 확인하는 방법: 먼저 mysql을 입력하고 데이터베이스를 시작한 다음 데이터베이스에 연결하고 마지막으로 "select host,user from mysql.user;"를 입력하여 사용자 이름과 정보를 확인합니다.

mysql에서 사용자 이름을 확인하는 방법은 무엇입니까?

mysql을 사용하다 보면 가끔 현재 사용자를 확인해야 할 때가 있습니다. 이 기사에서는 MySQL에서 사용자 이름을 확인하는 방법에 대해 설명합니다. 관심 있는 친구는 자세히 알아볼 수 있습니다.

데이터베이스 시작:

[root@server ~]# mysqld_safe &[1] 3289
[root@server ~]# 130913 08:19:58 mysqld_safe Logging to '/usr/local/mysql/data/server.gao.err'.
130913 08:19:58 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data

데이터베이스에 연결:

[root@server ~]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.13 MySQL Community Server (GPL)

Copyright (c) 2000, 2013, 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>

데이터베이스 목록 보기:

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
rows in set (0.00 sec)

mysql>

사용자 상태 보기:

mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> select host,user from mysql.user;
+------------+------+
| host       | user |
+------------+------+
| 127.0.0.1  | root |
| ::1        | root |
| localhost  |      |
| localhost  | root |
| server.gao |      |
| server.gao | root |
+------------+------+
rows in set (0.00 sec)

mysql>

위 내용은 mysql에서 사용자 이름을 확인하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.