我正在尝试使用initdb /usr/local/var/postgres
启动数据库,但我收到的只是initdb: command not found
。安装Postgresql之后是否有任何我可能错过的步骤?
修改的 我正在使用Ubuntu 16.04,我想将它用于Ruby on Rails,我被告知这个:
发起数据库initdb /usr/local/var/postgres
启动服务器:
pg_ctl -D /usr/local/var/postgres -l logfile start
pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
编辑example.database.yml;
创建项目db:rake db:create:all|production
启动Redis e Sidekiq
brew install redis
Mac -
redis-server /usr/local/etc/redis.conf
Debian -
redis-server /etc/redis/redis.conf
-
bundle exec unicorn -D -p 3000 -E production -c config/unicorn.rb