Member since
10-02-2015
51
Posts
34
Kudos Received
12
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2365 | 08-23-2016 10:31 PM | |
1996 | 08-23-2016 08:59 PM | |
10141 | 08-22-2016 08:49 PM | |
3801 | 06-30-2016 10:59 PM | |
11859 | 06-27-2016 06:15 PM |
06-30-2016
10:59 PM
1 Kudo
I'm not sure if this will solve your problem, but let's take a look at the command here: ./knoxcli.sh create-alias ldcSystemPassword --cluster MyCluster --value Password@123 If we refer to the Knox User Guide (https://knox.apache.org/books/knox-0-9-0/user-guide.html#Special+note+on+parameter+main.ldapRealm.contextFactory.systemPassword) subsection on using ALIAS for the password you see the wording: Assuming the plain text password is “hadoop”, and your topology file name is “hdp.xml”, you would use following command to create the right password alias in credential store. ./knoxcli.sh create-alias ldcSystemPassword --cluster hdp --value hadoop It looks as if you need to specifically name the cluster the same as the topology file name. It appears the file you've attached was 'default.xml' so instead you might want to try: ./knoxcli.sh create-alias ldcSystemPassword --cluster default --value Password@123 On the other hand you could also try renaming the file to "MyCluster" as well.
... View more
06-27-2016
06:18 PM
Hi @AnjiReddy Anumolu I would take a look at the twitter streaming example. It puts files into HDFS but the configuration is somewhat similar. https://community.hortonworks.com/articles/1282/sample-hdfnifi-flow-to-push-tweets-into-solrbanana.html
... View more
06-27-2016
06:15 PM
2 Kudos
Typically the GetFile processor it pulls it into NiFi so you can do some type of processing or routing. It doesn't really put the file anywhere in particular. You should use something like the PutFile processor to move the file to a location of your choosing. Just make sure to route the success relationship to the PutFile processor and configure the PutFile processing to your liking. GetFile PutFile
... View more
06-24-2016
10:46 PM
I would either just move the file or trying using 'sudo' or if you're on Windows try opening the gitbash program 'As Administrator'. It may resolve your issues. Windows can be finicky with things like this.
... View more
06-24-2016
10:40 PM
The path to ~/Downloads/Restaurants.csv is probably wrong. You just need to locate wherever you downloaded the file to and point to that path instead of ~/Downloads/Restaurants.csv
... View more
06-24-2016
10:38 PM
Cameron did you try the commands above? I tried ssh on the IP you provided and it connected and asked for a password. I believe the commands above should work for you.
... View more
06-24-2016
10:27 PM
You said that you were working on Azure - when I referred the Sandbox I should have specified the local VM (VirtualBox/VMWare). try these and let me know the results: ssh cwarren@168.62.237.240
or scp ~/Downloads/Restaurants.csv cwarren@168.62.237.240:/cwarren
... View more
06-24-2016
10:21 PM
If you're on azure the port may just be port 22. Port 2222 is for Sandbox users. Try without the port argument.
... View more
06-22-2016
06:10 PM
1 Kudo
Looks like a typo. The forwarded ports which are a part of the Sandbox include only 8983. We'll get it updated @jmedel
... View more
06-16-2016
03:57 PM
@Koosha Tahmasebipour That's interesting. Do you have custom DNS settings on your computer? Have you tried disabling your firewall? Also I would make sure that the settings on your VirtualBox/Vmware box have not changed. Make sure the network adapter is 'NAT'. Have you been able to access ambari? Also here is a tutorial about the Sandbox: http://hortonworks.com/hadoop-tutorial/learning-the-ropes-of-the-hortonworks-sandbox/
... View more