Member since
02-23-2018
9
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4383 | 05-17-2018 09:56 PM |
03-25-2019
10:52 AM
Hi Aaron, Cloudbreak does not support this feature. Make sure that NIFI supports this feature, please add the Nifi tag to the question. Gergely
... View more
03-22-2019
09:13 AM
Hi Aaron, What would like to achieve? Could you please provide some examples?
... View more
03-18-2019
09:08 PM
Hi Nathaniel, This issue discovered and fixed in Cloudbreak 2.7.2. You can update to this version easily, here are the steps: 1. Navigate to your deployment directory 2. Run the following commands: export CBD_VERSION=2.7.2
curl -Ls public-repo-1.hortonworks.com/HDP/cloudbreak/cloudbreak-deployer_${CBD_VERSION}_$(uname)_x86_64.tgz | tar -xz -C /bin cbd $(uname) will be replaced automatically with Linux or Darwin according to the OS you are running it > If you would like to download via browser, replace2.7.2 and $(uname) in the URL and then paste the URL in the browser and extract into the /bin directory 3.Verify the version cbd version 4.Next, restart Cloudbreak by using: cbd restart Let me know if you need any help! Br, Gergely
... View more
05-23-2018
09:55 AM
Hi Marshal, Could you please attach the logs? You can save into a file with this command: docker logs cbreak_cloudbreak_1 > cloudbreak.log Thanks, Gergely
... View more
05-22-2018
08:55 AM
Hi Marshal, We have some issue with cbd start command. I suggest a workaround for you. Change this: ExecStart=/usr/bin/cbd start With this: ExecStart=/usr/bin/cbd restart This command is an alias for these commands: cbd kill
cbd regenerate
cbd start Best regards, Gergely
... View more
05-17-2018
09:56 PM
1 Kudo
Hi Marshal, The Cloudbreak containers do not start on boot with the docker service. You can create a service and set to start on boot. Try this (working on CentOS 7): Create a file: /usr/lib/systemd/system/cbd-start Add to the file: [Unit]
Description=Start Cloudbreak containers
After=docker.service
[Service]
Type=forking
WorkingDirectory=/var/lib/cloudbreak-deployment
ExecStart=/usr/bin/cbd start
[Install]
WantedBy=multi-user.target
Restart services: systemctl daemon-reload Enable service on boot: systemctl enable cbd-start.service After restart the VM, and Cloudbreak is running, you can access it via a browser. Best regards, Gergely
... View more