浮浪者のインスタンスを作成しましたが、ターミナルで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
Postgresにvagrant
ユーザーがなく、psql
を実行すると、vagrant
ユーザー(OSユーザーと同じ名前)としてログインしようとします。次のようなことを試してみてください。
psql -U postgres -h localhost
postgres
ユーザーとしてログインするには、postgresq
ユーザーのVagrantfileでパスワードを指定します。
次に、いくつかのオプションがあります。