Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

rabbitmq add user

# Replace us3r and passw0rd
sudo rabbitmqctl add_user us3r passw0rd
# Grant necessary permissions
sudo rabbitmqctl set_permissions -p / us3r “.*” “.*” “.*”
# Verify permissions
sudo rabbitmqctl list_permissions
Comment

rabbitmq create user

# create user
rabbitmqctl add_user myUser myPass
# make user an administrator
rabbitmqctl set_user_tags myUser administrator
Comment

rabbitmq set username

rabbitmqctl add_user username password
Comment

rabbit user create

$ rabbitmqctl add_user myUser myPass
$ rabbitmqctl set_user_tags myUser administrator
Comment

rabbitmq set username

rabbitmqctl set_user_tags username administrator
Comment

rabbitmq set username

rabbitmqctl set_permissions -p / username ".*" ".*" ".*"
Comment

PREVIOUS NEXT
Code Example
Shell :: neovim source current file 
Shell :: port kill in windows 
Shell :: linux convert files in folder 
Shell :: zipalign: command not found mac 
Shell :: update ruby version 
Shell :: ubuntu zip folder 
Shell :: first of file linux terminal 
Shell :: how to change date of file in linux 
Shell :: markdown terminal code 
Shell :: bastighg 
Shell :: git blame removed line 
Shell :: powershell set environment variable 
Shell :: zsh mac 
Shell :: how to check bash runs with sudo 
Shell :: tar extract to path 
Shell :: git fetch prune 
Shell :: git cleanup remove removed 
Shell :: ps aux tree 
Shell :: man command not found arch 
Shell :: npm install discord.js 
Shell :: discord components python install 
Shell :: nano with line numbers 
Shell :: shell ls a zip file 
Shell :: ubuntu install jq 
Shell :: install gnome-shell-extensions 
Shell :: react native git error: src refspec main does not match 
Shell :: powershell get process name by port 
Shell :: install gulp 
Shell :: how to push code to github from vscode 
Shell :: alpine linux list processes 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =