Analytica Learning
Analytica Learning
  • 197
  • 105 725
A Detailed Walkthrough on Securing EC2 Connectivity: PuTTY and SSH with Private Key Authentication"
Connecting to Amazon Elastic Compute Cloud (EC2) instances using PuTTY and SSH with private key authentication provides a secure and efficient way to access your virtual servers in the cloud. PuTTY, a popular open-source SSH and telnet client for Windows, simplifies the process of connecting to Linux-based EC2 instances.
To establish a connection, you first need to obtain the private key associated with your EC2 instance during the instance creation process. Once you have the private key file (usually a .pem file), you can use it to connect with EC2 through Putty with SSH protocol.
มุมมอง: 78

วีดีโอ

Unleashing the Power of EC2 Instances: A Step-by-Step tutorial to create EC2 Instance with AWS Linux
มุมมอง 37ปีที่แล้ว
Amazon Elastic Compute Cloud (EC2) instances lie at the heart of Amazon Web Services (AWS), representing virtual servers in the cloud that empower users to run applications with unmatched flexibility and scalability. EC2 instances essentially provide resizable compute capacity, allowing users to scale up or down based on their computational needs. These instances come in various types, known as...
Fortifying Cloud Security: A Spotlight on AWS Security Groups to Secure EC2 Instances in Cloud
มุมมอง 31ปีที่แล้ว
In the realm of cloud computing, AWS Security Groups stand as a fundamental component, serving as virtual firewalls that control inbound and outbound traffic for Amazon EC2 instances. These security groups act as a protective barrier, regulating access to computing resources within an Amazon Virtual Private Cloud (VPC). Each EC2 instance can be associated with one or more security groups, allow...
Decoding Repetition: Exploring the deep relationship Between Recursion and Loops in Python Language
มุมมอง 32ปีที่แล้ว
In the realm of programming languages, recursion and loops are two powerful concepts that share a fundamental relationship, both serving as mechanisms for executing repetitive tasks. While they achieve similar goals, they do so in distinct ways, each with its own advantages and considerations. Loops, such as "for" and "while" loops, operate by repeating a set of instructions until a specified c...
Internet Gateway And Route Tables
มุมมอง 39ปีที่แล้ว
In the vast world of cloud computing, where information flows seamlessly, AWS Internet Gateway and Route Tables act as the guardians of connectivity, ensuring that your digital assets can communicate with the outside world securely. Think of AWS Internet Gateway as a virtual front door to your cloud environment-a gateway that connects your private space to the expansive internet. It's like havi...
Navigating the AWS Cloud Network: Understanding and Configuring Subnets for a Digital Enterprises
มุมมอง 19ปีที่แล้ว
In the world of cloud computing, where data travels seamlessly across the internet, AWS Subnets serve as the virtual neighborhoods where your applications and resources reside. Think of them as designated spaces within the vast AWS landscape, allowing you to organize and manage your digital assets more effectively. Imagine you have a plot of land-your AWS environment. This land is divided into ...
Unraveling Recursion: A Deep Dive into the Elegant Power of Recursive Functions in Python Language"
มุมมอง 26ปีที่แล้ว
Recursion is a programming concept where a function calls itself either directly or indirectly to solve a problem. This powerful technique allows for the implementation of elegant and concise solutions to certain types of problems, particularly those that exhibit a recursive structure. Recursion is based on the principle of breaking down a complex problem into simpler, more manageable sub-probl...
Empowering Decision-Making Streamlining Master Data Entity Sharing with SQL Server Reporting Service
มุมมอง 281ปีที่แล้ว
Sharing Master Data Entities through SQL Server Reporting Services (SSRS) facilitates a streamlined and efficient approach to delivering critical business information to end-users. Master Data Entities represent a consolidated and standardized view of core business data, ensuring consistency and accuracy across the organization. By leveraging SSRS for sharing this valuable information, business...
How To Configure AWS VPC
มุมมอง 68ปีที่แล้ว
Amazon Virtual Private Cloud (AWS VPC) is a fundamental component of Amazon Web Services (AWS) that empowers users to create a logically isolated section within the AWS Cloud where they can launch and operate resources. Think of it as your private, customizable slice of the AWS cloud infrastructure. AWS VPC provides several key features that contribute to its importance in cloud architecture. F...
Efficiency and Simplicity: Unlocking the Power of Python's Built-In Functions in Your Code
มุมมอง 34ปีที่แล้ว
Leveraging built-in functions in Python is a cornerstone of efficient and expressive programming. Python comes equipped with a diverse set of built-in functions that perform a wide range of tasks, from basic operations to complex functionalities. Harnessing these functions offers several advantages, making Python a powerful and user-friendly programming language. Firstly, built-in functions pro...
A Detailed Walkthrough What is PyPI and How to Utilize it for swift development in Python language
มุมมอง 105ปีที่แล้ว
PyPI, the Python Package Index, is the official repository for Python packages. It serves as a central hub where developers can publish their Python libraries and packages, making them available for others to download and use. PyPI is an essential component of the Python ecosystem and is commonly used with the pip package installer to manage and install Python packages. PyPI is an integral part...
Utilizing Master Data Services for Standardizing and Transforming Incoming Data in SQL Server 2022.
มุมมอง 399ปีที่แล้ว
Master Data Services (MDS) plays a crucial role in the realm of Data Governance by providing a centralized and authoritative source for managing critical business data. As part of an organization's broader data management strategy, MDS serves as a hub for creating, managing, and distributing master data, ensuring consistency and accuracy across various applications and systems. By establishing ...
A Detailed Walkthrough: How to check the Quality of Invoice_Date Using TRY_CAST in SQL Server
มุมมอง 464ปีที่แล้ว
In SQL Server, the TRY_CAST function is a valuable tool for converting data types safely, especially when dealing with potential conversion errors. When working with date columns, TRY_CAST is particularly useful for attempting to cast a value to a specified data type (in this case, a date), but without raising an error if the conversion fails. For example, when using TRY_CAST on a Invoice_Date ...
Mastering Python Functionality: A Comprehensive Video to Writing Efficient and Modular Functions
มุมมอง 12ปีที่แล้ว
Using functions in Python offers several advantages, contributing to code organization, reusability, and maintainability. Functions play a pivotal role in Python programming, offering a multitude of advantages that enhance the efficiency and readability of code. One of the primary benefits is code organization. By encapsulating specific tasks within functions, developers can modularize their co...
A Detailed Walkthrough: Writing While Loop in Python Language
มุมมอง 32ปีที่แล้ว
A "while loop" is a fundamental control flow structure in programming that repeatedly executes a block of code as long as a specified condition remains true. This type of loop is particularly useful when the number of iterations is unknown or depends on a dynamic condition. While loops are versatile and allow for dynamic iteration, but it's essential to ensure that the condition eventually beco...
A Detailed Walkthrough: Writing For Loop in Python Language
มุมมอง 16ปีที่แล้ว
A Detailed Walkthrough: Writing For Loop in Python Language
Decisions and Flow Control: Unleashing the Power of Conditional Statements in Python Programming
มุมมอง 33ปีที่แล้ว
Decisions and Flow Control: Unleashing the Power of Conditional Statements in Python Programming
Foundations of Python Programming: Understanding Variables and Data Types in Python With Examples
มุมมอง 41ปีที่แล้ว
Foundations of Python Programming: Understanding Variables and Data Types in Python With Examples
Python Libraries: A Quick Guide with Practical Examples and How to Seek Help of classes and Methods
มุมมอง 444ปีที่แล้ว
Python Libraries: A Quick Guide with Practical Examples and How to Seek Help of classes and Methods
A Brief Exploration of the Google Colab Environment for Python Development
มุมมอง 266ปีที่แล้ว
A Brief Exploration of the Google Colab Environment for Python Development
A Detailed Walkthrough : How to Write Nested Queries For S3 Data Lake Using Serverless Athena
มุมมอง 49ปีที่แล้ว
A Detailed Walkthrough : How to Write Nested Queries For S3 Data Lake Using Serverless Athena
How to Perform Exploratory Data Analysis Using AWS Athena on Data Lake
มุมมอง 206ปีที่แล้ว
How to Perform Exploratory Data Analysis Using AWS Athena on Data Lake
A Detailed Walkthrough: Running SQL Queries on Data Lake CSV Files with AWS Athena
มุมมอง 59ปีที่แล้ว
A Detailed Walkthrough: Running SQL Queries on Data Lake CSV Files with AWS Athena
A Detailed Walkthrough : How to Create Catalog information including Database n Table in AWS Athena
มุมมอง 76ปีที่แล้ว
A Detailed Walkthrough : How to Create Catalog information including Database n Table in AWS Athena
A Detailed Walkthrough : How to Querying S3 Data Lake Using Serverless Athena - Part 1
มุมมอง 98ปีที่แล้ว
A Detailed Walkthrough : How to Querying S3 Data Lake Using Serverless Athena - Part 1
A Detailed Walkthrough: Installing and Configuring PowerBI with SQL Server 2022
มุมมอง 256ปีที่แล้ว
A Detailed Walkthrough: Installing and Configuring PowerBI with SQL Server 2022
A Detailed Walkthrough: Installing and Configuring SQL Server 2022 Reporting Services
มุมมอง 2.3Kปีที่แล้ว
A Detailed Walkthrough: Installing and Configuring SQL Server 2022 Reporting Services
Seamless Integration: Installing SSRS Extension in Visual Studio 2022
มุมมอง 1.9Kปีที่แล้ว
Seamless Integration: Installing SSRS Extension in Visual Studio 2022
Creating Efficient Data Pipelines with SQL Server Integration Services 2022 From CSV To SQL Table
มุมมอง 912ปีที่แล้ว
Creating Efficient Data Pipelines with SQL Server Integration Services 2022 From CSV To SQL Table
Resolving the Azure Greyout Issue in Visual Studio 2022
มุมมอง 78ปีที่แล้ว
Resolving the Azure Greyout Issue in Visual Studio 2022

