How to enable RabbitMQ Management Plugin in Windows
You can enable a web user interface for RabbitMQ in 5 easy steps. Open the command prompt & go to below location.C:\Program Files (x86)\RabbitMQ Server\rabbitmq_server-3.2.3\sbinStep 2: Hit below…
A proper & well organized listing of IT companies
You can enable a web user interface for RabbitMQ in 5 easy steps. Open the command prompt & go to below location.C:\Program Files (x86)\RabbitMQ Server\rabbitmq_server-3.2.3\sbinStep 2: Hit below…
To split a string by another string separator, we can use Split function of C#.Example codeIn below example, we are converting a comma-separated string into a list of string.string nodeUrls =…
If you want to rename the current branch, hit below command:git branch -m <newname>If the branch you want to rename is different from the current branch, then hit below commandgit branch -m…
You can follow below steps to deploy a database to SQL Server from the .dacpac file. To deploy the database from dacpac, we will be using SQLPackage.exe. SQLPackage.exe is a command line utility that…
Here I am sharing few important commands in PowerShell which I found useful in my day to day coding. I hope these will help you as well.To print something in consoleWrite-Output "Database publihsed…
Both commands are used to set environment variable values in windows through command-line.SETSET is used to create new environment variable or change the value of existing environment variable. Its…
Yesterday when I was running my Unit Test Cases from Visual Studio Test Explorer, I found that few of my test cases have been skipped by Visual Studio. I wondered why it happened. Then I did some…
As I am new to Git & in learning phase of it's concepts. During my learning, I found below commands quite useful. So, I thought to document my learning by writing a blog here.Useful GIT Commandsgit…
I came across this issue when I was checking my Redis log file on server. When I looked at the Redis Log File, I wondered after seeing its size. It was about 4GB. When I tried to open that file, I got…
Redis command to get all keys in Redis, Use command - redis-cli KEYS *. This will return all available keys in Redis Data Store. To get key by specific key-name, use command redis-cli KEYS KeyName. To get keys that starts with particular text, use command redis-cli KEYS StartingText*.…