Arama Yap Mesaj Submit
Request a Callback
+90
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro
X
X

Select Your Currency

Turkish Lira $ US Dollar Euro

Contact Us

Location Halkali merkez neighborhood fatih st ozgur apt no 46 , Kucukcekmece , Istanbul , 34303 , TR
Server 24.04 LTS Ready

Ubuntu Server: Infrastructure of the Future

Ubuntu, the world's most popular open source operating system, is also the leader in cloud computing, artificial intelligence (AI) and web servers in 2026 . Combining Debian's stability with modern technologies, Ubuntu offers maximum performance on the Eka Sunucu VDS infrastructure.

In this guide; From installation to optimization, from security to network management, you will learn to manage your Ubuntu server like a pro.

admin@eka-ubuntu:~
admin@eka-ubuntu:~$ lsb_release -a
Distributor ID: Ubuntu
Description: Ubuntu 24.04.1 LTS
Release: 24.04
Codename: noble
admin@eka-ubuntu:~$ sudo ufw status
Status: active

To Action From
-- ------ ----
22/tcp ALLOW Anywhere
80/tcp ALLOW Anywhere
443/tcp ALLOW Anywhere
admin@eka-ubuntu:~$ free -h
total used free shared buff/cache available
Mem: 16Gi 2.1Gi 10Gi 2.0Mi 3.9Gi 13Gi
admin@eka-ubuntu:~$

Why Ubuntu Server in 2026?

The most popular choice for enterprise projects, AI development and web hosting.

LTS Stability

Long Term Support (LTS) versions receive standard security updates for 5 years and extended security updates for up to 10 years. 20.04, 22.04 and 24.04 LTS options are available in Eka Sunucu VDSs.

Large Package Warehouse

The most current versions of modern software such as Python, Node.js, Docker, Kubernetes usually arrive in Ubuntu repositories first. It's heaven for developers.

Corporate Security

Your server is hardened by default with built-in tools like AppArmor, Kernel Livepatch (kernel update without reboot), and UFW.

Package Management: APT and SNAP

There are two basic ways to install software in Ubuntu. It is essential to master these in server management.

It is the heart of Debian-based systems. .deb Manages packages. It is stable and reliable.

# Sistem daycelleme
sudo apt update && sudo apt upgrade -y

# Paket upload (Örn: Nginx)
sudo apt install nginx

# Paket kaldırma
sudo apt remove nginx

# Gereksiz dosyaları temizleme
sudo apt autoremove

These are packages developed by Canonical that contain all dependencies. It works in isolation and is updated automatically.

# Certbot (SSL) kurulumu for idealdir
sudo snap install --classic certbot

# Yüklü snapleri listeleme
snap list

# Snap paketini daycelleme
sudo snap refresh packagename
Eka Sunucu Tip

For web server components (Apache, PHP, MySQL) always APT use it. It consumes less resources and integrates better with the system. SNAPshould generally be preferred for desktop applications or isolated tools like Certbot.

Ubuntu Package Management

Modern Network Configuration with Netplan

old /etc/network/interfaces The file is now history. Default network manager since Ubuntu 18.04 Netplanis. It works in YAML format.

Example Static IP Configuration

Dosya: /etc/netplan/00-installer-config.yaml

network:
  version: 2
  ethernets:
    ens160:
      dhcp4: no
      addresses:
        - 192.168.1.100/24
      routes:
        - to: default
          via: 192.168.1.1
      nameservers:
        addresses: [8.8.8.8, 1.1.1.1]
Things to Consider
  • YAML Precision: Do not use the TAB key for indentation, only use SPACE. Incorrect indentation prevents the network service from starting.
  • Uygulama: After editing the file, run this command to apply the settings:
    sudo netplan apply
  • Test: To try the settings but undo them if they are broken: sudo netplan try

UFW: Firewall Management

Iptables is complex. Ubuntu, to simplify this UFW (Uncomplicated Firewall) presents. The first thing you need to do as soon as you set up your server is to configure UFW.

Komut Description example
ufw status Shows firewall status. sudo ufw status verbose
ufw allow Allows a specific port or service. sudo ufw allow 22/tcp (SSH)
ufw deny Blocks a specific port or IP. sudo ufw deny from 1.2.3.4
ufw enable Activates the firewall. Attention: Grant SSH permission first!
ufw delete Deletes the rule. sudo ufw delete allow 80
Recommended Starting Rules:
sudo ufw default deny incoming (Block everything that comes)
sudo ufw default allow outgoing (Let everything go)
sudo ufw allow ssh (Allow SSH connection)
sudo ufw allow http (for website)
sudo ufw allow https (for SSL)
sudo ufw enable (Activate)

LAMP Installation on Ubuntu

The most popular infrastructure to publish your website: Linux, Apache, MySQL, PHP.

  1. Apache Installation
    sudo apt install apache2
    sudo systemctl enable apache2
  2. MySQL Installation
    sudo apt install mysql-server
    sudo mysql_secure_installation
  3. PHP Installation
    sudo apt install php libapache2-mod-php php-mysql

Eka Sunucu Difference

What you will get from Eka Sunucu Managed VDS You do not need to deal with these installations in your services.

  • Optional cPanel, Plesk or DirectAdmin installation
  • Litespeed Web Server optimization
  • PHP version selector (Selector)
  • Automatic security updates
Ready Hosting Packages

Frequently Asked Questions

Frequently asked questions about Ubuntu server management.

Ubuntu Server comes without a graphical interface (GUI). This ensures that system resources (RAM, CPU) are used only for your services (Web, DB, etc.). The desktop version contains many unnecessary software for daily use. For server performance, the "Server" version should always be preferred.
if cPanel If you're going to use it, AlmaLinux is a must (cPanel just brought Ubuntu support, but AlmaLinux is the main platform). But for Docker, Python, AI or custom development environments Ubuntu has greater library support and community resources.
Yes, it is recommended for security. Root login may be disabled by default in Ubuntu. instead sudo Creating a user with authorized permission and disabling root login (PermitRootLogin no) via SSH 2026 is an important step in security standards.

Strong Infrastructure, Flawless Ubuntu Experience

With NVMe SSD disks, 10 Gbit line capacity and 99.9 %Uptime guarantee, our Ubuntu VDS servers are ready to make your projects fly.

Top