Azure App Service & ASP.NET Core 3.1 500.30 – One odd cause

This article is contributed. See the original author and article here.

Summary


The problem in this case was, somehow, being caused by the customer’s App Service having the .NET Core 3.1 runtime installed via Site Extension, instead of using the built-in runtime that comes with App Services.


The issue resolved when the Site Extension was removed, and the App Service was stopped and re-started. 


 


Deeper Dive into the Data


This issue showed different symptoms depending on whether the ASP.NET Core app was running in-process or out-of-process. 


 


In-Process


In-process, the symptom was a 500.30 In-Process Start Failure with error code 8007023e. This exception code means “unhandled exception.” Viewing the eventlog.xml in the App Service via Kudu came up with this couplet of events every time:



   
       
        1018
        1
        0
        Keywords
       
        -1368025656
        Application
        [redacted]
       
   
   
       
Application ‘/LM/W3SVC/1365716517/ROOT’ with physical root ‘C:homesitewwwroot’ hit unexpected managed exception, exception code = ‘0xc0000005’. Please check the stderr logs for more information.
        Process Id: 4236.
        File Version: 13.1.22230.29. Description: IIS ASP.NET Core Module V2 Request Handler. Commit: 21d42143378ad6cc4bcbaebfda5f3acddf13aa47
   


    …
   
       
Application ‘/LM/W3SVC/1365716517/ROOT’ with physical root ‘C:homesitewwwroot’ failed to load coreclr. Exception message: CLR worker thread exited prematurely
        Process Id: 4236.
        File Version: 13.1.22230.29. Description: IIS ASP.NET Core Module V2 Request Handler. Commit: 21d42143378ad6cc4bcbaebfda5f3acddf13aa47
   

 


It seems CoreCLR was trying to load and failed with a native access violation exception (c0000005). Very odd. We did not get a dump of this but I wish we had.


 


Out-of-Process


When switching the app to run out-of-process, we encountered a different error. This is from the eventlog.xml:




   
        Application ‘/LM/W3SVC/1365716517/ROOT’ with physical root ‘C:homesitewwwroot’ failed to start process with commandline ‘”dotnet” .[redacted].dll’ with multiple retries. Failed to bind to port ‘31490’. First 30KB characters of captured stdout and stderr logs from multiple retries:
        Process Id: 7032.
        File Version: 13.1.22287.31. Description: IIS ASP.NET Core Module V2 Request Handler. Commit: fbe05294ac5c88be848b4d57d60cb2657874da9b
   

Nothing really useful there.


 


We enabled AspNetCoreModule’s Enhanced Diagnostic Logging and saw that it was timing out while waiting for the app to report itself as started:


[aspnetcorev2_outofprocess.dll] Failed HRESULT returned: 0x8027025a at D:a_work1ssrcServersIISAspNetCoreModuleV2OutOfProcessRequestHandlerserverprocess.cpp:727 

8027025a= E_APPLICATION_ACTIVATION_TIMED_OUT: The app didn’t start in the required time.


 


We also enabled the stdout log via the web.config and found the app had started just fine:


dbug: Microsoft.Extensions.Hosting.Internal.Host[1]
      Hosting starting

dbug: Microsoft.AspNetCore.Server.Kestrel[0]
      No listening endpoints were configured. Binding to http://localhost:5000 by default.
info: Microsoft.Hosting.Lifetime[0]
      Now listening on: http://localhost:5000

info: Microsoft.Hosting.Lifetime[0]
      Application started. Press Ctrl+C to shut down.
info: Microsoft.Hosting.Lifetime[0]
      Hosting environment: Test2
info: Microsoft.Hosting.Lifetime[0]
      Content root path: C:homesitewwwroot
dbug: Microsoft.Extensions.Hosting.Internal.Host[2]
      Hosting started


Turns out the app for some unknown reason was starting on the default localhost:5000. When hosting ASP.NET Core behind IIS and everything is working fine, AspNetCoreModule sets the ASPNETCORE_PORT environment variable to a dynamic port. Kestrel during startup is supposed to poll the value of that variable and use that port to listen on at 127.0.0.1. So in this case something was breaking down either on the environment variable side in ANCM or on the Kestrel side, or in between with the environment itself. Unfortunately we don’t have more data to drill deeper into that because we were tinkering with the App Service based on an observation I made, and the problem appears to have been resolved.

 

