在我的示例项目中,我正在尝试创建 postgre 数据库。在运行 rake db:create 时,我收到一些奇怪的消息并且无法创建数据库。
user1234@ubuntu:~/Development/example$ psql -d postgres
psql: FATAL: role "user1234" does not exist
user1234@ubuntu:~/Development/example$ psql -d postgres -U postgres
Password for user postgres:
psql: fe_sendauth: no password supplied
user1234@ubuntu:~/Development/example$ psql -d postgres -U postgres
Password for user postgres:
psql: FATAL: password authentication failed for user "postgres"
请建议我,解决此问题并使我的示例项目处于运行状态的下一步是什么。