# graylog

### Create users and groups
First create a user and group `graylog`
```bash
useradd -u 1100 -m graylog
```
Add the user `graylog` to the sudo group
```bash
usermod -a -G sudo graylog
```
Add the user `graylog` to the docker group
```bash
usermod -aG docker graylog
```
Give the user the bash shell
```bash
usermod --shell /bin/bash graylog
```