Another Observation & Resolution


While perusing the ANCM Enhanced Diagnostic Logging I mentioned earlier, I came across this:

[aspnetcorev2.dll] Initializing logs for ‘C:homeSiteExtensionsAspNetCoreRuntime.3.1.x86ancmaspnetcorev2.dll‘. Process Id: 7632.. File Version: 13.1.22287.31. Description: IIS ASP.NET Core Module V2. Commit: fbe05294ac5c88be848b4d57d60cb2657874da9b.

That struck me as odd because App Services itself provides all the .NET Core runtimes (including no-longer-supported ones like 3.1). So why was ANCM loading from a Site Extension?

In a new, test App Service with a basic ASP.NET Core 3.1 app deployed to it, this is what that log looks like:

[aspnetcorev2.dll] Initializing logs for ‘C:Program Files (x86)IISAsp.Net Core ModuleV2aspnetcorev2.dll‘. Process Id: 7496.. File Version: 13.1.19331.0. Description: IIS ASP.NET Core Module V2. Commit: 62eee6e6d21c95668a9e9529dce6562cc6c9f3bf.

That is where ANCM is normally located.

As a test on one of my own App Services, I installed the latest-available Site Extension for the .NET Core 3.1 runtime. I still had no issues, and I confirmed the ANCM log showed the location of ANCM had changed to the Site Extension one, same as the customer’s. 

 

I, personally, am not familiar with App Service Site Extensions and why the .NET Core runtime is available to use there when it’s already built-in; however, it’s just another copy of the runtime in a different location that theoretically shouldn’t have issues. I will say, in this case the customer had an older version of the runtime installed via the Site Extension, while the latest available was 3.1.32 (the latest build).

 

On the call with the customer, as a test we removed the Site Extension completely, restarted the site, and confirmed ANCM was using the built-in version that comes with App Services. This immediately resolved the issues for both in-process and out-of-process setups.

 

Unfortunately, we likely won’t be able to get more data on this problem and what was happening. I am thinking perhaps the fact that the Site Extension was out-of-date/an older version possibly had something to do with it. Thus, the takeaway here is if you have an app experiencing odd startup issues and if you have a Site Extension installed that contains the runtime for the app you are trying to run, try removing that Site Extension (or maybe update it if it needs to be updated?) and see if your issues go away. Make sure to stop and start the App Service as well, to make sure everything is fully picked-up.

New Year, new Microsoft 365 Core advanced deployment guides for Exchange, SharePoint, and Teams!

New Year, new Microsoft 365 Core advanced deployment guides for Exchange, SharePoint, and Teams!

This article is contributed. See the original author and article here.

New Years’ Resolutions:


  



  1. Work out 3-5 days a week. 

  2. Spend more time with family. 

  3. Deploy Microsoft 365 services to make my company more efficient and secure. 


  


We can’t help you with the first two, but we can help you deploy Microsoft 365 services to improve your company’s efficiency and security with the new Core onboarding advanced deployment guides.  


 


  


Learn how:


 


 


Did you know that thousands of customers use the Core onboarding advanced deployment guides each month? The Microsoft 365 Admin Center features Core advanced deployment guides that simplify moving from On-Premises IT to the Cloud. 


IT Pros can use our core onboarding guides to speed deployment and configure Azure Active Directory, DNS, networking, identity management, and more with advanced deployment guides from Microsoft. 


 


 


Core onboarding involves service provisioning and tenant and identity integration. The Core onboarding advanced deployment guides for onboarding services include:  



 


Here’s how IT Pros can access the Core advanced deployment guides by clicking the purple hammer link in the below tile. 


An image demonstrating how to access the Core onboarding advanced deployment guides in the Training, guides, & assistance section of the Microsoft 365 admin center.An image demonstrating how to access the Core onboarding advanced deployment guides in the Training, guides, & assistance section of the Microsoft 365 admin center.


 


 


Once there, Core Advanced deployment guides are found in the Identity and authentication section.


 


An image demonstrating how to access the Identity and authentication section.An image demonstrating how to access the Identity and authentication section.


 


 


