Member since
09-17-2015
436
Posts
736
Kudos Received
81
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 5200 | 01-14-2017 01:52 AM | |
| 7537 | 12-07-2016 06:41 PM | |
| 8962 | 11-02-2016 06:56 PM | |
| 2871 | 10-19-2016 08:10 PM | |
| 7352 | 10-19-2016 08:05 AM |
03-09-2016
05:33 PM
1 Kudo
Can you try opening the below? http://127.0.0.1/index.html?popup=1
There are also tutorials on the hortonworks website: http://hortonworks.com/tutorials/
... View more
03-07-2016
10:17 PM
4 Kudos
Use the below command instead. Note that to check whether datanode was put into maintenance mode, you will need to go to the Hosts tab in Ambari, navigate to the host running datanode and look for the maintenance icon there (ie the icon won't show up under Ambari > HDFS > Datanode because its a 'slave' component) curl -u admin:OpsAm-iAp1Pass -H "X-Requested-By:ambari" -i -X PUT -d '{"RequestInfo":{"context":"Turn On Maintenance Mode For DataNode"}, "Body":{"HostRoles":{"maintenance_state":"ON"}}}' http://viceroy10:8080/api/v1/clusters/et_cluster/hosts/serf120int.etops.tllsc.net/host_components/DATANODE
... View more
03-04-2016
07:24 AM
2 Kudos
Can you check if those components are in failed install state? If so you can click on the Hosts tab in ambari and navigate to the host where each of those clients/services are installed. Then from the dropdown next to the tez/slider/sqoop, select "Reinstall" This wiki may also be useful
... View more
02-25-2016
06:24 PM
2 Kudos
These should help https://cwiki.apache.org/confluence/display/RANGER/How+to+configure+Solr+Cloud+with+Kerberos+for+Ranger+0.5 https://community.hortonworks.com/articles/15159/securing-solr-collections-with-ranger-kerberos.html
... View more
02-08-2016
07:29 PM
1 Kudo
+ @bbende @Daniel Hendrix couple of things to check 1. Ambari metrics service is up 2, The metrics in question are appearing in AMS. You can query AMS using phoenix. Here is a collection of useful links on building metrics integration (including official apache page and Bryans blog on this and sample code)
... View more
02-07-2016
10:57 AM
2 Kudos
You can remove it from the PostgresDB by runnign below from Ambari node: su postgres
psql
\c ambari
DELETE FROM ambari.hostcomponentstate WHERE service_name IN ('KNOX');
DELETE FROM ambari.hostcomponentdesiredstate WHERE service_name IN ('KNOX');
DELETE FROM ambari.servicecomponentdesiredstate WHERE service_name IN ('KNOX');
DELETE FROM ambari.servicedesiredstate WHERE service_name IN ('KNOX');
DELETE FROM ambari.clusterservices WHERE service_name IN ('KNOX');
... View more
02-06-2016
10:30 PM
1 Kudo
You may be running old version of dashboard which hard coded sandbox.hortonworks.com in one of the configs. Run below to update the dashboard to get the new one which doesn't care about this: cd /opt/lucidworks-hdpsearch/solr/server/solr-webapp/webapp/banana/app/dashboards/
mv default.json default.json.orig
wget https://raw.githubusercontent.com/abajwa-hw/ambari-nifi-service/master/demofiles/default.json
... View more
02-05-2016
03:58 AM
1 Kudo
@Divya Gehlot any update?
... View more
02-04-2016
04:34 AM
1 Kudo
The "java.net.BindException:Address already in use" exception is just a warning that can be ignored: it will find a different port on its own if the default one (4040) is in use. From your netstat output it seems like it started on 4041 instead. To find process id of which process if running on those ports you can run below netstat -tulpn | grep 404 You can also check status of Spark on YARN jobs using Resource Manager UI e.g. if running on sandbox you can access it on http://VMs_IP_ADDRESS:8088/cluster and click the Spark AM to get to the Spark UI. Check this thread for more details https://community.hortonworks.com/questions/8257/how-can-i-resolve-it.html
... View more