Member since
01-19-2017
3681
Posts
633
Kudos Received
372
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 1617 | 06-04-2025 11:36 PM | |
| 2075 | 03-23-2025 05:23 AM | |
| 986 | 03-17-2025 10:18 AM | |
| 3757 | 03-05-2025 01:34 PM | |
| 2583 | 03-03-2025 01:09 PM |
10-17-2019
08:03 AM
@Jena Great patience never give up 😁😂. I think your problem is now resolved I suspect incompatibility problem with IE 11 I need to check the documentation later today. Please take some time to accept my reponse as valid answer so other members can use 8t to resolve the same issue. Happy hadooping
... View more
10-17-2019
07:57 AM
1 Kudo
@ThanhP There you go a happy member 😁😂 Please get some time and accept my solution so other members can use it to solution the same problem. Happy hadooping !!!
... View more
10-16-2019
09:25 PM
1 Kudo
@ThanhP As reiterated Only Adpater1 should be active with bridged Adapter and Adapter2, Adapter3, Adapter4 not activated. If so restart your sandbox and on the Splash UI [Balck window] you should see a class C IP address a 192.168.x.x use that http://192.168.x.x :9995 let me know
... View more
10-16-2019
12:34 PM
1 Kudo
@ThanhP The log says the opposite "Started ServerConnector@7692d9cc{HTTP/1.1,[http/1.1]}{0.0.0.0:9995}" I think you should be hitting the wrong port or IP. How have you set up your network? Bridged/NAT, can you share the output of $ ifconfig If you are launching Zeppelin through Ambari Login to Ambari (operations console) as user amy_ds/amy_ds username/password combination. http://sandbox-hdp.hortonworks.com:9995 Please share your feedback
... View more
10-15-2019
10:32 PM
@Jena I think you are on the right track but some steps away. You need to log in using the Web CLI as root/hadoop first change the root password after successfully doing that while still logged in as root rest the #ambari-admin-password-reset this will launch in the background a series of script execution and trigger the restart of ambari server and some components some by default are in maintenance mode ONLY after then can you access the DAS UI please let me know if thats clear enough. HTH
... View more
10-10-2019
11:53 PM
@irfangk1 That means you didn't install MySQL. Can I ask you one question? What documentation are you using as a reference?The basic steps are described when you are preparing the environment. To me it seems you launched the deployment using the embedded database Postgresql but now you want to switch to MySQL. To do that you need to install mysql and pre-create the ambari database before launching the Ambari server setup, that explains why you are getting all those errors. I can send you a procedure in 9 hours
... View more
10-10-2019
09:19 PM
@irfangk1 Can you share the screenshot of your Ambari Hive config because when I see "jdbc:mysql://host.com/metastore" "hive" that means you dont have not The default TCP port for PostgreSQL is usually 5432 see in the postgresql.conf
... View more
10-10-2019
01:18 PM
@irfangk1 If you switched to Mysql why do you have these entries in your ambari.properties server.jdbc.database=postgres server.jdbc.database_name=ambari server.jdbc.postgres.schema=ambari Can you share the output of # cat /etc/ambari-server/conf/ambari.properties | grep mysql Why is that in the log again I see "jdbc:mysql://host.com/metastore" "hive" where is the PORT number?
... View more
10-10-2019
01:01 PM
@irfangk1 This line in your error log says it all org.apache.ambari.server.DBConnectionVerification "jdbc:mysql://host.com/metastore" "hive" The format should be jdbc:mysql://host-name: port usually for Mysql it's 3306 to initiate any database connectivity you need to know the port at which the database is waiting for connections Ambari.properties # cat /etc/ambari-server/conf/ambari.properties | grep mysql custom.mysql.jdbc.name=mysql-connector-java.jar previous.custom.mysql.jdbc.name=mysql-connector-java.jar server.jdbc.database=mysql server.jdbc.driver=com.mysql.jdbc.Driver server.jdbc.rca.driver=com.mysql.jdbc.Driver server.jdbc.rca.url=jdbc:mysql://your_host:3306/ambari server.jdbc.url=jdbc:mysql://your_host:3306/ambari Backup these files Verification jar # mv /var/lib/ambari-agent/cache/DBConnectionVerification.jar /var/lib/ambari-agent/cache/DBConnectionVerification.jar.bck MySql connector # mv /var/lib/ambari-agent/cache/mysql-connector-java.jar /var/lib/ambari-agent/cache/mysql-connector-java.jar.bck Then restart Ambari and the agent
... View more