我希望实现一种方法来测试我们的应用程序的数据库连接。
我们目前遇到连接问题,因此希望无需登录即可检查连接。
是否有办法显示页面,说明数据库连接已启动或数据库连接已关闭,具体取决于连接是否失败。如果需要任何其他信息,请告诉我。
如果我对细节不满意,那么只能开始学习绳索。
答案 0 :(得分:14)
您可以通过运行以下脚本来检查是否可以建立连接:
require './config/environment.rb' # Assuming the script is located in the root of the rails app
begin
ActiveRecord::Base.establish_connection # Establishes connection
ActiveRecord::Base.connection # Calls connection object
puts "CONNECTED!" if ActiveRecord::Base.connected?
puts "NOT CONNECTED!" unless ActiveRecord::Base.connected?
rescue
puts "NOT CONNECTED!"
end