Member since
09-18-2015
191
Posts
81
Kudos Received
40
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2045 | 08-04-2017 08:40 AM | |
5421 | 05-02-2017 01:18 PM | |
1109 | 04-24-2017 08:35 AM | |
1116 | 04-24-2017 08:21 AM | |
1333 | 06-01-2016 08:54 AM |
05-08-2016
09:20 PM
Hi @Wellington De Oliveira in this case, standard linux practices apply, first of all find out what is consuming all the space, I'm guessing that you mean the OS root partition is full? In which case it's probably logs that have filled up /var/log Use a combination of: df -h and du -h --max-depth=1 /path/of/interest (where /path/of/interest is where you're investigating the space consumption. Of course if you are talking about HDFS being full on one node, that's something else, let me know if that's the case.
... View more
05-07-2016
11:28 AM
@David Lyle Thanks for that! Happy to help.
... View more
05-05-2016
06:32 PM
Looks like a lot of the files are covered, but I don't see the metron_pcapservice.log covered in the files changed by that pull request? Unless I've missed something?
... View more
05-05-2016
09:49 AM
@ASHISH Rastogi There are two problems with your etc/profile configuration. The first is you have a set of double quotes on each line that are not closed. The second is that you have a trailing / at the end of the line. Change the end of both of the lines in your etc/profile configuration from: 8080/
to 8080"
Then log out, and log back in again via ssh, and retry the wget command.
... View more
05-05-2016
09:21 AM
1 Kudo
@ASHISH Rastogi You need to remove the "/" off the end of the proxy definition. The error message tells you what the problem is. It doesn't understand "8080/" as a port number, edit your proxy settings so the port is just "8080" with no "/" after it. Quotes above used for emphasis, don't add quotes into your config file. I've told you how to fix this already, it's not in the yum config file you keep editing, it is wherever your proxy settings are configured in your bash shell environment.
... View more
05-05-2016
08:54 AM
Just so everyone is aware, we need to put a logrotate rule in for /var/log/metron_pcapservice.log as after less than 10 days of running that log file filled up my root partition on my Metron node making all kinds of bad stuff happen. I'm running the "First Steps in the Cloud" AWS style deployment.
... View more
Labels:
- Labels:
-
Apache Metron
05-05-2016
08:20 AM
@ASHISH Rastogi Can you show me what the output is of running the first command? wget -nv
http://public-repo-1.hortonworks.com/ambari/centos6/2.x/updates/2.2.1.1/ambari.repo -O
/etc/yum.repos.d/ambari.repo
... View more
05-04-2016
08:37 AM
In a production cluster, absolutely a minimim of three Zookeepers. However in the Metron TP1 as it is only a test environment there is only a single Zookeeper deployed on Node 2.
... View more
05-04-2016
08:35 AM
You could, but that would be a lot more work than the answer I gave above.
... View more
05-04-2016
07:17 AM
Please speak to whoever setup that linux instance to confirm as there are many places that your proxy configuration could have been set. It is possible to temporarily override the settings by running the following commands (replace proxysrv with your web proxy server name including any potential user/pass info, and 8080 with whatever port your proxy service runs on): export http_proxy="http://proxysrv:8080
export https_proxy="https://proxysrv:8080
... View more