Foreman

Debian 8 + Foreman 未載入

  • February 27, 2017

我正在嘗試給工頭一個嘗試,我按照網站上的教程將它安裝在 Debian 8 上。但是,當我嘗試載入工頭時,我得到:

Sinatra 不知道這個小曲。

# in usr/share/foreman-proxy/modules/root/root_api.rb
class Proxy::RootApi
 get '/' do
   "Hello World"
 end
end

我在生產日誌中也沒有看到任何有用的東西。有什麼建議麼?我應該查看其他日誌嗎?

安裝 Foreman 時主要有兩個服務——一個是 Foreman(安裝在 80/http 和 443/https 埠),另一個是 Foreman/Smart Proxy(安裝在 8443 埠)。智能代理是用於管理 DHCP、Puppet 等服務的 API,並不打算直接在 Web 瀏覽器中使用。

您收到的消息聽起來像是您正在訪問智能代理,因此請訪問正常埠 80 或 443:https ://foreman.example.com/

引用自:https://serverfault.com/questions/835011