在Windows Server中安装bugzilla时遇到的问题

我试图在Windows服务器上安装bugzilla 5 。 (为什么人们在开发过程中仍然使用窗口?:()。我大部分时间都在使用linux,而且我无法理解在windows中安装bugzilla官方说明, 我正在关注安装bugzilla的官方页面。通过使用这个链接为bugzillaconfigurationpostgresql 。我可以从terminalloginpostgresql,如下所示:
IMG
然后我运行这个命令:

 createuser -U postgres -dRSP bugs 

然后我得到这个错误:

 ERROR: syntax error at or near "createuser" LINE1: createuser -U postgres -dRSP bugs 

我怎样才能创build一个新的用户bugs并指定他/她的某些权限? 新用户(缺陷)将不会成为超级用户(-S),并且将无法创build新用户(-R)。 他/她只能创build数据库(-d)。

我假设,你已经连接到postgres数据库,并需要像这样运行CREATE ROLE roleName LOGIN SUPERUSER PASSWORD 'passwd';createuser使用文档