immers.cloud platform

Use robust IT-infrastructure on a modern hardware in a innovative data center
Begin

Eco-friendly cloud service

Using immersion cooling of server and network equipment. Immersion cooling is a method of cooling heat-generating equipment by immersion in a liquid. In the case of the immers.cloud platform, we immerse all servers and network equipment in a special dielectric liquid that removes heat from the server's elements 1200 times more efficiently than air.
More

Intel® Xeon® Gold class processors

Scalable performance, increased reliability, built-in security features in second generation Intel® Xeon® Gold processors. Up to 4 GHz core and up to 2933 MHz RAM clocks.
These processors are optimized for resource-intensive workloads, cloud computing, and can be used in modern high-speed networks and storage systems. Support for up to 4 processors provides scalability for a wide range of tasks.

CPU Instances

The 2nd generation Intel® Xeon® family of scalable processors provides the foundation for a powerful data center platform that creates an evolutionary leap in flexibility and scalability.

  • cpu.2.4.20

    2 cores Intel® Xeon®
    4096 MB RAM
    20 GB SSD
    $18.48 per month
    Launch
  • cpu.4.4.100

    4 cores Intel® Xeon®
    4096 MB RAM
    100 GB SSD
    $35.04 per month
    Launch
  • cpu.16.32.160

    16 cores Intel® Xeon®
    32768 MB RAM
    160 GB SSD
    $138.09 per month
    Launch
CPU servers

GPU Tesla and RTX™

Tesla GPUs allow you to use the computing power of thousands of CUDA cores to solve resource-intensive tasks (parallel data processing), such as neural network training, protein folding simulation, DNA sequencing, weather modeling, financial risk analysis, and so on.
The RTX 20xx and 30xx GPUs are based on the new Turing and Ampere architectures respectively. The RTX 20 and 30 series supports real-time hardware ray tracing, which is implemented in a new RT cores. Use graphics cards RTX for mining and blockchain processing.

GPU Instances

Virtual machines with exclusive access to Tesla or RTX™ graphics adapters can perform parallel data processing for resource-intensive tasks.

  • rtx2080ti-1.4.8.40

    1 RTX2080TI
    8192 MB RAM
    40 GB SSD
    from $0.37 per hour
    Launch
  • rtx2080ti-2.4.8.40

    2 RTX2080TI
    8192 MB RAM
    40 GB SSD
    from $0.70 per hour
    Launch
  • rtx2080ti-4.8.32.40

    4 RTX2080TI
    32768 MB RAM
    40 GB SSD
    from $1.42 per hour
    Launch
GPU servers

Answers to frequently asked questions

You can rent a virtual server for any period. Make a payment for any amount from 1.3 $ and work within the prepaid balance. When the work is completed, delete the server to stop spending money.

You create servers yourself in the control panel, choosing the hardware configuration and operating system. As a rule, the ordered capacities are available for use within a few minutes.

If something went wrong-write to our round-the-clock support service: https://t.me/immerscloudsupport.

You can choose from basic images: Windows Server 2019, Windows Server 2022, Ubuntu, Debian, CentOS, Fedora, OpenSUSE. Or use a pre-configured image from the Marketplace.

All operating systems are installed automatically when the server is created.

By default, we provide connection to Windows-based servers via RDP, and for Linux-based servers-via SSH.

You can configure any connection method that is convenient for you yourself.

Yes, it is possible. Contact our round-the-clock support service (https://t.me/immerscloudsupport) and tell us what configuration you need.

Why immers.cloud?

  • Cheapest CPU rates

    100% vCPU, no overselling. Find cheaper — get a discount!
  • Discounts
    for prepayment

    25% and 50% discount on prepayment for 1 and 3 months

  • Second
    billing

    Use virtual machines just as much, as needed

  • No
    waiting

    Automatic OS installation, virtual machines are ready in a few minutes
  • Free
    Internet

    Up to 1 Gb/s incoming and outgoing traffic for free
  • Round-the-clock
    support

    Live chat and Telegram support — 24/7
Sign up

Pre-installed images

Create virtual machines based on any of the pre-installed operating systems with the necessary set of additional software.
  • Ubuntu
     
  • Debian
     
  • CentOS
     
  • Fedora
     
  • OpenSUSE
     
  • MS Windows Server
     
  • 3ds Max
     
  • Cinema 4D
     
  • Corona
     
  • Deadline
     
  • Blender
     
  • Archicad
     
  • Ubuntu
    Graphics drivers, CUDA, cuDNN
  • MS Windows Server
    Graphics drivers, CUDA, cuDNN
  • Nginx
     
  • Apache
     
  • Git
     
  • Jupyter
     
  • Django
     
  • MySQL
     
View all the pre-installed images in the Marketplace.

Pure OpenStack API

Developers and system administrators can manage the cloud using the full OpenStack API.
Authenticate ninja_user example: $ curl -g -i -X POST https://api.immers.cloud:5000/v3/auth/tokens \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-d '{"auth": {"identity": {"methods": ["password"], "password": {"user": { "name": "ninja_user", "password": "ninja_password", "domain": {"id": "default"}}}}, "scope": {"project": {"name": "ninja_user", "domain": {"id": "default"}}}}}'
Create ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"server": {"name": "ninja_vm", "imageRef": "8b85e210-d2c8-490a-a0ba-dc17183c0223", "key_name": "mykey01", "flavorRef": "8f9a148d-b258-42f7-bcc2-32581d86e1f1", "max_count": 1, "min_count": 1, "networks": [{"uuid": "cc5f6f4a-2c44-44a4-af9a-f8534e34d2b7"}]}}'
STOP ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers/{server_id}/action \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"os-stop" : null}'
START ninja_vm example: $ curl -g -i -X POST https://api.immers.cloud:8774/v2.1/servers/{server_id}/action \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN" \
-d '{"os-start" : null}'
Delete ninja_vm example: $ curl -g -i -X DELETE https://api.immers.cloud:8774/v2.1/servers/{server_id} \
-H "User-Agent: YOUR-USER-AGENT" \
-H "X-Auth-Token: YOUR-API-TOKEN"
Documentation
Signup

Any questions?

Write to us via live chat, email, or call by phone:
@immerscloudsupport
support@immers.cloud
+7 499 110-44-94

Any questions?

Write to us via live chat, email, or call by phone:
@immerscloudsupport support@immers.cloud +7 499 110-44-94
Sign up

Subscribe to our newsletter

Get notifications about new promotions and special offers by email.

 I agree to the processing of personal data