我在启动h2o的蒸汽应用程序时遇到了一个问题:当遵循随附的手册时,我创建了steam
db用户:
createuser -P steam
然后
./create-database.sh
从适当的目录。看起来很好。但是当我终于试着用
运行蒸汽时./steam serve master --compilation-service-address="localhost:8080"
失败pq: password authentication failed for user "steam"
我已经尝试修改pg_hba.conf
添加行:
host steam steam 127.0.0.1/32 trust
local steam steam trust
,但它没有工作。我已经尝试了YARN
和独立的steam
版本。
您是否创建了~/。pgpass文件,其中文件属于正在运行Steam的用户?
应该包含:*:*:*:steam:<your password>
而且必须是用户可读的chmod 600 ~/.pgpass