Completing the deployment steps outlined in the Core advanced deployment guides creates a strong foundation upon which additional Microsoft 365 Cloud Services can be deployed successfully and with confidence.


 


Helpful resources


 


Learn about all deployment guides and setup wizards:



Access advanced deployment guides without signing in:



Getting started with advanced deployment guides within the Microsoft 365 admin center:



  • Go to https://admin.microsoft.com/ and log in

  • Once logged in, go to the Home page and look for the Training, guides, & assistance card 

  • Select Advanced deployment guides & assistance

Azure SQL VM: Azure Backup & restore for SQL Server on Azure Virtual Machines [Ep.10] | Data Exposed

This article is contributed. See the original author and article here.

In the next episode in the Azure SQL VM series, join Anna Hoffman, Logan Carrington, and Kartik Pullabhotla as they discuss various options for Azure Backup and restore on SQL Server on Azure Virtual Machines.


 


Watch on Data Exposed


 


Resources:


Back up SQL Server databases to Azure – Azure Backup


Azure SQL Virtual Machine Reimagined Series


 


View/share our latest episodes on Microsoft Learn and YouTube!

CISA Releases Three Industrial Systems Control Advisories

CISA Releases Three Industrial Systems Control Advisories

This article is contributed. See the original author and article here.

Dot gov

Official websites use .gov
A .gov website belongs to an official government organization in the United States.

SSL

Secure .gov websites use HTTPS

A lock (lock icon) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.
Azure Marketplace new offers – January 4, 2023

Azure Marketplace new offers – January 4, 2023

This article is contributed. See the original author and article here.

We continue to expand the Azure Marketplace ecosystem. For this volume, 133 new offers successfully met the onboarding criteria and went live. See details of the new offers below:


 







































































































































































































































































































































































































































































































Get it now in our marketplace


AI Assist.png AI Assist: Aisera’s AI Assist supports service desk teams through ticket automation, classifying and routing tickets and cases to reduce bounce rates and improve resolution times. AI Assist can also recommend similar tickets and cases, knowledge articles, and next-best actions. 
BUI Cyber.png

BUI Cyber MXDR: BUI’s Cyber MXDR service runs on Microsoft security technology and delivers compliance reporting; monitoring for databases, infrastructure, and access; and real-time threat hunting for your IT security landscape. It’s enriched with BUI playbooks and analytics, custom dashboards, and integrations.


Chrome OS.png Chrome OS Change Password Notifier: Support the synchronization of your users’ Chrome OS passwords with their Azure Active Directory passwords. Whenever a user’s Azure Active Directory password is changed, Change Password Notifier informs Chrome OS and triggers an online sign-in if SAML single sign-on password synchronization is activated.
CloudPilot.png

CloudPilot – Application Assessment: Through static code analysis, configuration data, and development team interaction, CloudPilot provides comprehensive reports on scanned applications and their readiness to migrate to cloud environments.


AskforCloud logo.png

Consul on Red Hat Enterprise Linux 9.1: This offer from AskforCloud provides HashiCorp Consul on Red Hat Enterprise Linux 9.1. HashiCorp Consul is an open-source tool for solving networking and security challenges pertaining to microservices and cloud infrastructure.


Cosmo Tech.png

Cosmo Tech Simulation and Bonsai: Cosmo Tech’s 360-degree simulation digital twin platform can predict the possible futures of an organization, facilitating decision-making and solving complex industrial problems. Build resilience to future events by running what-if and how-to scenarios.


DMZedge.png

DMZedge Server NextGen Cloud Edition (PAYG): DMZedge from South River Technologies is a cross-platform reverse proxy server that offers a multi-layered security solution when combined with Cornerstone MFT Server. DMZedge lives outside the corporate firewall, serving as a proxy between authorized end users on the internet and the internal network.


Docker CE.png

Docker CE on CentOS Stream 8 Minimal: This offer from Art Group provides Docker Community Edition on a minimal installation of CentOS Stream 8. Docker CE is an open-source containerization platform that simplifies the distribution and deployment of your applications.


ESG Fusion.png

