作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经开始学习 PostgreSQL,但不知道如何通过 PhpStorm 连接到数据库。它总是要求输入密码,但据我所知,没有密码。
现在我可以像这样连接 postgres 服务器:
sudo -i -u postgres
最佳答案
该解决方案可通过 https://help.ubuntu.com/stable/serverguide/postgresql.html 获得
要解决此问题,我们需要更改身份验证方法。所以步骤是:
首先,使用以下命令为 postgres 添加新密码:
sudo -i -u postgres
psql
ALTER USER postgres with encrypted password 'your_password';
sudo nano /etc/postgres/9.x/main/pg_hba.conf
local all postgres peer
local all postgres md5
sudo service postgresql restart
关于postgresql - 通过 PhpStorm 连接到 PostgreSQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38169523/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!