openSUSE Tumbleweed Redis 7.0.12
In the config, I disable the default user and define my own user
user default off
user MY_USER on +@all ~* >MY_PASSWORD
````
I connect by socket via `redis-cli` and can execute `keys *` without any problems
But I don't have access to the publish command.
PUBLISH time 1689623995 (error) NOPERM this user has no permissions to access one of the channels used as arguments
It used to work fine, but now, for some reason, it's not working. :-(
**Comment From: madolson**
> (error) NOPERM this user has no permissions to access one of the channels used as arguments
Your top comment isn't quite right. The problem is you don't have access to any channels. Which is the default behavior. You should instead use:
user MY_USER on +@all & ~ >MY_PASSWORD ```
Notice the &* which gives access to all channels.
Comment From: ghost
Thank you!