• AWS – Amazon S3 Transfer Acceleration

  • AWS – AWS Snowcone / Snowball / Snowmobile

  • AWS – AWS DataSync

  • AWS – AWS Kinesis Video Streams

  • AWS – AWS Kinesis Data Firehose.

  • AWS – AWS Kinesis Data Streams

  • AWS – How To Deploy Two Application In Nginx Server?

    AWS – How To Deploy Two Application In Nginx Server?

    GenAI – How To Deploy Two Application In Nginx Server ? Table Of Contents: Steps To Deploy Two Application In Nginx Server. Step-1: Mention This PUBLIC_URL Wherever You Are Referring The Static Files. Set base paths so React can load static files properly when hosted under a subfolder. In App.js, all paths to static files should use: src={`${process.env.PUBLIC_URL}/images/Harman-3.png`} Step-2: Take Two Separate Build For Two Applications. # For Softline $env:PUBLIC_URL="/softline/"; npm run build # For Hardline $env:PUBLIC_URL="/hardline/"; npm run build Step-3: SSH Into Server ssh [email protected] Step 4: Create Directories for Each App sudo mkdir -p /var/www/html/hardline sudo mkdir -p

    Read More

  • AWS – How To Redeploy Python API Changes?

    AWS – How To Redeploy Python API Changes?

    GenAI – How To Redeploy Python API Changes? Table Of Contents: Steps To Redeploy The Python Changes. Step-1: Make Your Code Changes Update your FastAPI or Flask code (hardline_main.py, etc.) Step-2: Stop the Existing Service sudo systemctl stop hardline.service Update your FastAPI or Flask code (hardline_main.py, etc.) Step-3: Reload systemd Daemon sudo systemctl daemon-reload This reloads the service definitions (needed only if you’ve edited .service files). Step-4: Start the Updated Service sudo systemctl start hardline.service This starts the service again using your latest code. Step 5 (Optional but Recommended): Enable Service on Boot sudo systemctl enable hardline.service Makes sure your

    Read More

  • AWS – How To Redeploy React JS Changes ?

    AWS – How To Redeploy React JS Changes ?

    GenAI – How To Redeploy React JS Changes ? Table Of Contents: Step By Step Process Of Redeploying React JS Changes. Step 1: Build the React App on Local Machine npm run build This generates a fresh /build folder with all updated static files. Step 2: Connect to Your EC2 / VM Use VS Code Remote SSH, or terminal: ssh ubuntu@<your-server-ip> Step 3: Remove Existing Old Files on Server sudo rm -rf /var/www/html/* Step 4: Upload New build Folder to Server sudo cp -r /home/Subrat/build/* /var/www/html/ Step 5: Confirm Upload ls -l /var/www/html/ Ensure you see files like index.html, static/,

    Read More

  • AWS – How To Deploy A Python API On An AWS EC2 Instance?

    AWS – How To Deploy A Python API On An AWS EC2 Instance?

    GenAI – How To Deploy A Python API On An AWS EC2 Instance? Table Of Contents: Introduction. Steps To Host React JS App In AWS. (1) Introduction Step-1: Connect to the EC2 Instance Step-2: Navigate To The Project Directory. Move to the directory where your Python API code is located: cd Rahul_R Step-3: Activate The Created Environment Where Your Dependencies Are Installed. Activate the Conda environment where all dependencies are installed: conda activate smart_search_env Step-4: Run the API in the Background Using ‘nohup’ Use nohup to run the API scripts in the background even after the terminal is closed. Redirect

    Read More