implementação analítica de syslog em tempo real não funciona

1

@ Galgalesh; Eu estou tentando estes bundle ( link ) de jujucharm.com não personalizados. Eu tentei implantar na AWS não funcionou.

juju --version

1.25.6-xenial-amd64

 root@ubuntu:~# juju-1 deploy realtime-syslog-analytics --constraints 'instance-type=t2.micro' ERROR cannot resolve charm URL "cs:trusty/realtime-syslog-analytics": charm not found

Veja o anexo

    
por Steve Pe 04.08.2016 / 13:45

1 resposta

2

A sintaxe " juju deploy 'bundle' " está disponível apenas para o Juju 2.0 para o Juju 1.25 A implementação de um pacote é feita usando " juju quickstart 'bundle' ". Aqui está como implantar o pacote usando o início rápido no meu ambiente local.

#> juju quickstart realtime-syslog-analytics                                                                                                                      
juju quickstart v2.2.4
contents loaded for bundle realtime-syslog-analytics/bundle (services: 9)
reusing the already bootstrapped local environment
retrieving the environment status
connecting to wss://10.0.3.1:17070/environment/bd6ed64e-1f10-4911-88f4-bc682cc05ab0/api
environment type: local
bootstrap node series: xenial
charm URL: cs:trusty/juju-gui-130
service juju-gui already deployed
reusing unit juju-gui/0
juju-gui/0 is ready on machine 1
unit placed on 10.0.3.165
machine 1 is started
the Juju GUI is ready: retrieving service configuration

Juju GUI URL: https://10.0.3.165
username: admin
password: adm-098d7faa6a744fa1ab86bd23f4e3e852

connecting to the Juju GUI server
requesting a deployment of bundle realtime-syslog-analytics/bundle with the following services:
  flume-hdfs, flume-syslog, namenode, plugin, resourcemanager, rsyslog-forwarder, slave, spark, zeppelin
bundle deployment request accepted
use the GUI to check the bundle deployment progress
more details about this bundle can be found at
  https://jujucharms.com/realtime-syslog-analytics/bundle
opening the browser at
https://10.0.3.165/?authtoken=62249182ecb8485399bbff1e5663a07e
done!

Run "juju quickstart -e local" again if you want
to reopen and log in to the GUI browser later.
Run "juju quickstart -i" if you want to manage
or bootstrap your Juju environments using the
interactive session.
Run "juju destroy-environment local [-y]"
to destroy the environment you just bootstrapped.

Aqui está um breve tutorial em vídeo sobre o que é o início rápido e como usá-lo link

Para implantar um pacote em um ambiente existente

Forneça o ambiente usando o sinalizador -e <environment-name> .

juju-quickstart -e amazon realtime-syslog-analytic

Ou use o juju-gui, selecione o pacote da GUI Juju e implemente-o.

    
por Konstantinos Tsakalozos 04.08.2016 / 15:09