Mendix Deployment on Azure VM

0
Hi,   Is it possible to deploy the Mendix Applicaiton on Azure VM and that can be used as the PROD Instance.   I see the Private cloud installation is too heavy work.   Thanks, Shashi Preetham.
asked
2 answers
0

Hi Shashi,

 

It is possible to deploy and run a Mendix application on an Azure VM or On-Prem, you will need a license from Mendix to run the application in a production mode where it does not shutdown after some time.

 

Here is a link to the documentation:

Deploy Mendix on Windows in Microsoft Azure | Mendix Documentation

 

Regards,

Sam

answered
-1

Yes, it is definitely possible to deploy a Mendix application on an Azure Virtual Machine (VM) and use it as a production instance. While the Mendix Private Cloud setup may seem complex, deploying on an Azure VM is a simpler alternative, and many companies do this for production environments.

Key Steps for Deploying Mendix on Azure VM:

1. Set Up the Azure VM:

  • Create a Virtual Machine (VM) in Azure with the desired size and configuration for running your Mendix application.
  • Choose an OS (usually Ubuntu or Windows Server), depending on your preferences and the Mendix environment you want to use.
  • Make sure the VM meets the necessary system requirements (CPU, memory, disk space, etc.) for your Mendix app, which will depend on factors like app size, traffic, etc.

2. Install Mendix Runtime Environment:

  • Install the Mendix Runtime: On the VM, you'll need to install the Mendix runtime environment. This can be done by downloading the Mendix Runtime and setting it up for your application.
  • Java JDK: Ensure that the Java Development Kit (JDK) is installed on the VM as it’s required by the Mendix runtime.
  • Mendix Deployment Package: Download the Mendix deployment package (the .mpk file or the Mendix Project artifact) from your Mendix Studio Pro environment.
  • Deployment: Deploy your Mendix application to the runtime environment. You can do this via Mendix Command-Line Interface (CLI) or manually by copying the deployment package.

Mo re info check out this link  : 

Deploy Mendix on Windows in Microsoft Azure | Mendix Documentation

answered