Member since
03-14-2016
4721
Posts
1111
Kudos Received
874
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2487 | 04-27-2020 03:48 AM | |
| 4958 | 04-26-2020 06:18 PM | |
| 4042 | 04-26-2020 06:05 PM | |
| 3275 | 04-13-2020 08:53 PM | |
| 4991 | 03-31-2020 02:10 AM |
09-25-2019
09:22 PM
@irfangk1 Looks like the SmartSense service installation is failing for you. Failed to execute command: dpkg-query -l | grep 'ii\s*smartsense-*' || apt-get -o Dpkg::Options::=--force-confdef --allow-unauthenticated --assume-yes install smartsense-hst || dpkg -i /var/lib/ambari-agent/cache/stacks/HDP/3.0/services/SMARTSENSE/package/files/deb/*.deb; Exit code: 1; stdout: ; stderr: E: dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct the problem.
dpkg: error processing archive /var/lib/ambari-agent/cache/stacks/HDP/3.0/services/SMARTSENSE/package/files/deb/*.deb (--install):
cannot access archive: No such file or directory Thats the reason later at Step9 the services are failing to start because smartsense service binaries (due to package installation failure) are not present. INFO 2019-09-24 16:06:03,584 ComponentStatusExecutor.py:172 - Status command for HST_AGENT failed:
Failed to execute command: /usr/sbin/hst agent-status; Exit code: 127; stdout: ; stderr: /bin/sh: 1: /usr/sbin/hst: not found Better to skip and proceed the Step9 by clicking Next/Proceed/OK/Complete kind of button in UI and then later verify on the Host where the SmartSense package is supposed to be install and failing to install. Check if the repo is fine and if you are manually able to install the SmartSesne binary on that host? It might be some ambari repo access issue on that node where the SmartSense installation failed. Better to check and share the exact OS version and the ambari repo version. Like based on the ambari version please get the correct repo something like: # wget -O /etc/apt/sources.list.d/ambari.list <a href="http://public-repo-1.hortonworks.com/ambari/XXXXXXXXXXXXXX/updates/2.7.3.0/ambari.list" target="_blank">http://public-repo-1.hortonworks.com/ambari/XXXXXXXXXXXXXX/updates/2.7.3.0/ambari.list</a>
# apt-get clean all
# apt-get update You can get the correct ambari REPO URL from the following kind of links: https://docs.cloudera.com/HDPDocuments/Ambari-2.7.3.0/bk_ambari-upgrade-major/content/upgrade_ambari.html . .
... View more
09-24-2019
07:50 PM
OK. tested and successful
... View more
09-24-2019
12:02 AM
Thank you very much!
... View more
09-22-2019
02:46 PM
You can keep the jar at container level. 1. Connect your container through WinSCP. Mostly SFTP 127.0.0.1:2222 root/<password> 2. You will see root. You can create a directory ex. mrbuild. then place the jar there. 3. Run the job yarn jar mrbuild/mrapp1.jar VoteCountApplication /user/root/input /user/root/output I hope it will help.
... View more
09-19-2019
12:14 AM
1 Kudo
@rajesh1972 The maven artifact : "hbase-common:1.1.2" which provides the following JAR does. not seems to contain that class "org.apache.hadoop.hbase.types.CopyOnWriteArrayMap" ... you can check this JAR .. https://repo1.maven.org/maven2/org/apache/hbase/hbase-common/1.1.2/hbase-common-1.1.2.jar So can you please try changing the version of the artifact to 2.0.0 . (instead of 1.1.2) and then see if that works for you? Example: <dependencies>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-client</artifactId>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-common</artifactId>
<version>2.0.0</version>
</dependency>
</dependencies> . If your question is answered then, Please make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button. .
... View more
09-18-2019
05:59 AM
1 Kudo
@ThanhP Good to know that the issue is resolved. If your question is answered then, Please make sure to mark the answer as the accepted solution. If you find a reply useful, say thanks by clicking on the thumbs up button.
... View more
09-16-2019
06:06 AM
Can anyone please help?
... View more
09-13-2019
12:15 PM
Thanks a lot for your answer @jsensharma, using your command makes everything work as expected! I didn't try this before because I was a bit confused about the impact of the --silent flag. I was assuming (wrongly) that using --silent implied to have all the parameters set to their default values.
... View more
09-09-2019
11:29 AM
Hi, What does the nifi-app.log say? bootstrap will show JVM related messages but for this case inspect your nifi.app.log,
... View more
09-05-2019
09:48 AM
Though I have put rangeradmin as username and password inside ranger-admin/install,properties, it is not taking that,, Instead its taking admin:admin as credentials what I have setuo in Ambari server.. This I dont understand because ambari server I installed separately and never used Ambari to install Ranger, instead compiled Ranger from scratch.
... View more