Cannot upgrade graylog open to 6.0.7

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:
I am trying to grade from 6.0.6 to version 6.0.7 but it tells me i am running the latest version of graylog.

2. Describe your environment:

  • OS Information:
    Ubuntu 22.04 running on proxmox

  • Package Version:
    6.0.6

  • Service logs, configurations, and environment variables:
    I followed this link:
    Upgrading Graylog in Ubuntu

3. What steps have you already taken to try and solve the problem?
I have tried the upgrade instructions, asking on reddit and searching the web.

4. How can the community help?
Any tips or suggestions on how to upgrade?

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]

when I run the command below per the docs:

wget https://packages.graylog2.org/repo/packages/graylog-6.0-repository_latest.deb
sudo dpkg -i graylog-6.0-repository_latest.deb
sudo apt-get update
sudo apt-get install graylog-enterprise

This is my response:
graylog-server is already the newest version (6.0.6-1).

Any suggestions?

anyone else getting this error or know what to check?

Howdy,
Were you able to follow the steps here?

https://www.reddit.com/r/graylog/comments/1g58swm/comment/lsdusdi

hello, I did and got the same results

based on the post, if it is tryly that im missing:

cat: /etc/apt/sources.list.d/graylog.list: No such file or directory

How do I rebuild that? Thanks

use
sudo nano /etc/apt/sources.list.d/graylog.list

Type in the repo source for the Graylog requirements, e.g.:

deb http://apt-mirror.your-domain.net/mongodb/ bullseye/6.0 stable main
deb http://apt-mirror.your-domain.net/opensearch/ bullseye/stable main
deb http://apt-mirror.your-domain.net/graylog/ bullseye/6.0 stable main

These are just samples and won‘t work without and editing. You are free to use the official Package Ressources.

Hope this is what you are looking for.

Thanks, if I manually create it will I have to manually update it? I would prefer to keep it aligned with the software. any suggestions?

Its difficult to know without deeper troublehsooting why you’re not getting the repo file created when installing our repo file via wget

BUT, in the event you do need to manually create this, you will only need to change the version number when a new release comes out. For example, from 6.0 to 6.1

This will create the repo file, but note that it must be run as root.

echo "deb https://packages.graylog2.org/repo/debian/ stable 6.1" | tee /etc/apt/sources.list.d/graylog.list
1 Like