MySQL下檢視使用者和建立使用者

2021-08-09 07:39:32 字數 2963 閱讀 9655

磨礪技術珠磯,踐行資料之道,追求卓越價值 

回到上一級頁面: postgresql雜記頁     回到頂級頁面:postgresql索引頁

[作者 高健@  [email protected]]

啟動資料庫:

[

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 -

penter password:

welcome

to the mysql monitor. commands end

with ; or

\g.your mysql connection id is1

server version:

5.6.13

mysql community server (gpl)

2000, 2013, oracle and/or its affiliates. all

rights reserved.

oracle

is a registered trademark of oracle corporation and/or

itsaffiliates. other names may be trademarks

oftheir 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 |+--

------------------+

4 rows in

set (0.00

sec)

mysql

>

檢視使用者狀態:

mysql>

usemysql;

reading

table information for completion of

table

andcolumn

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 |+--

----------+------+

6 rows in

set (0.00

sec)

mysql

>

建立使用者:

mysql>

create

user

'usrabc

'@'%

' identified by

'usrabc';

query ok,

0 rows affected (0.00

sec)

mysql

>

select host,user

from mysql.user;+

------------+--------+

| host |

user|+

------------+--------+|%

| usrabc |

|127.0.0.1

| root |

| ::1

| root |

| localhost |

|| localhost | root |

| server.gao |

|| server.gao | root |+--

----------+--------+

7 rows in

set (0.00

sec)

mysql

>

[作者 高健@  [email protected]]

回到上一級頁面: postgresql雜記頁     回到頂級頁面:postgresql索引頁

磨礪技術珠磯,踐行資料之道,追求卓越價值

Linux下檢視使用者列表 建立使用者及使用者組

cat etc passwd grep v nologin grep v halt grep v shutdown awk f more 參考 問下linux下各種許可權的意思 讀 4寫 2 執行 1 777 讀 寫 執行 第乙個7是當前使用者,第二個是當前使用者組,第三個是其它使用者,也就是對所有...

mysql 建立 檢視 使用者及授權

1 用管理員登陸mysql 2 建立資料庫create database db01 3 建立使用者 user01只能本地訪問 create user user01 localhost identified by password1 user02可以遠端訪問 create user user02 id...

Mysql 下建立root使用者

在linux下安裝了mysql之後出現錯誤,剛開始以為就是沒有密碼的問題,按照這篇文章進行了修改 linux下mysql 初次登陸修改密碼 修改之後應該沒錯,但再次啟動服務root登入還是不行,下面的就是出現的問題和解決過程 mysqld safe skip grant tables mysql u...