Ubuntu 24.04 Server'a PrestaShop Kurulumu

 

 

PrestaShop, kendi çevrimiçi mağazanızı oluşturmanıza ve yönetmenize olanak tanıyan popüler bir açık kaynak eCommerce platformudur. Ubuntu 24.04 çalışan VPS sunucunuza PrestaShop'u kurmak için bu adımları izleyin.

Ön Gereksinimler

  • Ubuntu 24.04 çalışan bir VPS sunucusu
  • Root veya sudo erişimi
  • Temel komut satırı bilgisi

Adım 1: Sistemi Güncelleyin

Sisteminizin güncel olduğundan emin olun:

sudo apt update && sudo apt upgrade -y

Adım 2: Gerekli Bağımlılıkları Yükleyin

Gerekli paketleri yükleyin:

sudo apt install -y apache2 mysql-server php libapache2-mod-php php-mysql php-xml php-mbstring php-curl php-zip php-gd

Adım 3: MySQL'i Başlatın ve Güvenli Hale Getirin

MySQL hizmetini başlatın:

sudo systemctl start mysql

MySQL kurulumu güvenli hale getirin:

sudo mysql_secure_installation

Root şifrenizi ayarlamak ve veritabanınızı güvence altına almak için talimatları izleyin.

Adım 4: PrestaShop için Veritabanı Oluşturun

MySQL'e giriş yapın:

sudo mysql -u root -p

PrestaShop için bir veritabanı ve kullanıcı oluşturun:

CREATE DATABASE prestashop;
CREATE USER 'prestashop_user'@'localhost' IDENTIFIED BY 'your_password';
GRANT ALL PRIVILEGES ON prestashop.* TO 'prestashop_user'@'localhost';
FLUSH PRIVILEGES;
EXIT;

Adım 5: PrestaShop'u İndirin

Web kök dizinine gidin:

cd /var/www/html

PrestaShop'un en son sürümünü indirin:

wget https://download.prestashop.com/download/releases/prestashop_1.7.8.5.zip

İndirilen dosyayı çıkarın:

unzip prestashop_1.7.8.5.zip

Adım 6: İzinleri Ayarlayın

PrestaShop dizini için doğru izinleri ayarlayın:

sudo chown -R www-data:www-data /var/www/html/*
sudo chmod -R 755 /var/www/html/*

Adım 7: Apache'yi Yapılandırın

PrestaShop için yeni bir Apache yapılandırma dosyası oluşturun:

sudo nano /etc/apache2/sites-available/prestashop.conf

Aşağıdaki yapılandırmayı ekleyin:

<VirtualHost *:80>
    DocumentRoot /var/www/html
    ServerName your_domain.com

    <Directory /var/www/html>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

your_domain.com kısmını gerçek alan adınızla değiştirin.

Adım 8: Apache'yi Yeniden Başlatın

Yapılandırma değişikliklerini uygulamak için Apache hizmetini yeniden başlatın:

sudo systemctl restart apache2

Adım 9: PrestaShop Kurulumunu Tamamlayın

Web tarayıcınızı açın ve http://your_domain.com adresine gidin. PrestaShop kurulumunu tamamlamak için ekrandaki talimatları izleyin.

Sonuç

Ubuntu 24.04 üzerindeki VPS sunucunuza PrestaShop'u başarıyla kurdunuz. Artık çevrimiçi mağazanızı oluşturmaya başlayabilirsiniz!



Windows VPS

Windows VPS UK

Windows VPS

VPS Windows

Serwer VPS Windows

VPS Windows Deutschland

Windows VPS Hosting

VPS Windows España

Windows VPS Nederland

VPS Windows Italia

VPS Windows Portugal

VPS Windows Россия

VPS Windows Украина

VPS Windows 日本

VPS Windows Sverige

VPS Windows Norge

VPS Windows عربى

VPS Windows Türkiye

Remote Desktop Services (RDS)

RDS CAL (Client Access License)

Remote Desktop VPS

Keywords: windows vps uk, windows vps, uk windows vps, windows vps hosting uk, vps windows server, uk vps windows, vps windows, servidor vps windows, vps uk windows, vps with windows, virtual private server windows, windows virtual private server, windows vps server uk, vps for windows, servidores vps windows, vps windows uk, windows vps hosting, vps windows hosting, windows vps server, windows virtual private servers, vps on windows, vps windows servers, cheap windows vps uk, windowsvps, windows desktop vps, buy vps windows, windows server vps, windows 10 vps uk, rds services, rds cal, remote desktop services, remote desktop hosting

#windowsvps #vpshosting #ukvps #virtualserver #windowsvpsuk #vpsserver #hostingvps #cloudvps #windowsvpshosting #cheapvps #vpswithwindows #windowsserver #servervps #vpssolutions #vpswindows #rdscal #remotedesktop #remotedesktopvps #rds #windowsrds

vps windows
  • 0 Bu dökümanı faydalı bulan kullanıcılar:
Bu cevap yeterince yardımcı oldu mu?

İlgili diğer dökümanlar

Boost Your Ubuntu System's Performance with a Swap File: A Step-by-Step Guide

What is a Swap File? A swap file in Ubuntu serves as dedicated virtual memory on your hard...

How to Migrate ISPConfig 2, ISPConfig 3.x, Confixx, CPanel or Plesk to ISPConfig 3.2 (single server)

Introduction Migration from other control panels like ISPConfig 2, ISPConfig 3.x, Confixx,...

How to Install and Configure Zabbix Server and Client on Rocky Linux 9

Introduction Zabbix is an open-source monitoring solution that provides real-time...

How to Install CockroachDB Cluster on Debian 12

Introduction CockroachDB is a distributed SQL database built to handle large-scale,...

How to Install Joomla with Apache and Let's Encrypt SSL on AlmaLinux 9

Introduction Joomla is a popular open-source content management system (CMS) used to build...