input {
file {
type => "ossec-alerts"
path => "/var/ossec/logs/alerts/alerts.json"
codec => "json"
}
}
filter {
geoip {
source => "srcip"
target => "geoip"
database => "/etc/logstash/GeoLiteCity.dat"
add_field => [ "[geoip][location]", "%{[geoip][longitude]}" ]
add_field => [ "[geoip][location]", "%{[geoip][latitude]}" ]
}
mutate {
convert => [ "[geoip][location]", "float"]
rename => [ "geoip", "GeoLocation" ]
remove_field => [ "timestamp" ]
}
}
output {
elasticsearch {
hosts => ["localhost:9200"]
index => "wazuh-alerts-%{+YYYY.MM.dd}"
document_type => "wazuh"
template => "/etc/logstash/wazuh-elastic2-template.json"
template_name => "wazuh"
template_overwrite => true
}
}This did not resolve the issue. All services (Logstash, Elasticstack, and Kibana) are running and alerts are being logged in alerts.json but still no data is available in Kibana. We tried going to localhost:9200 but only receive and error and as a result added a firewall rule allowing access to that port - still no resolution. Any assistance on this issue would be greatly appreciated.
Thank you,
Marc Baker
--
You received this message because you are subscribed to the Google Groups "Wazuh mailing list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+unsubscribe@googlegroups.com.
To post to this group, send email to wa...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/2f26e4b1-6890-4c4f-8017-5a549bd2cfac%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi Marc,in order to help here I will need some more info. Is Wazuh running in the same server as Elastic Stack? (I read you are using single node configuration, so I would assume it is).
We are beginning with only one stack
Since you already have alerts logged in alerts.json file, at least we know that everything works well there. Meaning that the issue is probably related to how Logstash reads that file and sends it to Elasticsearch.In order to know if Logstash is actually reading the file, please run:lsof /var/ossec/logs/alerts/alerts.json
java 4480 logstash 15r REG 252,0 222043493 14811176 /var/ossec/logs/alerts/alerts.json
ossec-ana 25893 ossec 9w REG 252,0 222043493 14811176 /var/ossec/logs/alerts/alerts.json
You should get something like this:root@vpc-ossec-manager:~# lsof /var/ossec/logs/alerts/alerts.jsonCOMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEfilebeat 18432 root 3r REG 202,1 95656073 400441 /var/ossec/logs/alerts/alerts.jsonossec-ana 27013 ossec 9w REG 202,1 95656073 400441 /var/ossec/logs/alerts/alerts.jsonIn my case it is filebeat the process that is reading the file, as I use it as a forwarder that feeds into logstash. In your case, it looks like logstash is configured to read that file directly, so you should be able to see a logstash process reading the file (instead of filebeat).If everything looks good so far, it would be time to check if you have Elasticsearch Wazuh template in place, try running:curl -XGET http://localhost:9200/_template?pretty
{
"ossec" : {
"order" : 0,
"template" : "ossec*",
"settings" : {
"index" : {
"refresh_interval" : "5s"
}
},
"mappings" : {
"ossec" : {
"dynamic_templates" : [ {
"notanalyzed" : {
"mapping" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"match_mapping_type" : "string",
"match" : "*"
}
} ],
"properties" : {
"srcip" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"data" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"dstport" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"program_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"rule" : {
"properties" : {
"firedtimes" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
},
"cve" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"PCI_DSS" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"description" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"groups" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"AlertLevel" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
},
"sidid" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
},
"CIS" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"info" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"frequency" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
}
}
},
"type" : {
"type" : "string"
},
"full_log" : {
"type" : "string"
},
"protocol" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"dstuser" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"@version" : {
"type" : "string"
},
"host" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"action" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"AlertsFile" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"AgentName" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"dstip" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"id" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"offset" : {
"type" : "string"
},
"systemname" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"decoder" : {
"properties" : {
"parent" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"fts" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
},
"name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"ftscomment" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"accumulate" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
}
}
},
"message" : {
"type" : "string"
},
"command" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"url" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"srcuser" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"@timestamp" : {
"format" : "dateOptionalTime",
"index" : "not_analyzed",
"type" : "date"
},
"AgentIP" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"location" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"GeoLocation" : {
"properties" : {
"timezone" : {
"type" : "string"
},
"area_code" : {
"type" : "long"
},
"ip" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"latitude" : {
"type" : "double"
},
"coordinates" : {
"type" : "double"
},
"continent_code" : {
"type" : "string"
},
"city_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"country_code2" : {
"type" : "string"
},
"country_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"dma_code" : {
"type" : "long"
},
"country_code3" : {
"type" : "string"
},
"location" : {
"type" : "geo_point"
},
"region_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"real_region_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"postal_code" : {
"type" : "string"
},
"longitude" : {
"type" : "double"
}
}
},
"SyscheckFile" : {
"properties" : {
"path" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"sha1_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"owner_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"perm_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"gowner_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"md5_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"perm_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"sha1_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"md5_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"gowner_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"owner_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
}
}
},
"status" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
}
}
}
},
"aliases" : { }
},
"wazuh" : {
"order" : 0,
"template" : "ossec*",
"settings" : {
"index" : {
"refresh_interval" : "5s"
}
},
"mappings" : {
"ossec" : {
"dynamic_templates" : [ {
"notanalyzed" : {
"mapping" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"match_mapping_type" : "string",
"match" : "*"
}
} ],
"properties" : {
"srcip" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"data" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"dstport" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"program_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"rule" : {
"properties" : {
"firedtimes" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
},
"cve" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"PCI_DSS" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"description" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"groups" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"AlertLevel" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
},
"sidid" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
},
"CIS" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"info" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"frequency" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
}
}
},
"type" : {
"type" : "string"
},
"full_log" : {
"type" : "string"
},
"protocol" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"dstuser" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"@version" : {
"type" : "string"
},
"host" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"action" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"AlertsFile" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"AgentName" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"dstip" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"id" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"offset" : {
"type" : "string"
},
"systemname" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"decoder" : {
"properties" : {
"parent" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"fts" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
},
"name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"ftscomment" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"accumulate" : {
"index" : "not_analyzed",
"type" : "long",
"doc_values" : "true"
}
}
},
"message" : {
"type" : "string"
},
"command" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"url" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"srcuser" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"@timestamp" : {
"format" : "dateOptionalTime",
"index" : "not_analyzed",
"type" : "date"
},
"AgentIP" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"location" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"GeoLocation" : {
"properties" : {
"timezone" : {
"type" : "string"
},
"area_code" : {
"type" : "long"
},
"ip" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"latitude" : {
"type" : "double"
},
"coordinates" : {
"type" : "double"
},
"continent_code" : {
"type" : "string"
},
"city_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"country_code2" : {
"type" : "string"
},
"country_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"dma_code" : {
"type" : "long"
},
"country_code3" : {
"type" : "string"
},
"location" : {
"type" : "geo_point"
},
"region_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"real_region_name" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"postal_code" : {
"type" : "string"
},
"longitude" : {
"type" : "double"
}
}
},
"SyscheckFile" : {
"properties" : {
"path" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"sha1_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"owner_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"perm_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"gowner_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"md5_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"perm_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"sha1_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"md5_after" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"gowner_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
},
"owner_before" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
}
}
},
"status" : {
"index" : "not_analyzed",
"type" : "string",
"doc_values" : "true"
}
}
}
},
"aliases" : { }
}
If everything is ok I would try starting logstash in foreground to see if it is showing errors:/usr/share/logstash/bin/logstash -f /etc/logstash/conf.d/01-wazuh.conf --path-settings=/etc/logstash/
Command: /usr/share/logstash/bin/logstash -f /etc/logstash/conf.d/01-ossec-singlehost.conf --path-settings=/etc/logstash/
Result: -bash: /usr/share/logstash/bin/logstash: No such file or directory
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+un...@googlegroups.com.
In single-host deployments, you also need to grant the logstash user access to OSSEC alerts file:
$ sudo usermod -a -G ossec logstash
--
java 4480 logstash 15r REG 252,0 222043493 14811176 /var/ossec/logs/alerts/alerts.json
ossec-ana 25893 ossec 9w REG 252,0 222043493 14811176 /var/ossec/logs/alerts/alerts.json
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+unsubscribe@googlegroups.com.
output { stdout { codec => rubydebug }
elasticsearch {
hosts => ["localhost:9200"]
index => "wazuh-alerts-%{+YYYY.MM.dd}"
document_type => "wazuh"
template => "/etc/logstash/wazuh-elastic5-template.json"
template_name => "wazuh"
template_overwrite => true
}
}i try the command in Markdown i think the mail format did something wrong here.
curl -XGET 'http://localhost:9200/ossec-2017.03.14/_search?pretty'
or
curl -XGET 'http://localhost:9200/wazuh-alerts–2017.03.14/_search?pretty'
output {
elasticsearch { hosts => ["localhost:9200"] index => "wazuh-alerts-%{+YYYY.MM.dd}"
document_type => "wazuh" template => "/etc/logstash/wazuh-elastic5-template.json" template_name => "wazuh" template_overwrite => true } }


