Postgresql db in ubuntu [已关闭]

jvidinwx  于 2023-10-18  发布在  PostgreSQL
关注(0)|答案(1)|浏览(123)

已关闭此问题为not about programming or software development。它目前不接受回答。

这个问题似乎不是关于a specific programming problem, a software algorithm, or software tools primarily used by programmers的。如果你认为这个问题与another Stack Exchange site的主题有关,你可以留下评论,解释在哪里可以回答这个问题。
21天前关闭。
Improve this question
如何安装,创建postqresql db并连接到ubuntu中的项目
我做不到...…………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………………

sudo -u postgres psql
[sudo] password for narjes: 
could not change directory to "/home/narjes/Documents/my_city/my_city": Permission denied
psql (14.9 (Ubuntu 14.9-0ubuntu0.22.04.1))
Type "help" for help.

postgres=# createuser narjes
postgres-# createdb dbsh
postgres-# psql
postgres-# alter user narjes with encrypted password '123456';
ERROR:  syntax error at or near "createuser"
LINE 1: createuser narjes
        ^
postgres=# createuser narjes
postgres-#
wbgh16ku

wbgh16ku1#

postgres=# createuser narjes
postgres-# createdb dbsh
postgres-# psql
postgres-# alter user narjes with encrypted password '123456';

=#-#的变化表明您正在新的一行中继续执行先前的SQL命令/查询。
;完成句子

相关问题