ESG Fusion by ERM: ESG Fusion from Environmental Resources Management is an AI-enabled service that provides environmental, social, and governance due diligence and screening to help investment professionals make better decisions. ESG Fusion evaluates more than a dozen factors to provide a comprehensive assessment of a company’s ESG risks and opportunities.


Fly.png

Fly (SaaS) for Microsoft 365 Tenant-to-Tenant Migration: Easily move, migrate, or consolidate content between different Microsoft 365 tenants with Fly from AvePoint. Use Fly to quickly respond to mergers, acquisitions, divestitures, or other Microsoft 365 tenant restructuring needs.


Harbor.png

Harbor, Packaged by Bitnami: This offer from Bitnami provides an image of Harbor on a ready-to-run virtual machine. Harbor is an open-source registry to store, sign, and scan content. It adds security, identity, and management functionalities to the open-source Docker distribution.


Ntegral logo.png

Hyper-V Server 2019 on Azure: This offer from Ntegral provides Hyper-V Server 2019 on a Microsoft Azure virtual machine. With Hyper-V running on Azure, you can replicate Hyper-V virtual machines running on-premises, serving as a disaster recovery and backup solution.


InsecureWeb Dark Web Monitoring.png

InsecureWeb Dark Web Monitoring: InsecureWeb can protect your company and clients from cyberattacks and ensure your business data isn’t being distributed on the dark web. InsecureWeb monitors activity happening on hidden websites, in chat rooms, and via peer-to-peer networks, watching for relevant information and indicators of ongoing or future attacks.


Intel.png

Intel NLP Workflow for Azure Machine Learning Platform: This contained environment from Intel provides natural language processing (NLP) training and inferencing using Intel’s optimized software. Users can count on easy-to-use APIs to perform end-to-end NLP training, inferencing, and deployment.


Job Scheduling.png

Job Scheduling Sample v1: This sample brain and simulator for the Bonsai machine learning platform lets you teach an AI to schedule jobs intelligently for a small production line using a FlexSim model. The simulator is a model (sometimes called a digital twin) of a small sheet-metal production line.


AskforCloud logo.png

Kotlin on Red Hat Enterprise Linux 7: This offer from AskforCloud provides Kotlin on Red Hat Enterprise Linux 7. Kotlin is an open-source statically typed programming language that targets the Java Virtual Machine, along with Android and JavaScript. Kotlin provides many ways to reuse code between multiple platforms for productive programming.


AskforCloud logo.png

Kotlin on Red Hat Enterprise Linux 9: This offer from AskforCloud provides Kotlin on Red Hat Enterprise Linux 9. Kotlin is an open-source statically typed programming language that targets the Java Virtual Machine, along with Android and JavaScript. Kotlin provides many ways to reuse code between multiple platforms for productive programming.


AskforCloud logo.png

Kotlin Programming Language on Debian 10: This offer from AskforCloud provides Kotlin on Debian 10. Kotlin is an open-source statically typed programming language that targets the Java Virtual Machine, along with Android and JavaScript. Kotlin provides many ways to reuse code between multiple platforms for productive programming.


AskforCloud logo.png

Kotlin Programming Language on Debian 11: This offer from AskforCloud provides Kotlin on Debian 11. Kotlin is an open-source statically typed programming language that targets the Java Virtual Machine, along with Android and JavaScript. Kotlin provides many ways to reuse code between multiple platforms for productive programming.


AskforCloud logo.png

Kotlin Programming Language on Ubuntu Server 18.04 LTS: This offer from AskforCloud provides Kotlin on Ubuntu Server 18.04 LTS. Kotlin is an open-source statically typed programming language that targets the Java Virtual Machine, along with Android and JavaScript. Kotlin provides many ways to reuse code between multiple platforms for productive programming.


AskforCloud logo.png

Kotlin Programming Language on Ubuntu Server 20.04 LTS: This offer from AskforCloud provides Kotlin on Ubuntu Server 20.04 LTS. Kotlin is an open-source statically typed programming language that targets the Java Virtual Machine, along with Android and JavaScript. Kotlin provides many ways to reuse code between multiple platforms for productive programming.


AskforCloud logo.png