ความคิดเห็น

  • @divyakotti3213
    @divyakotti3213 5 วันที่ผ่านมา

    I have question in viewing the data in MDS EXPLORER,I HAVE inserted the data using ssms insert into table statements later i have run a batch run in mds and trying to view that data on mds explorer but i could not see the data, only i am able to see the rows that i have inserted from mds explorer but not the records inserted from ssms, please help

  • @Sandeepgone-p2m
    @Sandeepgone-p2m หลายเดือนก่อน

    Thank you Sir ji for your step by step explanation. The video was very really helpful.

  • @sararajabi-j7o
    @sararajabi-j7o หลายเดือนก่อน

    hello I need your help. How can I contact you?

  • @craigoda5418
    @craigoda5418 หลายเดือนก่อน

    Thanks for this video. Is there any way to use Postman to feed the token into the API call as a variable from the previous API call? I want to chain the two API calls together. First, generate the token and have it passed into the next API call. In my case, I need to then chain a third API call to the output

  • @mahdig4739
    @mahdig4739 2 หลายเดือนก่อน

    The calculation of Accuracy and Precision are different for classification and regression problems

  • @sararajabi-j7o
    @sararajabi-j7o 2 หลายเดือนก่อน

    Hi, how can I speak with you directly about MDS?

  • @sararajabi-j7o
    @sararajabi-j7o 2 หลายเดือนก่อน

    Hi, how can I speak with you directly about MDS?

  • @sararajabi-j7o
    @sararajabi-j7o 2 หลายเดือนก่อน

    Hi, how can I speak with you directly about MDS?

  • @sararajabi-j7o
    @sararajabi-j7o 2 หลายเดือนก่อน

    Hi, how can I speak with you directly about MDS?

  • @zhayat
    @zhayat 3 หลายเดือนก่อน

    This was informative but didn't help me with the issue I have which is upgrading MDS 2014 to 2022.I did an in-place upgrade of the Database Engine,Reporting Services and lastly MDS. The MDS component was also selected as part of the in-place upgrade for the Database Engine.When I launch the MDS Configuration Wizard I got one warning relating to a missing IIS component: Dynamic Data Compression which I fixed by adding the feature and then reran the Wizard. The problem I'm facing is that I already have an MDS database and select the option to Upgrade Database.At that point the upgrade process gets stuck on Running database upgrade script(s) and goes into a rollback loop. When I analyzed the SQL Server log file I see the following error which recurs every 5 secs during the part where the MDS upgrade is trying to execute a system queue in MDS and it would appear not to have the EXECUTE permissions.The problem is that I don't know which MDS database user needs to be granted the EXECUTE permissions on the system queue. Date 2024-10-15 06:11:13 PM Log SQL Server (Current - 2024-10-15 06:07:00 PM) Source spid38s Message The activated proc '[mdm].[udpNotificationQueueActivate]' running on queue 'MDS.mdm.microsoft/mdm/queue/notification' output the following: 'The EXECUTE permission was denied on the object 'udpNotificationQueueActivate', database 'MDS', schema 'mdm'.' This is a prod environment and I have a very short window to troubleshoot as once I get an error I need to rollback to the snapshot backup of the server.The end users I believe do use IIS web server and the MS Excel add-in for MDS. If you've seen this error or know how to fix it please let me know.Lastly I don't know IIS and is there anything to check during and after an in-place upgrade regarding IIS both on the MDS config manager and in IIS iteself to ensure everything is working properly? thanks in advance. Ziah.

  • @greatdeveloper-l6e
    @greatdeveloper-l6e 4 หลายเดือนก่อน

    Don't watch totally time waste......

  • @ysidrovasquez4591
    @ysidrovasquez4591 4 หลายเดือนก่อน

    that will be great if you learn reporting services before trying to tech

    • @HodSudNaiAnuban2
      @HodSudNaiAnuban2 2 หลายเดือนก่อน

      Can you do it now, friend?

  • @snehashah6796
    @snehashah6796 5 หลายเดือนก่อน

    sir where i find the data set of book recommend knn

  • @joeyhayesus
    @joeyhayesus 5 หลายเดือนก่อน

    Thanks! This video included the parts I was missing. :-)

  • @jeff-creations
    @jeff-creations 5 หลายเดือนก่อน

    Thanks for the info!!

  • @eshwaryashwanth6303
    @eshwaryashwanth6303 5 หลายเดือนก่อน

    Hello, I am encountering a problem in VS 2022. I am not able to see any databses in SQL destination servers for adding connections. The server name is correct but it has something to do with native server client 11. Can you please help me with this. I was just doing a simple Excel to SQL task but no able to select a database for SQL server destination.

  • @samarthsinha5819
    @samarthsinha5819 7 หลายเดือนก่อน

    Can you please post the link for lambda code ?

  • @user-kakatya
    @user-kakatya 8 หลายเดือนก่อน

    Thanks a lot Muhammad! Very helpful and well explained!

  • @WanderNorthAmerica
    @WanderNorthAmerica 8 หลายเดือนก่อน

    is this code work with PDF? I am getting some errors.

  • @WanderNorthAmerica
    @WanderNorthAmerica 8 หลายเดือนก่อน

    Salam. I am using pdf as input but saying that it does not support. { "Status": "Failed", "Reason": "\"An error occurred (UnsupportedDocumentException) when calling the AnalyzeDocument operation: Request has unsupported document format\"" }

  • @heck0272
    @heck0272 8 หลายเดือนก่อน

    Get works. It would be nice if you numbered your different videos to make it easier to follow them. Thanks

  • @WanderNorthAmerica
    @WanderNorthAmerica 8 หลายเดือนก่อน

    Thanks, Brother. It's nice

  • @rhichadilipdharurkar9182
    @rhichadilipdharurkar9182 8 หลายเดือนก่อน

    one question, initially default instance name used to be MSSQLSERVER, since 2019 is it changed to SSRS?

  • @WanderNorthAmerica
    @WanderNorthAmerica 8 หลายเดือนก่อน

    nice information

  • @KarimFayed-oy5oo
    @KarimFayed-oy5oo 9 หลายเดือนก่อน

    Great Video! What should I do if I want to get the access token using email and password of user not with client Id and secret

    • @asifnisarr
      @asifnisarr 7 หลายเดือนก่อน

      same question

  • @arpitdhawan2744
    @arpitdhawan2744 9 หลายเดือนก่อน

    Can anyone post the github link to the scripts please?

  • @dhruvishah9077
    @dhruvishah9077 9 หลายเดือนก่อน

    can you please provide the code for the lambda function? Btw great job, exactly what I was looking for, thank you for this !

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      Thank you dhruvishah. Please find the link below and let me know, if you are unable to find the code. github.com/Muhammads786/awsassets

  • @daniellevi3756
    @daniellevi3756 10 หลายเดือนก่อน

    Hey, Thanks for the detailed videos I did all the required steps but I'm getting: "error": "invalid_grant" Do you know how to explain why? Thank you

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      Thank you for watching the video. I am planning to schedule a live session to show end to end solution which will help everyone understanding these steps in detail. Will update you about the date and time soon.

  • @namngoha8292
    @namngoha8292 10 หลายเดือนก่อน

    when login cognito using UI of aws you come to the page and it haved access token already why can that access token help us to go pass Authorization of the API.

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      Hello @namngoha8292, Generally, we integrate API with Cognito Authentication to authorize access using Security Token, I am planning the live session to show end to end solution. Will post the time shortly.

  • @namngoha8292
    @namngoha8292 10 หลายเดือนก่อน

    i cant deploy in my lambda dashboard but still have the endpoint so when use the url it still can be seen. So how can i secure now using API Gateway can be secure but if it found my API endpoint it still able to see it.

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      I am planning the live session to show end to end solution. Will post the time shortly.

  • @alarastaff
    @alarastaff 10 หลายเดือนก่อน

    How do you add people to a specific group?

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      Hello @alarastaff, it depends upon Group type. Are we talking AD Group or local windows group?

  • @HouseChecker97
    @HouseChecker97 10 หลายเดือนก่อน

    thank you muhammad brother. Ramadan Kareem, you helped me alot! ❤ greetings from germany habibi ❤

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      Thank you habibii. Lots of love from Sydney. May ALLAAH SUBHANA bless you and accept our Ramadan. Eid Mubarik

  • @samuelmagilocusts2870
    @samuelmagilocusts2870 10 หลายเดือนก่อน

    I'm new to AWS Cognito. I am using the Hosted UI. After signin the response URL contains code='1234sbc' which from what I've read is a authentication code that needs to be exchanged for the actual token. So I'm trying to retrieve said token I'm Lambda (python environment) by setting grant_type to authorization_code. Everything looks good but I am getting a "<Response [400]>" response from Cognito. Any ideas recommendations what I should check?

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      Thank you for watching the video. I am planning to schedule a live session to show end to end solution which will help everyone understanding these steps in detail. Will update you about the date and time soon.

  • @kamleshparmar-k6g
    @kamleshparmar-k6g 10 หลายเดือนก่อน

    Hi Sir ! I have been trying to connect you via gmail or may be with LinkedIn but I couldn't find you can you please share you email or LinkedIn Profile link here.I need some guidance

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      Please use following link to connect on Linkedin. Thank you, www.linkedin.com/in/muhammadsalah1/

  • @kamleshparmar-k6g
    @kamleshparmar-k6g 10 หลายเดือนก่อน

    Hi Sir ! I have been trying to connect you via gmail or may be with LinkedIn but I couldn't find you can you please share you email or LinkedIn Profile link here.

  • @kamleshparmar-k6g
    @kamleshparmar-k6g 10 หลายเดือนก่อน

    Hi Sir ! I have been trying to connect you via gmail or may be with LinkedIn but I couldn't find you can you please share you email or LinkedIn Profile link here

  • @kamleshparmar-k6g
    @kamleshparmar-k6g 10 หลายเดือนก่อน

    Hi Sir ! I have been trying to connect you via gmail or may be with LinkedIn but I couldn't find you can you please share you email or LinkedIn Profile link here.

  • @adityatripathi5059
    @adityatripathi5059 11 หลายเดือนก่อน

    I am getting the message like "Authorization header requires 'credential' parameter on passing the Authorization key

    • @analyticalearning7408
      @analyticalearning7408 9 หลายเดือนก่อน

      Hello Aditya. Thank you for watching the video. I am planning to schedule a live session to show end to end solution which will help everyone understanding these steps in detail. Will update you about the date and time soon.

  • @liamizar3320
    @liamizar3320 ปีที่แล้ว

    How would you change the code to use the AnalyzeExpense API?

  • @danishhussainomex7896
    @danishhussainomex7896 ปีที่แล้ว

    Where is the link ????????? what a useless turorial

  • @KK-qc2qs
    @KK-qc2qs ปีที่แล้ว

    sir its throwing error local host not found please what to do am new to this

    • @analyticalearning7408
      @analyticalearning7408 ปีที่แล้ว

      Can you please provide more details about the error. Also share the screenshot, if possible. Thank you.

    • @KK-qc2qs
      @KK-qc2qs ปีที่แล้ว

      @@analyticalearning7408 got it sir i reinstalled it removed all instances working fine

  • @meetakukde2029
    @meetakukde2029 ปีที่แล้ว

    your video is one of the best , you have shared information from scratch. Can you please provide lambda code

    • @analyticalearning7408
      @analyticalearning7408 ปีที่แล้ว

      Thank you @meetakukde2029. You can download the complete lambda code from my Github repository using following link github.com/Muhammads786/awsassets/tree/AWSTextractCode

  • @thedaynos
    @thedaynos ปีที่แล้ว

    thank you for this tutorial! I never knew there was an aws extension for visual studio and how much easier that is going to make my lambda and other AWS development.

    • @analyticalearning7408
      @analyticalearning7408 ปีที่แล้ว

      Thank you @thedaynos. It will also help you build solution in VCode and deploy seamlessly into Lambda. Otherwise, use Cloud9, if you can afford the paid solution. Hope, it helps as well

  • @abhay6276
    @abhay6276 ปีที่แล้ว

    Hello sir, What windows operating system version did you install Microsoft visual studio 22.? I m trying to install it on windows 10 pro os but throwing an error...please suggest what to do in such situations.

    • @analyticalearning7408
      @analyticalearning7408 ปีที่แล้ว

      I have installed it on Windows Server 2022. Can you please share the error details? I believe, Visual Studio 2022 can be installed on Windows 10 Pro Editon.

    • @abhay6276
      @abhay6276 ปีที่แล้ว

      @@analyticalearning7408 I installed 2019 version and it supported....I didn't note that error.. if you replied me earlier I could have shared with you sir...

  • @bobsala7780
    @bobsala7780 ปีที่แล้ว

    Thank you. This helped me.

  • @liamizar3320
    @liamizar3320 ปีที่แล้ว

    Do you have the lambda code?

  • @Munk-tt6tz
    @Munk-tt6tz ปีที่แล้ว

    Thank you!

  • @vinshankts
    @vinshankts ปีที่แล้ว

    How to bypass error during deployment?

  • @the-funkie
    @the-funkie ปีที่แล้ว

    Hi there! Can this work without scope?

    • @analyticalearning7408
      @analyticalearning7408 ปีที่แล้ว

      Hi mate. Unfortunately not. We need to provide the context as part of the syntax to get it working. I had tried it without context but getting error in Client_Credentials scenario. However, Other Cognito Authentication types work without Context. Thank you

    • @the-funkie
      @the-funkie ปีที่แล้ว

      @@analyticalearning7408 I have tried with authorization code since our Cognito does not have scopes but it always gives me invalid_grant error. The grant token should be taken from the login POST request, right?

  • @LuisRicardoLunaSoto
    @LuisRicardoLunaSoto ปีที่แล้ว

    Hello friend. I don´t see the console interface UI, in at minute 1:41 in my AWS Console API Gateway. Help me please.

    • @analyticalearning7408
      @analyticalearning7408 ปีที่แล้ว

      Hello mate. Thank you for watching the video. The Authorization Tab is under the Develop Option in API Gateway console. Please click on the Get Method to display the console on the right side of the screen. Let me know, if it has fixed your issue.