web-dev-qa-db-ja.com

psql:致命的:役割「vagrant」は存在しません

浮浪者のインスタンスを作成しましたが、ターミナルでpsqlを実行しようとするたびにこのエラーが発生します。エラーは次のようになります。

psql:致命的:役割「vagrant」は存在しません

私はvagrantがこれを処理すると思いましたか?これは私のvagrantファイルです:

Vagrant.require_plugin "vagrant-omnibus"
Vagrant.require_plugin "vagrant-berkshelf"

Vagrant.configure(2) do |config|

  # Box config
  config.vm.box = 'precise64'
  config.vm.box_url = 'http://files.vagrantup.com/precise64.box'

  # Plugin config
  config.omnibus.chef_version = :latest
  config.berkshelf.enabled = true

  # Network config
  config.vm.network :forwarded_port, guest: 3000, Host: 3000

  # Virtual config
  config.vm.provider(:virtualbox) do |vb|
    vb.customize [
      "modifyvm", :id,
      "--memory", "1024",
      "--cpus",   "4"
    ]
  end

  # Provisioner config
  config.vm.provision :chef_solo do |chef|
    chef.add_recipe 'apt'
    chef.add_recipe 'postgresql::client'
    chef.add_recipe 'postgresql::server'
    chef.add_recipe 'build-essential'
    chef.add_recipe 'rvm::system'
    chef.add_recipe 'git'
    chef.json = {
      :postgresql => {
        :version => '9.3'
      },
      "postgresql" => {
        "password" => {
          "postgres" => "kshgfi3ret3hihjfbkivtbo3ity835"
        }
      },
      "database" => {
        "create" => ["aisisplatform"]
      },
      :git   => {
        :prefix => "/usr/local"
      },
      :rvm => {
        'rubies' => [ 'Ruby-2.1.0' ],
        'default_Ruby' => 'Ruby-2.1.0',
        'vagrant' => {
          :system_chef_solo => '/usr/bin/chef-solo'
        }
      },
    }
  end
end
13
LogicLooking

Postgresにvagrantユーザーがなく、psqlを実行すると、vagrantユーザー(OSユーザーと同じ名前)としてログインしようとします。次のようなことを試してみてください。

psql -U postgres -h localhost

postgresユーザーとしてログインするには、postgresqユーザーのVagrantfileでパスワードを指定します。

次に、いくつかのオプションがあります。

  • PGUSERPGHOST環境変数 をエクスポートして、ユーザーとホストを設定します(パラメーターなしのpsqlはこれらの値を使用します)。 psqlの実行ごとにパスワードを入力しないように、 。pgpass ファイルを使用することもできます。

  • Vagrantfileを変更して、postgresでパスワードを使用してvagrantユーザーを作成します

16
ivalkeen