Skip to content

Guide för installation av MediaWiki på Ubuntu 24.04

Netcloud24
Cloud Infrastructure Expert
NetCloud24 Expert Guides Open the dedicated video page

Video transcript: NetCloud24 Expert Guides. Practical knowledge for a reliable cloud. Cloud and VPS expertise, security, performance, and step-by-step tutorials. Learn, deploy, and keep building with NetCloud24.

 

 

Förutsättningar

Innan du börjar, se till att du har tillgång till en VPS-server med Ubuntu 24.04 installerat.

Steg 1: Uppdatera systemet

sudo apt update && sudo apt upgrade -y

Steg 2: Installera Apache, MySQL och PHP

Installera webbservern Apache, databasen MySQL och PHP med följande kommando:

sudo apt install apache2 mysql-server php php-mysql libapache2-mod-php -y

Steg 3: Ladda ner MediaWiki

Ladda ner den senaste versionen av MediaWiki från den officiella webbplatsen:

wget https://releases.wikimedia.org/mediawiki/1.39/mediawiki-1.39.0.tar.gz

Packa upp den nedladdade filen:

tar -xvzf mediawiki-1.39.0.tar.gz

Flytta mappen till /var/www/html:

sudo mv mediawiki-1.39.0 /var/www/html/mediawiki

Steg 4: Konfigurera MySQL

Logga in på MySQL för att skapa en databas för MediaWiki:

sudo mysql

Inuti MySQL, kör följande kommandon:

Visual overview of Guide för installation av MediaWiki på Ubuntu 24.04
Visual overview: Guide för installation av MediaWiki på Ubuntu 24.04
CREATE DATABASE mediawiki;
CREATE USER 'wikiuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON mediawiki.* TO 'wikiuser'@'localhost';
FLUSH PRIVILEGES;
EXIT;

Steg 5: Konfigurera Apache

Skapa en konfigurationsfil för MediaWiki:

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

Lägg till följande rader:

<VirtualHost *:80>
        DocumentRoot /var/www/html/mediawiki
        <Directory /var/www/html/mediawiki>
            Options Indexes FollowSymLinks
            AllowOverride All
            Require all granted
        </Directory>
    </VirtualHost>

Aktivera webbplatsen och omskrivningsmodulen:

sudo a2ensite mediawiki.conf
sudo a2enmod rewrite
sudo systemctl restart apache2

Steg 6: Slutföra installationen via webben

Öppna webbläsaren och gå till http://your_server_ip/mediawiki för att slutföra installationen enligt instruktionerna på skärmen.

Sammanfattning

Du har framgångsrikt installerat MediaWiki på din VPS-server med Ubuntu 24.04!

Windows VPS Deutschland

Windows VPS España

Windows VPS Nederland

Windows VPS Italia

Key topics covered in Guide för installation av MediaWiki på Ubuntu 24.04
Key topics covered in this NetCloud24 guide.

Windows VPS Portugal

VPS Windows Italia

Windows VPS

Windows VPS

Windows VPS Sverige

Windows VPS Norge

Windows VPS

Windows VPS Türkiye

Practical checklist for Guide för installation av MediaWiki på Ubuntu 24.04
Practical checklist for applying the guidance in this article.

Windows RDS (Remote Desktop Services)

Windows VPS

Guide för installation av MediaWiki på Ubuntu 24.04
Guide för installation av MediaWiki på Ubuntu 24.04
Explore more

More on this topic

Netcloud24
Netcloud24
Cloud Infrastructure Expert · NetCloud24

Comments are closed.