简体   繁体   English

如何开始在实验室中使用已部署的wirecloud?

[英]How do start using the deployed wirecloud in the lab?

I have just deployed an image of wirecloud on the https://cloud.lab.fiware.org/#nova/images/ 我刚刚在https://cloud.lab.fiware.org/#nova/images/上部署了wirecloud映像

I gave it a floating ip and then I connected to it via ssh. 我给了它一个浮动的IP,然后通过ssh连接到它。

Now what? 怎么办?

I cant find any command to issue in order to start using wirecloud, the entire user guide ( https://forge.fiware.org/plugins/mediawiki/wiki/fiware/index.php/Application_Mashup_- Wirecloud -_User_and_Programmer_Guide ) is about the UI. 我找不到要开始使用Wirecloud发出的任何命令,整个用户指南( https://forge.fiware.org/plugins/mediawiki/wiki/fiware/index.php/Application_Mashup_- Wirecloud -_User_and_Programmer_Guide )关于UI。

I tried going to the assigned floating ip but all I get is the page ( http://150.254.155.20/ ) from which I cannot log in. 我尝试转到分配的浮动IP,但是我只能获得无法登录的页面( http://150.254.155.20/ )。

So how do I set up and use the wirecloud once I ssh'ed my way inside the apparently ubuntu machine? 那么,一旦在显然是ubuntu的计算机中切换了路径,如何设置和使用wirecloud?

The WireCloud Image available on FIWARE Lab deploys a WireCloud instance at /opt/wirecloud_instance . FIWARE Lab上提供的WireCloud映像在/opt/wirecloud_instance部署了一个WireCloud实例。 This instance configures a default admin user (credentials: admin/admin). 此实例配置默认的admin用户(凭证:admin / admin)。 The first step is to modify this admin user, to do so you have to login inside WireCloud and entering the Django admin panel: 第一步是修改此管理员用户,为此,您必须在WireCloud内部登录并进入Django管理面板:

在此处输入图片说明

Once in the admin panel, open "Auth -> Users -> admin" and update your admin user: 进入管理面板后,打开“身份验证->用户->管理员”并更新您的管理员用户:

在此处输入图片说明

You can also change the default configuration of this instance (for example, change the default theme, add the emails for error reporting, etc...), please take a look into the Installation and Administration guide for more info . 您还可以更改此实例的默认配置(例如,更改默认主题,添加用于错误报告的电子邮件等),请查看《 安装和管理》指南以获取更多信息

PD Currently the WireCloud image uses WireCloud 0.6.2 . PD当前,WireCloud映像使用WireCloud 0.6.2 You can update it using the following commands: 您可以使用以下命令更新它:

$ pip install -U wirecloud
$ cd /opt/wirecloud_instance
$ python manage.py syncdb --migrate; python manage.py collectstatic --noinput; python manage.py compress --force

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM