Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates #352

Merged
merged 3 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/22.4/container/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,22 @@ caption: Restart {term}`gvmd`
docker-compose -f $DOWNLOAD_DIR/docker-compose.yml -p greenbone-community-edition \
restart gvmd
```

### Redis Server keeps restarting `rm: cannot remove ‘/run/redis/redis.sock’: Permission denied`

Under some circumstances the [Unix Domain Socket](https://en.wikipedia.org/wiki/Unix_domain_socket)
of the redis server has got wrong permissions. To fix this issue it is required
to shutdown the `redis-server` and `ospd-openvas` containers and remove the
`redis_socket_vol` [docker volume](https://docs.docker.com/storage/volumes/).
The volume can be removed safely because it gets re-created on the next startup.

```{code-block} shell
---
caption: Re-create redis server socket volume
---
docker-compose -f $DOWNLOAD_DIR/docker-compose.yml -p greenbone-community-edition \
rm -s -f redis-server ospd-openvas
docker volume rm greenbone-community-edition_redis_socket_vol
docker-compose -f $DOWNLOAD_DIR/docker-compose.yml -p greenbone-community-edition \
up -d
```
2 changes: 1 addition & 1 deletion src/22.4/source-build/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ The Greenbone Security Assistant (GSA) sources consist of two parts:
```{code-block}
:caption: Setting the GSA version to use

export GSA_VERSION=22.5.1
export GSA_VERSION=22.5.2
```

```{include} /22.4/source-build/gsa/download.md
Expand Down
1 change: 1 addition & 0 deletions src/_static/docker-compose.yml
4 changes: 3 additions & 1 deletion src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,14 @@ and this project adheres to [Calendar Versioning](https://calver.org).
## Latest
* Update gvmd to 22.6.0
* Update gsad to 22.5.1
* Update GSA to 22.5.1
* Update GSA to 22.5.2
* Update ospd-openvas to 22.5.3
* Update openvas-scanner to 22.7.3
* Remove *Setting the Version* chapter
* Document how to configure a mail transport agent (MTA) for the community
containers
* Add section about redis-socket error to troubleshooting chapter of the
community containers

## 23.6.2 – 23-06-27
* Update to use Debian 12 (bookworm)
Expand Down