溫馨提示×

怎么在postgresql中創(chuàng)建一個用戶

養(yǎng)魚的貓咪
5425
2021-04-27 11:45:17
欄目: 云計(jì)算

在postgresql中創(chuàng)建用戶的方法:1.啟動postgresql服務(wù);2.登錄postgresql數(shù)據(jù)庫;3.使用createuser命令創(chuàng)建;

怎么在postgresql中創(chuàng)建一個用戶

具體步驟如下:

1.首先,在命令行中啟動postgresql服務(wù);

net start postgresql

2.postgresql服務(wù)啟動后,在命令行中登錄到postgresql數(shù)據(jù)庫;

psql -h -U

3.登錄到postgresql數(shù)據(jù)庫后,在數(shù)據(jù)庫中使用createuser命令即可創(chuàng)建一個用戶;

createuser admin -p

如需為用戶設(shè)置密碼,則執(zhí)行

createuser admin with password '123456';

1