我更新了 .env 文件中的数据库连接,将默认的mysql数据库更改为使用PostgreSQL数据库。但我不知道如何处理这个问题。
DB_CONNECTION=pgsql
例如,我们使用
mysql -uhomestead -psecret <DB Name>
连接到我们的数据库。通过使用psql,如何连接到DB?
答案 0 :(得分:8)
试试这个,
psql -U homestead -h localhost <DB Name>
之后,它会要求输入密码,输入密码。那就是它。
答案 1 :(得分:0)
我要使用ssh
通过psql
连接到Postgress,
psql -U homestead -h 127.0.0.1 -p 5432 myappdb
# this will ask for a password
# the default in homestead is secret