On March 14, 2017 at 6:04:13 PM, Marc Baker (marcjb...@gmail.com) wrote:
Jose,Thank you for your message. I began the installation following instructions posted on http://documentation.wazuh.com/en/latest/. The site has no instructions concerning indexes and only references configuration files. I had to Google the configuration file names to find your Github sites. One of these sites had a Python script for Kibana indexes and since this was the only reference to indexes available from Wazuh, it was used. Obviously this was a mistake as we have now found it is for version 2.0. Does Wazuh have a guide for upgrading or should I go to the Logstash site for guidance? Also, would it be easier to uninstall Elasticsearc, Logstash, and Kibana to install the newest version or it the upgrade our best option?V/rMarc Baker
On March 14, 2017 at 7:07:58 PM, Marc Baker (marcjb...@gmail.com) wrote:
I am thinking that Elk 5.x may be best since it is the latest version and this is our first instance. Are there any known issues with the upgrade or is it considered stable?Thank you,Marc Baker
<D60E785F-3C31-4E54-A56A-82797CCD860B><2FED5694-4B2B-44FB-9C77-6BD5849D3EA3>
On March 14, 2017 at 7:27:07 PM, Marc Baker (marcjb...@gmail.com) wrote:
Jose,Since this is a new installation we can upgrade as long as it does not affect the deployed HIDS agents (which I do not think it will). If you can provide direction to delete the old and install the new I will be glad to do that.
Thank you,Marc
We need to do some steps here always assuming you was following our guide:
1.- Stop all ELK services and verify the services are stoped with ps axe | grep service-name.
service logstash stop
service elasticsearch stop
service kibana stop
2.- Delete the old ELK respositories
edit /etc/apt/sources.list
And delete the following lines:
deb https://packages.elasticsearch.org/logstash/2.1/debian stable main
deb http://packages.elastic.co/kibana/4.5/debian stable main
3.- Add the new repositories
curl -s https://artifacts.elastic.co/GPG-KEY-elasticsearch | apt-key add -
apt-get install apt-transport-https
echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | tee /etc/apt/sources.list.d/elastic-5.x.list
4.- Upgrade ELK (if you like you can upgrade all your system, but because i don’t know your environment only give you the command for these three packages)
apt-get update
apt-get install --only-upgrade kibana logstash elasticsearch
5.- If you have a question like the follow text reply no
Configuration file '/etc/elasticsearch/elasticsearch.yml'
==> Modified (by you or by a script) since installation.
==> Package distributor has shipped an updated version.
What would you like to do about it ? Your options are:
Y or I : install the package maintainer's version
N or O : keep your currently-installed version
D : show the differences between the versions
Z : start a shell to examine the situation
The default action is to keep your current version.
*** elasticsearch.yml (Y/I/N/O/D/Z) [default=N] ?
6.- Modify the file /etc/elasticsearch/jvm.options, line 22 and 23, the best configuration is give to Elasticsearch half of your RAM never more than 32GB, the next configuration is for a 4gb machine.
-Xms2g
-Xmx2g
7.- Modify Kibana configuration /etc/kibana/kibana.yml, line 7, in order to accept connections from different addresses than localhost, 0.0.0.0 for all but less secure, or your machine ip, this depends from your environment.
server.host: "0.0.0.0"
8.- Start elasticsearch service:
service elasticsearch start
8.- Now install wazuh-app with the next command (this can take a while)
/usr/share/kibana/bin/kibana-plugin install https://packages.wazuh.com/wazuhapp/wazuhapp.zip
9.- Now start logstash, kibana and verify with ps axe | grep service-name
service logstash restart
service kibana restar
The last part in this manual is install wazuh-api in order to connect with wazuh-app, for that follow the next guide, only the api section:
and connect Wazuh-API with Wazuh-app follow the next link:
Your manager ip will be localhost, you have all in the same machine.
We have finished the upgrade process and are now attempting to load the Wazuh API as instructed but receive the following error:
--
You received this message because you are subscribed to the Google Groups "Wazuh mailing list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/a1e7af2b-3300-4d10-92f4-cf7d63bd2d3c%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/7433657b-6a64-4916-b977-03c4b944fb16%40googlegroups.com.
2.- Delete the old ELK respositories
edit /etc/apt/sources.list
And delete the following lines:
deb https://packages.elasticsearch.org/logstash/2.1/debian stable main
deb http://packages.elastic.co/kibana/4.5/debian stable mainand then you only need to install wazuh-api the manager is already running, but you was reinstalling all.
Then i see in your packages you have wazuh-manager installed from sources over a ossec-hids-2.8.2
trying to overwrite '/var/ossec/agentless/su.exp', which is also in package ossec-hids-server 2.8.2-ubuntu10securityonion3
Sorry Marc but i think your system is very unstable, my recommendation, backup /var/ossec/etc/client.keys (is the keys from your agents, so you don’t need to register again), /var/ossec/etc/ossec.conf, and if you have a special configuraion in local_rules and decoders, do the same backup it.
Then reinstall all from scratch, following the guide in https://documentation-dev.wazuh.com/installation-guide/index.html, all with last versions. If you follow this and only this guide don’t take long the installation and restoring the ossec.conf and client.keys if the wazuh-manager ip is the same, all your agents will reconnect without problems.
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/7433657b-6a64-4916-b977-03c4b944fb16%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/d181ed56-aa7e-412c-9f86-7af4af55e8e8%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/CAB1uw79hiJbm1krRPvrPVCtrDV3MwM3yN%3Dc1cTcQ0uu9L8EAuA%40mail.gmail.com.
CODENAME=$(lsb_release -cs)
echo "deb https://packages.wazuh.com/apt $CODENAME main" \ | tee /etc/apt/sources.list.d/wazuh.list
Hi Marc
This command only search you OS distribution and add to the echo line.
CODENAME is a variable, nothing special, the content is the result from the command lsb_release -cs
You can run this command manually and see your OS version.
root@debian:~# lsb_release -cs
jessie
root@debian:~#
root@debian:~# CODENAME=$(lsb_release -cs)
root@debian:~# echo $CODENAME
jessie
root@debian:~#
root@debian:~# echo "deb https://packages.wazuh.com/apt $CODENAME main" \
> | tee /etc/apt/sources.list.d/wazuh.list
deb https://packages.wazuh.com/apt jessie main
root@debian:~# cat /etc/apt/sources.list.d/wazuh.list
deb https://packages.wazuh.com/apt jessie main
root@debian:~#
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/9e3763ad-db17-4723-b7db-a9deeb9eb8db%40googlegroups.com.
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/wazuh/a1e7af2b-3300-4d10-92f4-cf7d63bd2d3c%40googlegroups.com?utm_medium=email&utm_source=footer" rel="nofollow" target="_blank" onmousedown="this.href='https://groups.google.com/d/msgid/wazuh/a1e7af2b-3300-4d10-92f4-cf7d63bd2d3c%40googlegroups.com?utm_medium\x3demail\x26utm_source\x3dfooter';return true;" onclick="this
Marc
Try the next
apt-get clean allapt-get updateapt-get install wazuh-managerOn March 16, 2017 at 12:16:52 PM, Marc Baker (marcjb...@gmail.com) wrote:
etc/apt/sources.list.d/wazuh.list
To view this discussion on the web visit <a href="https://groups.google.com/d/msgid/wazuh/a1e7af2b-3300-4d10-92f4-cf7d63bd2d3c%40googlegroups.com?utm_medium=email&utm_source=footer" rel="nofollow" target="_blank" onmousedown="this.href='<a href="https://groups.google.com/d/msgid/wazuh/a1e7af2b-3300-4d10-92f4-cf7d63bd2d3c%40googlegroups.com?utm_medium%5Cx3demail%5Cx26utm_source%5Cx3dfooter';return" target="_blank" rel="nofollow" onmousedown="this.href='https://groups.google.com/d/ms
Marc try the next commands:
Looks like the package give you any problem during the installation, this is a new system or is the same than yesterday?
pkill -f ossecapt-get remove —-purge wazuh-managerapt-get clean allapt-get get updateapt-get install wazuh-managerTo unsubscribe from this group and stop receiving emails from it, send an email to wazuh+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/6cf85b92-3c05-4923-823a-8f4f5150205c%40googlegroups.com.
A new server is being prepared. New build will be done using instructions at https://documentation-dev.wazuh.com/installation-guide/installing-wazuh-server/wazuh_server_deb.html. Previous build was done using the old instructions on a new server and resulted in the OS becoming corrupted beyond repair. OS is being reloaded and hopefully the issues encountered the first time through have been corrected in the new documentation. We appreciate the Wazuh.com staff's patience and assistance in walking us through the extremely complicated install process involved with the Wazuh HIDS ELK Stack.
--
You received this message because you are subscribed to the Google Groups "Wazuh mailing list" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wazuh+un...@googlegroups.com.
To post to this group, send email to wa...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wazuh/eadcd846-c342-480f-98d2-a40207e9a09c%40googlegroups.com.
Marc
<div style="font-family:"helvetica Neue",helvetica;font-size
Marc
<div style="margin:0px;color:rgba(0,0,0,1);font-family:He