Member since
11-14-2017
6
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2001 | 11-17-2017 02:41 PM |
01-12-2018
10:31 PM
@Edgar Orendain
Thank you, problem solved. My system info:
... View more
01-04-2018
03:44 AM
@Edgar Orendain @Andreas Danckert I tested the Docker Sandbox in the following environment as you suggested, but the problem continues: Figure 1. System info. Figure 2. Error description.
... View more
01-02-2018
10:38 PM
I got the same problem. I tried to increase the timeout for Ambari server following this post adjusting-startup-timeout-for-ambari-server-web-ui, but the problem continue.
... View more
11-17-2017
02:41 PM
Hi @Dinesh Das, I'm using Sandbox 2.6.1 Tips: * You can find the phoenix version in the path: /usr/hdp/current/phoenix-client/lib/phoenix-core-{phoenix.version}.jar * For testing purposes I'm using the following properties: url: jdbc:phoenix:localhost:2181:/hbase-unsecure
driver-class-name: org.apache.phoenix.jdbc.PhoenixDriver
username: anything
password: anything You need to add the following properties, dependencies and repositories to your pom file: <properties>
...
<phoenix.version>4.7.0.2.6.1.0-129</phoenix.version>
...
</properties>
<dependencies>
...
<dependency>
<groupId>org.apache.phoenix</groupId>
<artifactId>phoenix-core</artifactId>
<version>${phoenix.version}</version>
</dependency>
...
</dependencies>
<repositories>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>hortonworks.release.repo</id>
<name>Hortonworks Release Repository</name>
<url>http://repo.hortonworks.com/content/repositories/releases/</url>
</repository>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>hortonworks.third-party.artifacts.1</id>
<name>Hortonworks third-party artifacts 1</name>
<url>http://repo.hortonworks.com/content/repositories/jetty-hadoop/</url>
</repository>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>hortonworks.third-party.artifacts.2</id>
<name>Hortonworks third-party artifacts 2</name>
<url>http://repo.hortonworks.com/content/repositories/re-hosted/</url>
</repository>
<repository>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>hortonworks.public.group.repo</id>
<name>Hortonworks Public Group Repository</name>
<url>http://repo.hortonworks.com/content/groups/public</url>
</repository>
</repositories> That's all you need 🙂
... View more