Local installation
mNo edit summary
Tags: Manual revert Visual edit
(Making Ubuntu Dev Documentation for Deployment of MDriven)
Line 17: Line 17:
sudo apt-get update
sudo apt-get update
sudo apt-get upgrade
sudo apt-get upgrade
</syntaxhighlight>'''Step -3: Secure Server.'''<syntaxhighlight>
sudo apt-get install openssh-server fail2ban
</syntaxhighlight>SSH assault can be avoided by utilizing Fail2ban
Step -4: Install Packages and Libraries
Install apt-transport-https<syntaxhighlight>
sudo apt-get install -y apt-transport-https
</syntaxhighlight>This ensures you can safely fetch packages, package metadata and add third-party repositories using HTTPS ensuring data integrity and privacy during downloads
Install the .NET SDK version 8.0 or Higher<syntaxhighlight>
sudo apt-get install -y dotnet-sdk-8.0
</syntaxhighlight>This contains the software development kit (SDK) for building and running applications using the .NET platform. What it does:
# It includes tools such as the .NET CLI(Command Line Interface), compilers, and build tools needed to develop, build, and publish .NET applications
# It also installs the .NET runtime
# Multi-Language Support - C#, F# and VB.NET4.Cross-Platform Development
Check that the install is successful<syntaxhighlight>
dotnet --list-runtimes
</syntaxhighlight>Step -5: Download MDriven Server from Official Site
The command wget downloads files from the web, Replace mdrivenserver_xxxx.zip with the actual name of the latest fullname of the lastest version of the MDriven Server from the main website.<syntaxhighlight>
wget https://www.mdriven.net/downloads/mdrivenserver_xxxx.zip -O downloaded_file.zip
-O downloaded_file.zip: Optional flag to rename the downloaded file
</syntaxhighlight>Step -6: Create a directory in /var/www/ - Directory.<syntaxhighlight>
cd /var/www/
mkdir mdrivenserver [Choose a suitable of your preference]
</syntaxhighlight>Unzip the files into the Directory<syntaxhighlight>
unzip downloaded_file.zip -d /var/www/mdrivenserver
</syntaxhighlight>Notes: If the unzip utility is not installed, you can install it with:<syntaxhighlight>
sudo apt-get install -y unzip
</syntaxhighlight>
</syntaxhighlight>

Revision as of 05:41, 19 December 2024

MDriven empowers businesses and developers to build and manage applications faster and smarter through Model-Driven Development (MDD). It bridges the gap between business needs and technical execution, turning models into fully functional applications with ease.

With MDriven you can:

  • Accelerate Development
  • Adapt Quickly
  • Collaborate easily
  • Deploy Anywhere

Step -1: Login to the Ubuntu Server via SSH.

ssh username@IP_Address -p Port_number

Connect via SSH to your server


Step -2: Update Server.

sudo apt-get update
sudo apt-get upgrade

Step -3: Secure Server.

sudo apt-get install openssh-server fail2ban

SSH assault can be avoided by utilizing Fail2ban

Step -4: Install Packages and Libraries

Install apt-transport-https

sudo apt-get install -y apt-transport-https

This ensures you can safely fetch packages, package metadata and add third-party repositories using HTTPS ensuring data integrity and privacy during downloads Install the .NET SDK version 8.0 or Higher

sudo apt-get install -y dotnet-sdk-8.0

This contains the software development kit (SDK) for building and running applications using the .NET platform. What it does:

  1. It includes tools such as the .NET CLI(Command Line Interface), compilers, and build tools needed to develop, build, and publish .NET applications
  2. It also installs the .NET runtime
  3. Multi-Language Support - C#, F# and VB.NET4.Cross-Platform Development

Check that the install is successful

dotnet --list-runtimes

Step -5: Download MDriven Server from Official Site The command wget downloads files from the web, Replace mdrivenserver_xxxx.zip with the actual name of the latest fullname of the lastest version of the MDriven Server from the main website.

wget https://www.mdriven.net/downloads/mdrivenserver_xxxx.zip -O downloaded_file.zip
-O downloaded_file.zip: Optional flag to rename the downloaded file

Step -6: Create a directory in /var/www/ - Directory.

cd /var/www/
mkdir mdrivenserver [Choose a suitable of your preference]

Unzip the files into the Directory

unzip downloaded_file.zip -d /var/www/mdrivenserver

Notes: If the unzip utility is not installed, you can install it with:

sudo apt-get install -y unzip
This page was edited 57 days ago on 01/20/2025. What links here