Skip to main content

Speaking

Speaking Events 




Upcoming Events



Migrate AWS EC2 to Azure VM using XMigrate

Event Date: Jan 26 2021
Organiser




In this session, we will learn how to migrate AWS EC2 instances to Azure VMs with the help of Xmigrate. Xmigrate (pronounced as cross-migrate) is an opensource tool for migrating your VM’s from anywhere to cloud and cloud to anywhere seemlesly. Xmigrate aims to help you to move your server, which is deployed in any X environment to Y public cloud platform. Here X can be on-prem or public cloud vendors like AWS, Azure, GCP etc and Y can be a public cloud platform.

Refer this article for more details related to Xmigrate: https://medium.com/xmigrateoss/xmigrate-explained-cf019418df1b

Past Events



Cloud Certifications and Roadmap

Event Date: Jan 26 2021


Event Description:

Cloud computing offers many opportunities for IT professionals to leverage their existing expertise while also embracing cloud computing technology. The field of Cloud Computing is drastically changing the way business is done across all industry sectors.

In this session, we will talk about getting Azure & AWS Certification, resources, tips & tricks to help you get prepped for those dreaded exams. This learning path is suitable for anybody looking to start and/or further their career in cloud computing and thoroughly explore the fundamentals of it.


Cloud Cost Optimization Strategies

Event Date: Dec 19 2020, 11:00 AM (IST)
Attendees: 44

Event Description:

As we know Cloud is the hottest thing right now in not only in Tech industry but in almost every industry. We all love cloud and its added benefits- scalability, resiliency, durability, availability etc. But may be you are spending more than you planned or looking for some creative ideas to spend less.

Cost Optimization is also one of the main pillar of Well Architect Framework in terms of using Cloud service or building cloud native applications. It is about ensuring about only paying for resources that we actually need. In this session, we will discuss recommendation/best practices we can adopt to move forward in cloud cost optimization journey.


Secure Your Microsoft Azure Cloud Environment

Event Date: Sep 12 2020, 10:00 AM (IST)

Attendees: 22

Event Description:

We know that security is job one in the cloud and how important it is that you find accurate and timely information about Azure security. One of the best reasons to use Azure for your applications and services is to take advantage of its wide array of security tools and capabilities. These tools and capabilities help make it possible to create secure solutions on the secure Azure platform. Microsoft Azure provides confidentiality, integrity, and availability of customer data, while also enabling transparent accountability.

https://docs.microsoft.com/en-us/azure/security/fundamentals/overview

In this session, we will discuss about best practices to secure Microsoft Azure Environment.


Make Azure Networking Work for You

Event Date: Oct 29 2020




Event Description:

Several services available within Microsoft Azure focus on traffic management and load-balancing workloads, and they provide a great option for commercial websites with more complex topology, fault tolerance or geo-distribution. During this session, we will look at Azure Networking components like Azure CDN, WAF and Azure Front Door to show how you can use them with your Sitecore infrastructure in Azure.


Hands-on Kubernetes on Microsoft Azure

Event Date: Sep 12 2020, 10:00 AM (IST)

Attendees: 37

Event Description:

What is Kubernetes?

Kubernetes Architecture

Docker image creation

Push Docker image to ACR

Deploy image to AKS

Troubleshooting of AKS

Question & Answers


Overview of Microsoft Azure

Event Date: Jul 14 2020, 10:00 AM (IST)

Attendees: 33

Event Description:

Topics to be covered in this session:

Overview of Cloud Computing

What is Microsoft Azure

Azure Compute Resources

Azure Storage Resources

Azure Serverless Resources

Azure Networking Resources

Quick Demo to host an application using Azure App service & Azure SQL Database

Question & Answers


Copy Data from Azure Data Lake using Azure Data Factory

Event Date: Mar 01 2020, 09:30 AM (IST)

Attendees: 40


Event Description

Overview of Azure Data factory

Discuss about Data lake Gen 1 and Gen 2

Demo to Move data from local file to Azure Data Lake Gen2

Demo to copy data from Gen1 to Gen2 using Azure Data Factory


Comments

Popular posts from this blog

Comparison between Azure Application Gateway V1 and V2

Microsoft has announced new version of Azure Application Gateway and its Web Application Firewall module (WAF). In this article, we will discuss about the enhancements and new highlights that are available in the new SKUs i.e. Standard_v2 and WAF_v2. Enhancements and new features: Scalability: It allows you to perform scaling of the number of instances on the traffic. Static VIP: The VIP assigned to the Application Gateway can be static which will not change over its lifecycle. Header Rewrite: It allows you to add, remove or update HTTP request and response headers on application gateway. Zone redundancy: It enables application gateway to survive zonal failures which allows increasing the resilience of applications. Improved Performance: Improvement in performance during the provisioning and during the configuration update activities. Cost: V2 SKU may work out to be overall cheaper for you relative to V1 SKU. For more information, refer Microsoft prici

Difference between Azure Front Door Service and Traffic Manager

Azure Front Door Service is Microsoft’s highly available and scalable web application acceleration platform and global HTTP(s) load balancer. Azure Front Door Service supports Dynamic Site Acceleration (DSA), SSL offloading and end to end SSL, Web Application Firewall, cookie-based session affinity, URL path-based routing, free certificates and multiple domain management. In this article, I will compare Azure Front Door to Azure Traffic Manager in terms of performance and functionality. Similarity: Azure Front Door service can be compared to Azure Traffic Manager in a way that this also provides global HTTP load balancing to distribute traffic across different Azure regions, cloud providers or even with your on-premises. Both AFD & Traffic Manager support: Multi-geo redundancy: If one region goes down, traffic routes to the closest region without any intervention. Closest region routing: Traffic is automatically routed to the closest region. Differences: Azu

Install Solr as an Azure App Service

After Sitecore 9.0.2, Solr is a supported search technology for Sitecore Azure PAAS deployments. In this article, we will install SOLR service 8.4.0 in Azure App Service for Sitecore 10. 1. Create Azure App Service Login to Azure and create Azure App service. Make sure Runtime stack should be Java. 2. Download Solr Download Solr 8.4.0 from https://archive.apache.org/dist/lucene/solr/ Extract the files and add the below web.config file in the Solr package. <?xml version="1.0" encoding="UTF-8"?> <configuration>  <system.webServer>      <handlers>      <add  name="httpPlatformHandler"            path="*"            verb="*"            modules="httpPlatformHandler"            resourceType="Unspecified" />    </handlers>    <httpPlatform processPath="%HOME%\site\wwwroot\bin\solr.cmd"        arguments="start -p %HTTP_PLATFORM_PORT%"

Azure Machine Learning public preview announcement //Build, May 2021

Azure service updates Azure Machine Learning public preview announcement //Build, May 2021 New feature: Prebuilt Docker images for Inferencing, now in public preview. Click here for more information.

Export BACPAC file of SQL database

When you need to create an archive of an Azure SQL database, you can export the database schema and data to a BACPAC file. A BACPAC file can be stored in Azure blob storage or in local storage in an on-premises location and later imported back into Azure SQL Database or into a SQL Server on-premises installation. Let's learn some of the ways to export BACPAC file. Export BACPAC using Azure Portal Open your SQL Database and select Export. Fill the parameters as shown below. Select your storage account container & enter your SQL Server admin login. To check the status of your database export. Open your SQL Database server containing the database being exported. Go to Settings and then click Import/Export history Export BACPAC using SSMS Login Azure SQL Database by SSMS. Right-click the database -> Tasks -> Export Data-tier Application Save the .bacpac file into local disk. Export BACPAC using SQLPackage There is a command line tool that you can also choose to