Kotlin Programming Language on Ubuntu Server 22.04 LTS: This offer from AskforCloud provides Kotlin on Ubuntu Server 22.04 LTS. Kotlin is an open-source statically typed programming language that targets the Java Virtual Machine, along with Android and JavaScript. Kotlin provides many ways to reuse code between multiple platforms for productive programming.


ME Applications (ManageEngine).png

ME Applications Manager – 500 Monitors (No Add-Ons): ManageEngine Applications Manager is an integrated application and server performance monitoring solution that helps organizations ensure high availability and optimal performance of their business-critical applications.


NVIDIA logo.png

NVIDIA RTX Virtual Workstation – RHEL 9: This image from NVIDIA with RTX Virtual Workstation software enables customers to spin up a virtual machine in minutes. Easily configure an NVIDIA GPU-powered instance with the vCPU, memory, and storage you need without having to purchase any physical hardware.


NVIDIA logo.png

NVIDIA RTX Virtual Workstation – Windows Server 2022: This image from NVIDIA with RTX Virtual Workstation software enables customers to easily spin up a virtual machine in minutes. Easily configure an NVIDIA GPU-powered instance with the vCPU, memory, and storage you need without having to purchase any physical hardware.


AskforCloud logo.png

Packer on Red Hat Enterprise Linux 9.1: This offer from AskforCloud provides Packer on Red Hat Enterprise Linux 9.1. Packer is an open-source tool for creating identical machine images for multiple platforms from a single source template.


PostgreSQL.png

PostgreSQL by Kockpit: This offer from Kockpit provides an image of PostgreSQL 15 on Ubuntu 20.04.02 LTS. Use the image to launch a virtual machine with a predefined version of Postgres designed for production environments on Microsoft Azure.


Product Knowledge Graph Builder.png

Product Knowledge Graph Builder: Designed for e-commerce, Product Knowledge Graph Builder from WordLift enriches brands’ content with structured data, making products understandable to search engines and voice assistants. Increase the visibility of your e-commerce products and get rich results from your merchant feeds.


Ntegral logo.png

Red Hat Enterprise Linux 8.0: This offer from Ntegral provides Red Hat Enterprise Linux 8.0 on a Microsoft Azure virtual machine. Red Hat Enterprise Linux has built-in security features such as Security-Enhanced Linux (SELinux) and mandatory access controls to help you combat intrusions and meet regulatory compliance.


Ntegral logo.png

Red Hat Enterprise Linux 8.3: This offer from Ntegral provides Red Hat Enterprise Linux 8.3 on a Microsoft Azure virtual machine. Red Hat Enterprise Linux has built-in security features such as Security-Enhanced Linux (SELinux) and mandatory access controls to help you combat intrusions and meet regulatory compliance.


Rubrik.png

Rubrik: Policy-Based Protection for Microsoft 365: With Rubrik, data is always secure and rapidly available in the event of a ransomware attack, accidental deletion, or corruption. Rubrik orchestrates policy-based protection of Microsoft 365 assets. Search and restore operations cover Exchange Online, OneDrive, SharePoint, and Teams.


AskforCloud logo.png

Rust Programming Language on CentOS 8: This offer from AskforCloud provides Rust on CentOS 8. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


AskforCloud logo.png

Rust Programming Language on CentOS Stream 8: This offer from AskforCloud provides Rust on CentOS Stream 8. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


AskforCloud logo.png

Rust Programming Language on Debian 10: This offer from AskforCloud provides Rust on Debian 10. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


AskforCloud logo.png

Rust Programming Language on Debian 11: This offer from AskforCloud provides Rust on Debian 11. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


AskforCloud logo.png

Rust Programming Language on Ubuntu Server 22.04 LTS: This offer from AskforCloud provides Rust on Ubuntu Server 22.04 LTS. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


AskforCloud logo.png

Rust Programming Language on Windows Server 2012 R2: This offer from AskforCloud provides Rust on Windows Server 2012 R2. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


AskforCloud logo.png

Rust Programming Language on Windows Server 2016: This offer from AskforCloud provides Rust on Windows Server 2016. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


AskforCloud logo.png

Rust Programming Language on Windows Server 2019: This offer from AskforCloud provides Rust on Windows Server 2019. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


AskforCloud logo.png

