Giter Club home page Giter Club logo

requestservice's Introduction

Configuration and Local Setup on Windows

RabbitMQ Setup Guide for Windows

Follow these steps to install and configure RabbitMQ locally.

Prerequisites Ensure you have Erlang OTP installed on your system. RabbitMQ requires Erlang to run. Installation Steps

Step 1: Install Erlang OTP Download the Erlang OTP installer from the Erlang official website. Run the downloaded installer and follow the on-screen instructions to complete the installation. After installation, verify Erlang is correctly installed by opening a command prompt and typing erl. You should enter the Erlang shell.

Step 2: Install RabbitMQ Download the RabbitMQ server installer from the RabbitMQ official website. Run the downloaded installer. Follow the instructions, and complete the installation process. RabbitMQ will be installed as a Windows service and start automatically.

Step 3: Enable RabbitMQ Management Plugin The RabbitMQ Management Plugin provides a user-friendly web interface for managing your RabbitMQ server.

Open a Command Prompt as Administrator. Navigate to your RabbitMQ sbin directory. This is typically found at C:\Program Files\RabbitMQ Server\rabbitmq_server-\sbin. Run the following command to enable the management plugin: bash Copy code rabbitmq-plugins enable rabbitmq_management The plugin will be enabled, and the management interface will be available. Step 4: Access RabbitMQ Management UI Open a web browser and navigate to localhost. The default login credentials are: Username: guest Password: guest After logging in, you will have access to the RabbitMQ Management UI where you can manage exchanges, queues, bindings, and more. Verifying RabbitMQ Service Status You can check the status of the RabbitMQ service anytime by using the following command in an Administrator Command Prompt:

rabbitmqctl status

This command provides detailed information about the RabbitMQ server's running status.

SQL Server Express Setup Guide for Windows

This README provides a step-by-step guide on installing and configuring SQL Server Express on Windows. SQL Server Express is a free, lightweight edition of SQL Server, ideal for development and small production environments.

Prerequisites Windows operating system. Internet connection for downloading the installer. Installation Steps Step 1: Download SQL Server Express Navigate to the SQL Server Downloads: Go to the SQL Server downloads page. Select the Express Edition: Click on the "Download now" link under the "Express" edition section. Step 2: Run the Installer Launch the Installer: Once the download completes, run the installer executable. Choose the Installation Type: The installer provides options for a basic, custom, or download media installation. For most users, the "Basic" installation is sufficient. Click on "Basic". Step 3: Accept the License Terms Agree to the License Terms: Read the license agreement, then check the box to accept the terms and conditions. Click "Install": Proceed with the installation. Step 4: Configure SQL Server After installation, you might need to perform some basic configurations to get started:

Open SQL Server Management Studio (SSMS): SSMS is a separate download. If you haven't installed it yet, download SSMS and install it. Connect to the Server: Launch SSMS, and connect to the local SQL Server Express instance. The server name for a default instance is .\SQLEXPRESS. Create a Database: Once connected, you can create a new database by right-clicking on the "Databases" folder and selecting "New Database". Step 5: Enable TCP/IP (Optional) By default, SQL Server Express is configured to allow connections only from the local machine. To enable remote connections:

Open SQL Server Configuration Manager: Search for it in the Start menu. Enable TCP/IP: Navigate to "SQL Server Network Configuration" > "Protocols for SQLEXPRESS". Right-click on "TCP/IP" and select "Enable". Restart SQL Server: In the "SQL Server Services" section, right-click on "SQL Server (SQLEXPRESS)" and choose "Restart". Step 6: Configure Firewall (Optional) If you want to allow remote connections to your SQL Server Express instance, you may need to configure the Windows Firewall:

Open Windows Firewall: Go to Control Panel > System and Security > Windows Defender Firewall > Advanced Settings. Add an Inbound Rule: Click "New Rule" > "Port" > "TCP", and specify the port used by SQL Server (default is 1433). Follow the prompts to name and enable the rule. Conclusion You now have SQL Server Express installed and configured on your Windows machine. You can begin developing your applications, managing databases, or learning SQL Server functionalities with this lightweight, yet powerful database system.

Remember, SQL Server Express has limitations compared to the full version of SQL Server, such as database size restrictions and reduced performance features. However, it remains an excellent option for small applications, lightweight web sites, and learning purposes.

Entity Framework Core Migrations

Step 1: Set Up Your Environment

Ensure you have the .NET SDK installed on your machine. You can download it from the official .NET download page. Install your preferred code editor or IDE. Visual Studio Code or Visual Studio are recommended for .NET development.

Step 2: Ensure you have the EF Core tools for the .NET CLI installed globally (or update them):

dotnet tool install --global dotnet-ef --version

or

dotnet tool update --global dotnet-ef

Step 6: Create Your First Migration

Open a terminal in your project's root directory. Run the following command to create an initial migration:

dotnet ef migrations add InitialCreate

Step 7: Update the Database

Apply the migration to your database to update its schema by running:

Application Setup Guide for Windows

You have the option to configure either an in-memory store or SQL Server Express as the database.

image

dotnet ef database update

How to Test the APIs

Step 1: Generate a JWT token through the Authentication API.

image

Step2: For instance, you can input the Bearer token eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3MTAyMDE5MTl9.8rPC3Y_tPPxgwCcD4QSsCDB0LSVZdJ6-pTcTT7TUUbY into Swagger by clicking on the "Authorize" button.

image

Step 3: For all requests the process is the same

Create a product by using the POST method, as illustrated in the image below:

image

The API belows post data into RebitMQ

image

RabitMQ Admin Tool

user: guest pass: guest

RabitMQ Queue

image

Published messages:

image

requestservice's People

Contributors

aesteves900 avatar

Watchers

 avatar

Forkers

900esteves

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.