I am in web interface my system inputs collection of logs are running but there is no message so I did not understand why

Before you post: Your responses to these questions will help the community help you. Please complete this template if you’re asking a support question.
Don’t forget to select tags to help index your topic!

1. Describe your incident:

My incident are only in web interface my all service are running

2. Describe your environment:

  • OS Information:

  • Package Version:7

  • Service logs, configurations, and environment variables:

All running

3. What steps have you already taken to try and solve the problem?
I read all the community

4. How can the community help?

By answer the question

Helpful Posting Tips: Tips for Posting Questions that Get Answers [Hold down CTRL and link on link to open tips documents in a separate tab]

Have you tried manually sending a message using curl or netcat?

No I will not try that but this is in web interface I find that I it is not connected to that computer from where I collect log so if you will guide me about that

Is this even possible for port 9000 being the entry port to the web-interface of graylog?

@Osman Could I ask if this is a new installation and if so what guide did you follow?

It appears to be port 9000 UDP so it should still work, you can test with the below command from shell altering the IP address to that of your Graylog instance.

echo '<14>syslog-test-source testing testing 123' | nc -v -u -w 0 192.168.69.3 9000

Any progress on that?

I created the docker-compose like in documentation, start up and configure a input GELF UDP and didn’t work… nwither with curl command
my setup:
graylog:
hostname: “server”
image: “graylog/graylog:6.0.5”
# To install Graylog Open: “graylog/graylog:6.0”
depends_on:
mongodb:
condition: “service_started”
opensearch:
condition: “service_started”
networks:
- graylog
entrypoint: “/usr/bin/tini – wait-for-it opensearch:9200 – /docker-entrypoint.sh”
environment:
# - GRAYLOG_NODE_ID_FILE=“/usr/share/graylog/data/config/node-id”
- GRAYLOG_HTTP_BIND_ADDRESS=0.0.0.0 #0.0.0.0:9000
- GRAYLOG_ELASTICSEARCH_HOSTS=http://opensearch:9200
- GRAYLOG_MONGODB_URI=mongodb://mongodb:27017/graylog
# To make reporting (headless_shell) work inside a Docker container
- GRAYLOG_REPORT_DISABLE_SANDBOX=true
# CHANGE ME (must be at least 16 characters)!
- GRAYLOG_PASSWORD_SECRET=somepasswordpepper
# Password: “admin” → u: admin p: admin → 8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918
- GRAYLOG_ROOT_PASSWORD_SHA2=8c6976e5b5410415bde908bd4dee15dfb167a9c873fc4bb8a81f6f2ab448a918
- GRAYLOG_HTTP_EXTERNAL_URI=http://127.0.0.1:9000/
ports:

GELF TCP

  - "12201:12201/tcp"
  # GELF UDP
  - "12201:12201/udp"
  # Graylog web interface and REST API
  - "9000:9000/tcp"

Thanks for reply I am doing my internship so I did not understand why my logs are not seeing and I have to submit my project in 5 days and now my internship is finish and I have submitted my project in time so I concluded this

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.