Rust Programming Language on Windows Server 2022: This offer from AskforCloud provides Rust on Windows Server 2022. Rust is an open-source programming language that’s fast and memory-efficient. It can power performance-critical services, run on embedded devices, and easily integrate with other languages.


telemedica.png

Telemedica: Telemedica from High-Tech Systems & Software SRL enables doctors to deliver consultations and review patient information from anywhere at any time. Doctors can access consultation histories, patient-submitted files, chat logs, and recommendations or prescribed treatments.


AskforCloud logo.png

Terraform on Red Hat Enterprise Linux 9.1: This offer from AskforCloud provides Terraform on Red Hat Enterprise Linux 9.1. Terraform is an open-source infrastructure-as-code tool created by HashiCorp. With Terraform, users can efficiently build, change, and version infrastructure.


Bansir logo.png

Ubuntu Server 18.04 LTS: This offer from Bansir provides an image of Ubuntu 18.04 LTS (Bionic Beaver) and includes support from Bansir’s team of systems engineers. Ubuntu 18.04 LTS server is lightweight and designed for ease of use, security, and stability.


Bansir logo.png

Ubuntu Server 20.04 LTS: This offer from Bansir provides an image of Ubuntu 20.04 LTS (Focal Fossa) and includes support from Bansir’s team of systems engineers. Ubuntu 20.04 LTS server is lightweight and designed for ease of use, security, and stability.


AskforCloud logo.png

Vault on Red Hat Enterprise Linux 9.1: This offer from AskforCloud provides Vault on Red Hat Enterprise Linux 9.1. Vault is an identity-based encryption management system from HashiCorp. Vault helps organizations reduce the risk of breaches and data exposure with security automation and encryption.


VenueArc.png

VenueArc – Venue Booking & Event Management: VenueArc streamlines booking and event management for performing art centers. Its centralized platform, hosted on Microsoft Azure, fosters collaboration between departments and offers round-the-clock availability. A dedicated support team monitors the program and responds to requests at any time.


VSFTP (1).png

VSFTP on Linux- Red Hat 8.6 Minimal: This offer from Art Group provides VSFTP on a minimal installation of Red Hat Enterprise Linux 8.6. VSFTP is an FTP server for Unix-like systems. In addition to a small system footprint, VSFTP’s advantages include bandwidth throttling and the ability to handle virtual users.


VSFTP (2).png

VSFTP on Linux- Red Hat 9 Minimal: This offer from Art Group provides VSFTP on a minimal installation of Red Hat Enterprise Linux 9. VSFTP is an FTP server for Unix-like systems. In addition to a small system footprint, VSFTP’s advantages include bandwidth throttling and the ability to handle virtual users.


VSFTP (4).png

VSFTP on SUSE Linux Enterprise 12 Minimal: This offer from Art Group provides VSFTP on a minimal installation of SUSE Linux Enterprise 12. VSFTP is an FTP server for Unix-like systems. In addition to a small system footprint, VSFTP’s advantages include bandwidth throttling and the ability to handle virtual users.


VSFTP (5).png

VSFTP on SUSE Linux Enterprise 15 Minimal: This offer from Art Group provides VSFTP on a minimal installation of SUSE Linux Enterprise 15. VSFTP is an FTP server for Unix-like systems. In addition to a small system footprint, VSFTP’s advantages include bandwidth throttling and the ability to handle virtual users.


VSFTP (6).png

VSFTP on Ubuntu 18.04 Minimal: This offer from Art Group provides VSFTP on a minimal installation of Ubuntu 18.04 LTS (Bionic Beaver). VSFTP is an FTP server for Unix-like systems. In addition to a small system footprint, VSFTP’s advantages include bandwidth throttling and the ability to handle virtual users.


VSFTP (7).png

VSFTP on Ubuntu 20.04 Minimal: This offer from Art Group provides VSFTP on a minimal installation of Ubuntu 20.04 LTS (Focal Fossa). VSFTP is an FTP server for Unix-like systems. In addition to a small system footprint, VSFTP’s advantages include bandwidth throttling and the ability to handle virtual users.


VSFTP (8).png

VSFTP on Ubuntu 22.04 Minimal: This offer from Art Group provides VSFTP on a minimal installation of Ubuntu 22.04 LTS (Jammy Jellyfish). VSFTP is an FTP server for Unix-like systems. In addition to a small system footprint, VSFTP’s advantages include bandwidth throttling and the ability to handle virtual users.



