遇到并解决的错误列表:
shell-init:检索当前目录时出错:getcwd:无法访问父目录:权限被拒绝
pg_config 错误
未加载库:libpq.5.dylib
fe_sendauth:未提供密码
pg_ctl: 没有指定数据库目录并且环境变量 PGDATA 未设置
pg_ctl: 服务器没有关闭
(PG::错误)
A) 预安装:
当您单击 .dmg 文件开始安装时,会打开一个对话窗口,并且安装程序旁边有一个 README 文件。读那个。我按照规定更改了共享内存:
$ sudo vi /etc/sysctl.conf
On a MacBook Pro with 2GB of RAM, the author's sysctl.conf contains:
kern.sysv.shmmax=1610612736
kern.sysv.shmall=393216
kern.sysv.shmmin=1
kern.sysv.shmmni=32
kern.sysv.shmseg=8
kern.maxprocperuid=512
kern.maxproc=2048
我将文件向下滚动到 k,并将列出的每一行更改为指定的值。然后,您需要重新启动计算机。
B) 安装和使用 PostgreSQL:
然后再次单击 .dmg 文件,然后单击安装程序并安装 postgres。我接受了所有默认值。
据我所知,postgres 安装程序仅将目录 /Library/PostgreSQL/9.2 的权限授予名为“postgres”的用户。在 postgres 安装期间,安装程序要求输入数据库超级用户的密码,如果您想知道数据库超级用户的名称是什么,那就是“postgres”。
当您发出 sudo 命令时,您将暂时更改为用户“root”。但是,root 用户无权访问目录 /Library/PostgreSQL/9.2。所以你必须使用 su 命令(切换用户)来更改为 postgres 用户。但是为了发出 su 命令,您需要是 root 用户。了解?
因此,每当您发出 postgres 命令时,您都需要先执行以下操作:
$ cd /Library/PostgreSQL/9.2
$ sudo su postgres
Password: <normal sudo password>
像这样的错误:
~$ sudo su postgres
shell-init: error retrieving current directory: getcwd: cannot access parent directories: Permission denied
是由于您试图切换到 postgres 用户没有权限的目录中的用户 postgres 引起的,据我所知,除了 /Library/PostgreSQL/9.2 之外的每个目录
正确切换到 postgres 用户后:
$ cd /Library/PostgreSQL/9.2
$ sudo su postgres
Password: <normal sudo password>
你会得到一个有趣的提示。就我而言,它看起来像这样:
bash-3.2$
如果您发出 ls 命令:
bash-3.2$ ls
bin installer scripts
data lib share
doc pgAdmin3.app stackbuilder.app
include pg_env.sh uninstall-postgresql.app
您可以推测您在 /Library/PostgreSQL/9.2 目录中。
安装完成后,EnterpriseDB 安装程序会自动为您启动 postgres 服务器。 如果您需要启动服务器,例如您关闭了计算机,请参阅下面第 5 步中的“您可以从命令行停止或启动服务器”。
C) 使用 pgAdmin3 连接到服务器:
我花了几个小时试图弄清楚如何启动服务器,并且通常只是使用 postgres,但没有运气。然后我碰巧在目录 /Library/PostgreSQL/9.2 中看到了一个叫做 pgAdmin3 的东西。我点击了它,然后打开了一个带有几个窗格的窗口。
在 pgAdmin3 窗口的左窗格中,它显示:
Server Groups
--Servers(1)
----PostgresSQL 9.2 (localhost:5432)
我单击“PostgreSQL 9.2 (localhost:5432)”以突出显示它,然后右键单击以显示一个菜单,然后选择 Connect。出现提示时,我输入了数据库超级用户密码。
D) 设置 Rails 以使用 PostgreSQL:
然后我按照本教程中的说明进行 Rails 设置:
https://pragtob.wordpress.com/2012/09/12/setting-up-postgresql-for-ruby-on-rails-on-linux/#comment-1142
如下:
1)第一步是创建一个新用户。
如果您使用与您的 mac 用户名相同的名称,那么您不必在 rails 应用程序中的 database.yml 文件中添加用户名(或密码):
$ cd /Library/PostgreSQL/9.2
$ sudo su postgres
Password: <normal sudo password>
bash-3.2$ createuser --interactive 7stud
Shall the new role be a superuser? (y/n) n
Shall the new role be allowed to create databases? (y/n) y
Shall the new role be allowed to create more new roles? (y/n) n
Password:<database superuser password>
bash-3.2$
这将创建一个没有密码的新用户。
接下来,在 pgAdmin3 中,如果您单击:
---Login Roles(1)
突出显示它,然后单击窗口顶部的“刷新所选对象”图标,您将看到显示的新用户。
createuser 的 postgres 文档在这里:
http://www.postgresql.org/docs/9.2/interactive/app-createuser.html
还有一个 dropuser 命令:
bash-3.2$ dropuser 7stud
2) 然后将 'pg' gem 添加到您的 Gemfile中,并注释掉 sqlite gem。
3)然后尝试使用Bundler安装pg gem:
rails_projects/sample_app/$ bundle install --without production
当我尝试这样做时,出现“pg_config”错误。为了解决这个错误,我遵循了这里的建议:
http://excid3.com/blog/installing-postgresql-and-pg-gem-on-mac-osx/#.UftQUOB6gy6
并将 /Library/PostgreSQL/9.2 添加到我的 PATH 中(我在 .bashrc 中进行所有 PATH 操作。)。不要忘记 'source' .bashrc 或退出终端并重新启动终端以使新的 PATH 生效。
然后我能够安装 pg gem 没有错误:
rails_projects/sample_app/$ bundle install --without production
rails_projects/sample_app/$ bundle update
rails_projects/sample_app/$ bundle install
(我真的不明白为什么你必须执行所有这三个命令,但这就是 railstutorial 所做的。)
4)接下来更改您的 config/database.yml 文件。
对于每个部分:测试、开发和生产更改“适配器”和“数据库”行,并添加“编码”行,例如:
development:
adapter: postgresql
database: ArbitaryDatabaseName (e.g. sampleapp_dev)
encoding: utf8
pool: 5
timeout: 5000
确保所有三个数据库行都指定不同的名称。
5)然后尝试创建数据库:
rails_projects/sample_app/$ bundle exec rake db:create:all
当我尝试这样做时,我得到了错误:
dlopen(/Users/7stud/.rvm/gems/ruby-2.0.0-p247@railstutorial_rails_4_0/gems/pg-0.15.1/lib/pg_ext.bundle, 9): Library not loaded: libpq.5.dylib
Library not loaded: libpq.5.dylib
Referenced from: /Users/7stud/.rvm/gems/ruby-2.0.0-p247@railstutorial_rails_4_0/gems/pg-0.15.1/lib/pg_ext.bundle
库 libpq.5.dylib 位于
/Library/PostgreSQL/9.2/lib
使用这里的建议:
https://github.com/PostgresApp/PostgresApp/issues/109
我通过将以下内容添加到我的 .bashrc 文件中解决了该错误(或者您可以将其放入 .bash_profile 中):
export DYLD_FALLBACK_LIBRARY_PATH="/Library/PostgreSQL/9.2/lib:$DYLD_LIBRARY_PATH"
(记住'source' .bashrc 或退出终端并启动一个新的终端窗口。)
然后我尝试再次创建数据库:
rails_projects/sample_app/$ bundle exec rake db:create:all
fe_sendauth: no password supplied …
要解决该爆炸性错误,您需要更改目录中的 pg_hba.conf 文件
/Library/PostgreSQL/9.2/data
您不能使用 Finder 进入该目录——您必须使用 postgres 用户进入该目录:
$ cd /Library/PostgreSQL/9.2
$ sudo su postgres
Password: <normal sudo password>
bash-3.2$ cd data
bash-3.2$ ls
PG_VERSION pg_hba.conf pg_notify pg_subtrans postgresql.conf
base pg_ident.conf pg_serial pg_tblspc postmaster.opts
global pg_log pg_snapshots pg_twophase postmaster.pid
pg_clog pg_multixact pg_stat_tmp pg_xlog
bash-3.2$ mvim pg_hba.conf
(or instead of mvim open with another text editor, e.g. vim)
在 .conf 文件中,您需要将“md5”更改为“信任”:
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all trust #md5
# IPv4 local connections:
host all all 127.0.0.1/32 trust #md5
# IPv6 local connections:
host all all ::1/128 trust #md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
#local replication postgres md5
#host replication postgres 127.0.0.1/32 md5
#host replication postgres ::1/128 md5
访问 METHOD 'md5' 表示数据库需要指定数据库用户的加密密码。但是当您创建新用户时,您创建它时没有密码。访问方法“信任”意味着数据库不需要密码。
然后我尝试再次创建数据库:
rails_projects/sample_app/$ bundle exec rake db:create:all
fe_sendauth: no password supplied …
为了让服务器读取我在 .conf 文件中所做的更改,我在 pgAdmin3 中断开了与服务器的连接:
Server Groups
--Servers(1)
----PostgresSQL 9.2 (localhost:5432)
Click on PostgresSQL 9.2 (localhost:5432) to highlight it,
right click, then select Disconnect,
then right click and select Connect.
但显然这行不通。断开和重新连接到服务器不会导致服务器重新加载 .conf 文件。要让服务器重新加载 .conf 文件,您可以在 pgAdmin3 中右键单击PostgresSQL 9.2 (localhost:5432)
并选择:
Reload configuration
或者您可以从命令行停止然后启动服务器:(
注意以下命令假设您已经切换到 postgres 用户,请参阅上面的“安装和使用 PostgreSQL”。)
bash-3.2$ cd /Library/PostgreSQL/9.2/
bash-3.2$ pg_ctl stop (First disconnect from the server in pgAdmin3)
但是,这产生了错误:
pg_ctl: no database directory specified and environment variable PGDATA unset
Try "pg_ctl --help" for more information.
我解决了这样的错误:
bash-3.2$ export PGDATA=/Library/PostgreSQL/9.2/data
bash-3.2$ echo $PGDATA
/Library/PostgreSQL/9.2/data
bash-3.2$ pg_ctl stop
waiting for server to shut down.... done
server stopped
bash-3.2$ pg_ctl start
server starting
如果您没有在 pgAdmin3 中首先断开与服务器的连接,您将获得输出:
bash-3.2$ pg_ctl stop
waiting for server to shut down............................................................... failed
pg_ctl: server does not shut down
HINT: The "-m fast" option immediately disconnects sessions rather than
waiting for session-initiated disconnection.
bash-3.2$
后来,当我打开 rails 控制台时,我无法关闭服务器。我使用 向数据库添加了一个用户,但User.create(....)
我忘记事先启动 postgres,所以我想知道该记录会发生什么。出于某种原因,postgress 服务器已经在我的系统上运行(似乎每次我启动计算机时 postgress 都会启动——在下面解决)。接下来,我试图停止服务器,但我无法停止。关闭 rails 控制台后,服务器停止。
最后,没有错误:
~/rails_projects/sample_app4_0$ bundle exec rake db:create:all
~/rails_projects/sample_app4_0$ bundle exec rake db:migrate
~/rails_projects/sample_app4_0
我想这意味着创建了数据库。如果您查看 pgAdmin3,您应该能够看到三个新数据库(尽管它们上面有红色的 x)。如果看不到它们,请右键单击 Databases 目录(在 pgAdmin3 中)并选择 Refresh。
编辑:我后来遇到了一些问题。要全面测试一切是否正常,请参见此处:
如何让我的 Rails 应用程序使用我的 postgresql 数据库?
6) Guard/Spork
当我启动我的 Guard/Spork 组合时:
~/rails_projects/sample_app4_0$ bundle exec guard
我收到了这个错误:
...
...
Preloading Rails environment
Loading Spork.prefork block...
FATAL: the database system is shutting down
(PG::Error)
我通过启动 postgres 服务器并使用 pgAdmin3 连接到服务器来解决这个问题。
最终,我想出了如何让 postgres 服务器在每次启动计算机时都不启动。我不得不做出两个改变:
1)$ sudo vim /Library/LaunchDaemons/com.edb.launchd.postgresql-9.2.plist
用你的 postgres 版本代替 9.2。
2) 找到 RunAtLoad 行
3)将下一行从更改<true/>
为<false/>
https://superuser.com/questions/244589/prevent-postgresql-from-running-at-startup
仅这些步骤对我不起作用。然后我发现了这个建议:
4)$ sudo launchctl unload -w /Library/LaunchDaemons/com.edb.launchd.postgresql-9.2.plist
用你的 postgres 版本代替 9.2。
http://www.postgresql.org/message-id/flat/4B41FD48.7030009@enterprisedb.com#4B41FD48.7030009@enterprisedb.com