GrayLog: How to Reset Admin Password?
GrayLog: How to Reset Admin Password?
Graylog is a Powerful Opensource Log Management tool. It allows you to search and visualize your Data. There could be a situation where you have forgot your admin password and need to change it. This password cannot be changed using the API or via the web
interface. If you need to change it then follow the steps.
1. Generate a Secret Key.
pwgen -N 1 -s 96
2. Put it under “password_secret =” in /etc/graylog/server/server.conf.
3. Generate a Hash password
echo -n yourpassword | shasum -a 256
4.
Put it Under “root_password_sha2 =” in /etc/graylog/server/server.conf.
5.
Restart graylog-server service.
/etc/init.d/graylog-server restart
Other Interesting articles on Graylog:
- How to Integrate AD Authentication in Graylog?
- How to Create Roles in Graylog?
- GrayLog Configuration: GrayLog & Elasticsearch Performance Check Points.
- GrayLog Error: "We expected HTTP 200, but got a HTTP -1".
- Graylog: ERROR [IndexRotationThread] couldn’t point deflector to a new index
- Install Graylog 3 with Elasticsearch 6.x and mongodb 4.x on CentOS 8 / RHEL 8 Linux
- Install Graylog 3 with Elasticsearch 6.x and mongodb 4.x on CentOS 7 / RHEL 7 Linux
- How To Install MongoDB 4 on RHEL 8 / CentOS 8
- How to Change Docker Logging Driver from journald to json-file
Interesting Articles on Kubernetes:
- Kubernetes : Kubernetes Node Management, Maintenance, Delete
- How to add a New Worker Node to a existing kubernetes Cluster
- MinIO Client Installation and Quickstart
- PLEG is not healthy: Kubernetes Worker Node is in "NotReady" state
- Backup MySQL databases in Kubernetes
- How to Run Automated Tasks in Kubernetes with a cronjob
- How to Completely remove Kubernetes
Check more Kafka Articles:
- KafkaManager Error: Yikes! Ask timed out
- Kafka Manager OutOfMemoryError : java heap space?
- Updated: How to Configure kafka Monitoring with JMX Exporter and Prometheus.
- Kafka connection problem
- How to install kafka - Standalone Installation
- How to install Kafka Manager for Managing kafka cluster
- How to Install Confluent Kafka on Centos & Ubuntu
- How to Manually delete Apache Kafka topics
No comments