Go further with workshops, proofs of concept, and implementations


Tiger Data Fabric.png Accelerator for Implementing Data Fabric on Azure: Tiger Analytics will set up Tiger Data Fabric, an accelerator for implementing data lakes and data fabric on Microsoft Azure. Tiger Data Fabric has powerful low-code self-service and governance capabilities at its core, enabling quicker data pipeline setup.
ACP Smart.png

ACP Smart Monitoring: 1-Day Implementation: ACP will implement a turnkey infrastructure-monitoring solution in your Microsoft Azure environment. To represent your systems visually, ACP uses different workbook designs and gives you the possibility of a detailed system-specific view. This offer is available in German.


AI Workshop.png

AI Workshop: 3-Day Proof of Concept: In this workshop from Exadel, functional and technical leaders will learn about state-of-the-art AI, AI building blocks, Azure Cognitive Services, and MLOps with Azure Machine Learning Studio. This will be followed by identifying a use case for a three-day proof of concept of an AI solution.


App Modernization.png

Application Modernization: 4-Week Implementation: After a feasibility assessment and a cost analysis, Nebulan will deploy your company’s applications on Microsoft Azure to give you operational efficiency and intelligent scaling. This offer is available only in Spanish.


App of the Future.png

App of the Future: 1-Week Proof of Concept: In this engagement, Atmosera will conduct a design workshop to uncover key objectives, ideate on solutions, and create a rapid prototype or reference architecture for a new cloud-native app on Microsoft Azure. Accelerate your journey to innovation with a modernized application and data landscape.


Azure and OCI.png

Azure and OCI: 3-Month Implementation: System Support Co. Ltd.’s one-stop offer for Oracle Database PaaS on Microsoft Azure includes a pre-migration assessment, a proof of concept, a production migration, and post-migration maintenance. This offer is available only in Japanese.


Azure Governance.png

Azure Governance and Security: 3-Week Implementation: Using cloud computing and service models, Kuralkan Bilisim will train customers how to efficiently govern cloud resources and implement security configurations. This will include modules concerning Azure management groups, Azure Resource Graph, Azure Policy, Azure Backup, and Azure Blueprints.


Azure Landing Zone.png

Azure Landing Zone Implementation: HAFN IT will provide customers with an operational Azure environment that includes basic governance, compliance, security, cost management, and change management features. Based on Terraform from HashiCorp, each Azure landing zone is automated and standardized. This service is available only in German.


Azure Managed Services.png

Azure Managed Services by e& Enterprise Cloud: In this managed service, e& enterprise, formerly known as Etisalat Digital, will take care of your cloud infrastructure while ensuring deployments are secure and meet your regulatory compliance needs. See details for the Standard tier, the Premium tier, and potential add-ons.


Azure Platform.png

Azure Platform: 4-Week Implementation: Fellowmind Enterprise Scale enables automated deployment of Azure through Infrastructure-as-Code methods. In this way, Fellowmind can provide a fast track to Azure. The implementation, based on Microsoft best practices, will be validated with customers.


Azure Virtual Desktop.png

Azure Virtual Desktop: 1-Month Proof of Concept: Hitachi will deliver a proof of concept of Azure Virtual Desktop so you can work remotely, scale out quickly, ensure security with multi-factor authentication and data removal control, and use geographically distant regions to safeguard against disaster. This offer is available only in Japanese.


Business Process.png

Business Process Validation Framework: 5-Week Implementation: Insight will identify core business processes and associated data requirements for your company, then make recommendations for deploying a new business process validation framework on a modern Azure data platform. The aim is to fast-track the creation and maintenance of business process rules and to provide repeatability for future use cases.


Connected Products.png

Connected Products: 6-Hour Workshop: In this workshop concerning IoT products and the changing manufacturing landscape, Cluster Reply will understand your company’s situation, determine how to connect your products, present the advantages of Microsoft Azure, and define a plan for your IoT journey.


Defend Against Threats.png

