4

我刚开始研究一个通过 Vagrant 建立的 ruby​​ 项目。我已经成功地让远程解释器工作,但我无法连接到数据库。

这是我的Vagrantfile

# This Vagrantfile is for development use only.
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "markusproject/ubuntu"

  # Allow instance to see project folder.
  # Warning: This may cause problems with your Vagrant box!
  #          Enable at your own risk.
  # config.vm.synced_folder ".", "/home/vagrant/Markus"

  # Access the server running on port 3000 on the host on port 42069.
  # config.vm.network "forwarded_port", guest: 3000, host: 42069
  config.vm.network :private_network, ip: '192.168.50.50'
  config.vm.synced_folder '.', '/home/vagrant/Markus', nfs: true

  config.vm.provider "virtualbox" do |vb|
    # Uncomment the following line if you want a GUI.
    # vb.gui = true
    vb.name = "markus"
  end
end

我已将 VM 设置为使用 NFS。这是输出vagrant ssh-config

Host default
  HostName 127.0.0.1
  User vagrant
  Port 2222
  UserKnownHostsFile /dev/null
  StrictHostKeyChecking no
  PasswordAuthentication no
  IdentityFile /Users/paymahn/.vagrant.d/insecure_private_key
  IdentitiesOnly yes
  LogLevel FATAL

我保留了数据库连接的默认值,但尝试了几种为连接设置 SSH 隧道的变体。

数据库设置选项卡 SSH 隧道配置

这些变化包括:

  1. 将代理主机设置为 127.0.0.1
  2. 将端口设置为 2222
  3. 将代理主机设置为 192.168.50.50
  4. 将端口设置为 22

当我测试连接时,所有变化都导致连接失败。任何有关设置此配置的帮助将不胜感激!

4

1 回答 1

6

嗯...感谢这个人,我想通了。

以下是最终对话框的样子: 数据库选项卡 SSH/SSL 选项卡

我对数据库做了完全相同的事情,test只是我将数据库名称从更改markus_developmentmarkus_test

于 2015-01-24T19:34:18.147 回答