Rails アプリ以外のサーバーにある vbulletin フォーラム データベースにアクセスする必要があります。vbulletin
でエントリーを作成しましたdatabase.yml
vbulletin:
adapter: mysql2
encoding: latin2
database: db_name
username: username
password: password
host: forum.hostname.pl
port: 3306
そして、簡単なモデルを作成しましたvbuser.rb
class Vbuser < ActiveRecord::Base
establish_connection(:vbulletin)
self.table_name = 'user'
end
Vbuser.last
今、コンソールで
実行しようとしていますが、次のようになります:Mysql2::Error: Can't connect to MySQL server on 'forum.hostname.pl' (110)
何が問題になる可能性がありますか?