Jean M
04/09/2021, 11:08 AMAhmed
04/09/2021, 11:49 AMcrimsonknave
04/09/2021, 5:53 PM"err":"retrieve live queries: receive sql: redigo: nil returned"
. They appear to be caused either be running a query live via fleetctl
or ending one of those queries early. However, the errors keep popping up in the logs long after any queries are being run. They seem to spike up in regular 5 minute intervals, which is my logger_tls_period
. Is there something I can do to fix these?Dan Achin
04/09/2021, 11:56 PMarod
04/11/2021, 9:33 PMurl_prefix
value and now agents are not enrolling. Here is what I modified:
1. kolide.yml adding url_prefix
. Set it to /fleet
. Not Trailing /
2. Changed osquery.flags
from the agents to prepend /fleet
on everything (/fleet/api...)
3. Changed all fleetctl
references with /fleet
in the front. fleetctl config --url_prefix /fleet
......
What I'm I missing? Agents are not registering. =/
I am use osqueryctl
on MacOSproxx
04/12/2021, 12:50 PMDan Achin
04/12/2021, 4:34 PMselect * from osquery_info;
from Fleet as a distributed query, the results show 4.5.1, but when I run it on the servers themselves via osqueryi, I see 4.7.0. Is there a trick to get Fleet to update?Ryan
04/13/2021, 10:40 AMFrancisco Huerta
04/15/2021, 2:34 PMIan Muscat
04/15/2021, 3:33 PMarod
04/15/2021, 11:26 PMdemonbhao
04/19/2021, 10:37 AMAhmed
04/19/2021, 11:52 AMPRAGMA case_sensitive_like=true;
i found that osqueryi is able to run the queries fine, but when i set the query in fleet osquery agents throws this error
osqueryd[14484]: E0419 07:48:08.537770 14488 registry_factory.cpp:178] sql registry sql plugin caused exception: map::at: key not found
Dan Achin
04/19/2021, 6:26 PMSlackbot
04/20/2021, 2:32 PMarod
04/20/2021, 3:49 PMJuan Alvarez
04/20/2021, 5:04 PM--tls_server_certs
flag in the osquery side and once all the agents are using the new file, then change the certificate in the FleetDM side. I wonder if there is a better way to handle a certificate change?koba
04/20/2021, 5:26 PMresults
and logs
. I am trying to use filebeat
to forward the logs to a graylog
server. I set up the sidecar
and filebeat
on my fleetserver and as per the official documentation but I can't see any logs coming in. Has anyone come across any guide or how-to doc that I can refer? (edited)Jocelyn Bothe
04/20/2021, 7:32 PMFrancisco Huerta
04/22/2021, 7:07 PMWilli
04/26/2021, 2:53 PM[13:25 Uhr] heat.exe : error HEAT0001 : Access to the path 'Z:\wix\root\bin\orbit\windows\stable' is denied.
Does someone know how to change the WIX build path?Willi
04/26/2021, 4:08 PMMartin Pöhlmann
04/27/2021, 4:02 PMMike Myers
04/27/2021, 6:50 PMEdward
04/28/2021, 2:01 AMMan Pham
04/28/2021, 3:37 AMs
field values (0,1,2) stand for. I believe it stands for severity
but wasn’t sure on what the 0/1/2 stands for (INFO,WARNING,FATAL?). Was curious if anyone knows what they stand for. Oh - does anyone know what the i
field stand for too? Thanks!
{
"s": 0,
"f": "interface.cpp",
"i": 110,
"m": "Registering extension (kolide, 16829, version=, sdk=)",
"h": "hash_here",
"c": "Fri Mar 19 21:03:27 2021 UTC",
"u": 1616187807
}
Willi
04/28/2021, 3:34 PMversion: '3.7'
services:
fleet:
image: fleetdm/fleet:latest
container_name: fleet
depends_on:
- db
- redis
secrets:
- db-password
- server-certificate
- server-key
- jwt-key
environment:
FLEET_MYSQL_ADDRESS: localhost:3306
FLEET_MYSQL_DATABASE: kolide
FLEET_MYSQL_USERNAME: fleet
FLEET_MYSQL_PASSWORD: 1234
FLEET_REDIS_ADDRESS: localhost:6379
FLEET_SERVER_CERT: /run/secrets/server-certificate
FLEET_SERVER_KEY: /run/secrets/server-key
FLEET_AUTH_JWT_KEY: /run/secrets/db-password
restart: always
networks:
- my_network
ports:
- "1337:1337"
command: [ "fleet", "prepare", "db"]
entrypoint:
- /usr/bin/fleet
- serve
db:
image: mysql:5.7
container_name: db
secrets:
- db-password
restart: always
volumes:
- ./db:/var/lib/mysql
environment:
MYSQL_DATABASE: kolide
MYSQL_ROOT_PASSWORD_FILE: /run/secrets/db-password
MYSQL_USER: fleet
MYSQL_PASSWORD: 1234
networks:
- my_network
ports:
- "3306:3306"
redis:
image: redis:latest
container_name: redis
restart: always
networks:
- my_network
ports:
- "6379:6379"
secrets:
db-password:
file: ./password.txt
server-certificate:
file: ./server.cert
server-key:
file: ./server.key
jwt-key:
file: ./jwt.key
networks:
my_network:
driver: bridge
but the fleet docker will not connect to the mysql instance:
fleet | mysql="could not connect to db: dial tcp 127.0.0.1:3306: connect: connection refused"
I also tried it with mysql:8.0
but the error stays the same.
I would be very thankfull for any ideas!zwass
zwass
Martin Pöhlmann
04/28/2021, 7:06 PM