RabbitMQ Command-Line Operations Guide
RabbitMQ Command-Line Operations Guide
===========================================================================================================
Creating an admin user and assigning permissions
rabbitmqctl list_users
rabbitmqctl add_user admin admin
rabbitmqctl set_permissions -p / admin ".*" ".*" ".*"
rabbit ...
Posted on Fri, 15 May 2026 04:21:23 +0000 by toniknik1982
Setting Up Virtual Hosts in XAMPP Apache Server
Introduction
Virtual hosts allow you to run multiple websites on a single XAMPP installation. This guide walks you through configuring Apache to support virtual host configurations.
Step 1: Configure httpd.conf
Navigate to the Apache configuration file at xampp/apache/conf/httpd.conf.
Enable Virtual Hosts Module
Search for the keyword httpd-vho ...
Posted on Wed, 13 May 2026 15:21:05 +0000 by squariegoes