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