2016-12-05 77 views
1

我有一個Cloud Foundry/Bluemix的私人服務代理,名稱爲found, e.g., here on GitHub。當我嘗試註冊使用
cf create-service-broker brokername username password URI2Broker
我收到以下錯誤經紀人:如何將服務代理添加到Bluemix/Cloud Foundry?

Creating service broker brokername as BluemixUser...
FAILED
Server error, status code: 403, error code: 10003, message: You are not authorized to perform the requested action

我如何使用私人服務代理與Bluemix或Cloud Foundry的,即使我不是管理員?

回答

1

Cloud Foundry有兩種類型的私人經紀人,standard private brokers and space-scoped private brokers。後者可以在沒有管理員權限的情況下進行註冊,並且僅在其註冊的空間(「空間範圍」)中可見。您可以使用下面的命令:

cf create-service-broker brokername username password URI2Broker --space-scoped

有一些規律可循,例如,一些標識符需要是的Cloud Foundry實例中是唯一的。您可以在此tutorial on registering private brokers中找到更多信息,該鏈接指向示例和更多文檔。

相關問題