我的.cf文件夹位于网络映射驱动器上U:\.cf。当我未连接到公司网络时,我收到此错误,因为驱动器不可用。我使用Windows 7
FAILED Error read/writing config: open U:\.cf\config.json: This operation is supported only when you are connected to the server.
Run Code Online (Sandbox Code Playgroud)
我也有目标插件的问题,因为我不是文件夹的所有者(仅读写权限)。
> cf save-target -f example
Error: symlink U:\.cf\targets\example.config.json U:\.cf\targets\current: A required privilege is not held by the client.
Run Code Online (Sandbox Code Playgroud)
如何移动.cf到本地驱动器?例如C:\.cf
当我在Swisscom Passeport帐户中激活两步登录方法(密码和短信代码)时,如何使用Cloud Foundry CLI登录Swisscom Application Cloud ?
$ cf login -a https://….appcloud.swisscom.com -u …
API endpoint: https://….appcloud.swisscom.com
Password>
Authenticating...
Credentials were rejected, please try again.
Run Code Online (Sandbox Code Playgroud)
在命令行输入我的Passeport密码后,我确实收到了SMS代码,但是无法在命令行输入它.
突然间(截至03.03.2018下午3点左右),我们的Grafana Docker实例停止在Swisscom Application Cloud(cloudfoundry)中工作.最近在应用程序云上有任何变化吗?关于在哪里看的任何提示?
应用日志:
2018-04-04 13:08:43 [CELL/0] OUT Cell b8093908-296c-4050-b61b-763989f2e453 creating container for instance 53de901b-e6c2-40d7-6071-e673
2018-04-04 13:09:03 [CELL/0] OUT Cell b8093908-296c-4050-b61b-763989f2e453 successfully created container for instance 53de901b-e6c2-40d7-6071-e673
2018-04-04 13:09:03 [CELL/0] OUT Starting health monitoring of container
2018-04-04 13:09:04 [APP/PROC/WEB/0] OUT installing grafana-clock-panel @ 0.0.9
2018-04-04 13:09:04 [APP/PROC/WEB/0] OUT from url: https://grafana.com/api/plugins/grafana-clock-panel/versions/0.0.9/download
2018-04-04 13:09:04 [APP/PROC/WEB/0] OUT into: /var/lib/grafana/plugins
2018-04-04 13:09:06 [APP/PROC/WEB/0] OUT ? Installed grafana-clock-panel successfully
2018-04-04 13:09:06 [APP/PROC/WEB/0] OUT Restart grafana after installing plugins …Run Code Online (Sandbox Code Playgroud) 两个Subselects运行良好独立.
但我希望加入他们,他们总是给出"ORA-00918:列模糊定义".我不明白为什么?
两个子选项都使用其他名称.
SELECT *
FROM (SELECT aods.user_id,
aods.firstname,
aods.lastname,
Aods.DEPARTMENT,
cods.jc_name
FROM personas aods
LEFT JOIN
user_jc cods
ON aods.user_id = cods.user_id
WHERE cods.jc_name LIKE '%ADM%') ods
FULL OUTER JOIN
(SELECT abl.user_id,
abl.firstname,
abl.lastname,
Abl.DEPARTMENT,
bbl.ug_name
FROM personas abl
LEFT JOIN
ru_ug bbl
ON abl.user_id = bbl.user_id
WHERE Bbl.UG_NAME LIKE '%ADM%'
AND bbl.rss_name = 'TIR') bl
ON ods.user_id = bl.user_id
Run Code Online (Sandbox Code Playgroud)