Defend Against Threats with SIEM Plus XDR: Improve your security posture and uncover risks with BJSS Limited’s cybersecurity workshop. BJSS will inspect your Microsoft 365 cloud and on-premises environments across email, identity, and data, then help you build a business case for a production deployment of Microsoft Sentinel.


IoT Discovery.png

IoT Discovery Workshop for Azure IoT: This workshop from NTT DATA Business Solutions AG will enable you to harness the potential of the Internet of Things and to define a digital strategy. Learn how to connect devices, how to make the best use of Azure IoT, and how to analyze and evaluate acquired data.


Microsoft Purview.png

Microsoft Purview: 4-Week Proof of Concept: Verne Technology Group will deliver a proof of concept of Microsoft Purview so you can monitor and control your organization’s data on a large scale and derive greater value from it. This offer is available only in Spanish.


SAP.png

SAP on Azure Managed Service (4 Weeks): Professionals from Orange Business Services will support you in deploying, migrating, and maintaining SAP applications in a Microsoft Azure environment. Stay focused on your core business and innovate faster with native Azure functionalities and the expertise of Orange Business Services.


Services for Prisma Cloud.png

Services for Prisma Cloud CWP Optimization: Palo Alto Networks will optimize Prisma Cloud workflows, processes, and playbooks within your Microsoft Azure environment. Prisma Cloud offers comprehensive cloud workload protection for virtual machines, containers, Kubernetes apps, serverless functions, and more.


waterunderground.png

waterunderground by InTTrust: 6-Month Implementation: In this engagement, InTTrust will implement its waterunderground sustainability solution, which uses Azure and IoT technologies to monitor quality and quantity trends for underground water. waterunderground also tracks indications of unusual over-pumping and alerts you to water quality changes.


Workshop innovate.png

Workshop: Innovate with Azure AI and Cloud Scale: Talent Business Solutions can support your company’s digital transformation initiatives. In this workshop, Talent Business Solutions will identify areas for innovation using Microsoft AI and cloud solutions. This offer is available only in French.



Contact our partners


Accenture Cloud Foundations Framework for Azure

Advanced Azure Visibility: 2-Week Implementation



Akinon Commerce: B2C and B2B



AL_ACS: Adapter for Azure Blob Storage and SAP



Application Innovation Engagement: 4-Week Assessment



Apporto Secure Virtual Desktops



Azure Cost Optimization: 3-Week Assessment



Azure Sentinel Onboarding: 5-Day Assessment



Azure VMware Solution: 2-Hour Briefing



Azure VMWare Solution Migration



Barracuda Managed Firewall



Campaign Manager Service Platform



Cloud Email Migration Service



Creating a Central Customer Database: 1-Hour Briefing



Discovery for Azure Cloud: 4-Week Assessment



DocuSense



Elitmind Smart Audit Platform



Ethics & Compliance



EY Application Threat Detection and Response for SAP



EY Security Baseline Definition



EY Space for Earth



GS Retail CX Solution



GUI on Debian 10



GUI on Debian 11



Habu



Help Desk from Palladsys



idbox Digital Onboarding



IMPACT – Planning & Reporting



Info-Tech Leave Software



Info-Tech Payroll Software



Innovation Jumpstart: 6-Week App Transformation



Jet Analytics for Dynamics 365



JioThings Smart Sub-Metering



Kairos365FSM



Managed Azure Professional Plan: 4-Week Implementation



MapmyIndia Mappls API Suite



Matrix Products: 1-Day Assessment



Mining Analytics: 3-Week Assessment



Qualify Video QC



QuasarDB Community Edition



rt360 Governance, Risk & Compliance Product Suite



Rx Connect



Rx Edit



Server Cloud Management



ShopSphere Insights



Smart Public Area Solution



Smart Shopping Mall Solution



SoMAX: 12-Month Subscription



Storya: Content Automation for Digital Signage



TCO Assessment for Azure VMware Services



Telestream Cloud Transform



The Reporting Hub



Timed Text Speech



TimeFleX Solutions: Desk Sharing



Timeqode: BPM Platform



Valeri (Social Media Analytics)



VergeLink | IoT-Connectivity for Machine Builders



Wipro Intelligent Volume Optimization and Risk (IVOR)



Work Force Analytics


Workshop: Better AI with Enterprise CDP