<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://serverrental.store/index.php?action=history&amp;feed=atom&amp;title=Hetzner_Online</id>
	<title>Hetzner Online - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://serverrental.store/index.php?action=history&amp;feed=atom&amp;title=Hetzner_Online"/>
	<link rel="alternate" type="text/html" href="https://serverrental.store/index.php?title=Hetzner_Online&amp;action=history"/>
	<updated>2026-04-17T15:57:50Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.42.7</generator>
	<entry>
		<id>https://serverrental.store/index.php?title=Hetzner_Online&amp;diff=1613&amp;oldid=prev</id>
		<title>Admin: Automated server configuration article</title>
		<link rel="alternate" type="text/html" href="https://serverrental.store/index.php?title=Hetzner_Online&amp;diff=1613&amp;oldid=prev"/>
		<updated>2025-04-15T12:00:54Z</updated>

		<summary type="html">&lt;p&gt;Automated server configuration article&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;# Hetzner Online Server Configuration – A Beginner&amp;#039;s Guide&lt;br /&gt;
&lt;br /&gt;
This article details configuring a MediaWiki instance on a server provided by Hetzner Online, a popular German hosting provider. It&amp;#039;s aimed at newcomers to both Hetzner and MediaWiki administration. We will cover server selection, initial setup, and basic software installation, focusing on a Debian-based environment, which is commonly used.&lt;br /&gt;
&lt;br /&gt;
== Server Selection and Initial Access&lt;br /&gt;
&lt;br /&gt;
Hetzner offers a variety of server options, ranging from virtual private servers (VPS) to dedicated hardware. For most MediaWiki installations, a VPS is sufficient. When selecting a VPS, consider the following:&lt;br /&gt;
&lt;br /&gt;
*   **CPU Cores:**  At least 2 cores are recommended for moderate traffic.&lt;br /&gt;
*   **RAM:** 4GB is a good starting point, but 8GB or more is preferable for larger wikis or higher traffic.&lt;br /&gt;
*   **Storage:** SSD storage is crucial for performance. 80GB is a reasonable minimum, increasing with wiki size.&lt;br /&gt;
*   **Network Bandwidth:** Ensure sufficient bandwidth to handle anticipated traffic.&lt;br /&gt;
&lt;br /&gt;
After ordering your server, Hetzner will provide you with access details via email:&lt;br /&gt;
&lt;br /&gt;
*   **IP Address:** The public IP address of your server.&lt;br /&gt;
*   **Root Password:** Use this to log in directly via SSH.&lt;br /&gt;
*   **Console Access:** Access the server via a web-based console.&lt;br /&gt;
&lt;br /&gt;
Use an SSH client (like PuTTY on Windows or the built-in `ssh` command on macOS/Linux) to connect to your server:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
ssh root@your_server_ip&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
== Initial Server Setup (Debian)&lt;br /&gt;
&lt;br /&gt;
Once logged in, update the package lists and upgrade existing packages:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
apt update&lt;br /&gt;
apt upgrade&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
It&amp;#039;s highly recommended to create a new user with `sudo` privileges instead of working directly as `root`.&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
adduser your_username&lt;br /&gt;
usermod -aG sudo your_username&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Switch to the new user:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
su - your_username&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Configure a firewall. `ufw` (Uncomplicated Firewall) is a simple and effective option:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
apt install ufw&lt;br /&gt;
ufw allow ssh&lt;br /&gt;
ufw enable&lt;br /&gt;
ufw status&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
== Software Installation: LAMP Stack&lt;br /&gt;
&lt;br /&gt;
MediaWiki requires a web server, a database, and PHP.  We will install a LAMP (Linux, Apache, MySQL/MariaDB, PHP) stack.&lt;br /&gt;
&lt;br /&gt;
=== Apache Web Server&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
apt install apache2&lt;br /&gt;
systemctl start apache2&lt;br /&gt;
systemctl enable apache2&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Verify that Apache is running by opening your server&amp;#039;s IP address in a web browser. You should see the default Apache welcome page.&lt;br /&gt;
&lt;br /&gt;
=== MariaDB Database Server&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
apt install mariadb-server mariadb-client&lt;br /&gt;
systemctl start mariadb&lt;br /&gt;
systemctl enable mariadb&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Secure your MariaDB installation:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
mysql_secure_installation&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Follow the prompts to set a root password, remove anonymous users, disallow remote root login, and remove the test database.&lt;br /&gt;
&lt;br /&gt;
=== PHP and Required Extensions&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
apt install php libapache2-mod-php php-mysql php-gd php-curl php-mbstring php-xml php-zip&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Restart Apache to load the new PHP modules:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
systemctl restart apache2&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
== MediaWiki Installation&lt;br /&gt;
&lt;br /&gt;
Download the latest version of MediaWiki from the official website: [https://www.mediawiki.org/wiki/Download](https://www.mediawiki.org/wiki/Download).  Use `wget` to download it directly to your server.  For example:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
wget https://releases.wikimedia.org/mediawiki/1.40/mediawiki-1.40.0.tar.gz&lt;br /&gt;
tar -xzvf mediawiki-1.40.0.tar.gz&lt;br /&gt;
mv mediawiki-1.40.0 /var/www/html/mediawiki&lt;br /&gt;
chown -R www-data:www-data /var/www/html/mediawiki&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Create an Apache virtual host configuration for your wiki.  Create a new file in `/etc/apache2/sites-available/`:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
sudo nano /etc/apache2/sites-available/mediawiki.conf&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Paste the following configuration (replace `your_domain.com` with your actual domain name or IP address):&lt;br /&gt;
&lt;br /&gt;
```apache&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
    ServerName your_domain.com&lt;br /&gt;
    DocumentRoot /var/www/html/mediawiki&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;Directory /var/www/html/mediawiki&amp;gt;&lt;br /&gt;
        Options FollowSymLinks&lt;br /&gt;
        AllowOverride All&lt;br /&gt;
        Require all granted&lt;br /&gt;
    &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    ErrorLog ${APACHE_LOG_DIR}/mediawiki_error.log&lt;br /&gt;
    CustomLog ${APACHE_LOG_DIR}/mediawiki_access.log combined&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
Enable the virtual host and restart Apache:&lt;br /&gt;
&lt;br /&gt;
```bash&lt;br /&gt;
sudo a2ensite mediawiki.conf&lt;br /&gt;
sudo systemctl restart apache2&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
== Database Configuration for MediaWiki&lt;br /&gt;
&lt;br /&gt;
Navigate to your wiki&amp;#039;s URL in a web browser.  The MediaWiki installer will guide you through the configuration process. You will need the following information:&lt;br /&gt;
&lt;br /&gt;
*   **Database Type:** MySQL/MariaDB&lt;br /&gt;
*   **Database Name:** Create a new database in MariaDB for MediaWiki.&lt;br /&gt;
*   **Database Username:**  Create a new database user with appropriate permissions.&lt;br /&gt;
*   **Database Password:**  Set a strong password for the database user.&lt;br /&gt;
*   **Admin Username:** Choose a username for the MediaWiki administrator account.&lt;br /&gt;
*   **Admin Password:** Set a strong password for the administrator account.&lt;br /&gt;
&lt;br /&gt;
=== Server Specifications Summary&lt;br /&gt;
&lt;br /&gt;
Here&amp;#039;s a table summarizing recommended server specifications:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Specification&lt;br /&gt;
! Minimum&lt;br /&gt;
! Recommended&lt;br /&gt;
! High Traffic&lt;br /&gt;
|-&lt;br /&gt;
| CPU Cores&lt;br /&gt;
| 2&lt;br /&gt;
| 4+&lt;br /&gt;
| 8+&lt;br /&gt;
|-&lt;br /&gt;
| RAM&lt;br /&gt;
| 4GB&lt;br /&gt;
| 8GB&lt;br /&gt;
| 16GB+&lt;br /&gt;
|-&lt;br /&gt;
| Storage (SSD)&lt;br /&gt;
| 80GB&lt;br /&gt;
| 160GB+&lt;br /&gt;
| 320GB+&lt;br /&gt;
|-&lt;br /&gt;
| Bandwidth&lt;br /&gt;
| 100 Mbps&lt;br /&gt;
| 500 Mbps&lt;br /&gt;
| 1 Gbps+&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== PHP Version Support&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! PHP Version&lt;br /&gt;
! Supported&lt;br /&gt;
|-&lt;br /&gt;
| 7.4&lt;br /&gt;
| Yes&lt;br /&gt;
|-&lt;br /&gt;
| 8.0&lt;br /&gt;
| Yes&lt;br /&gt;
|-&lt;br /&gt;
| 8.1&lt;br /&gt;
| Yes&lt;br /&gt;
|-&lt;br /&gt;
| 8.2&lt;br /&gt;
| Yes&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Common PHP Extensions&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Extension&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| php-mysql&lt;br /&gt;
| MySQL database connectivity&lt;br /&gt;
|-&lt;br /&gt;
| php-gd&lt;br /&gt;
| Image manipulation&lt;br /&gt;
|-&lt;br /&gt;
| php-curl&lt;br /&gt;
| Making HTTP requests&lt;br /&gt;
|-&lt;br /&gt;
| php-mbstring&lt;br /&gt;
| Multibyte string support&lt;br /&gt;
|-&lt;br /&gt;
| php-xml&lt;br /&gt;
| XML processing&lt;br /&gt;
|-&lt;br /&gt;
| php-zip&lt;br /&gt;
| Zip archive support&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Further Configuration&lt;br /&gt;
&lt;br /&gt;
After installation, explore the MediaWiki configuration options in `LocalSettings.php` to customize your wiki.  Consider installing extensions to add functionality.  Regularly back up your wiki&amp;#039;s database and files.  See [[Help:Configuration]], [[Help:Extensions]], and [[Help:Backups]] for more information. Also review [[Server Maintenance]] for ongoing upkeep.  Remember to consult the official MediaWiki documentation at [https://www.mediawiki.org/wiki/Manual:Configuration](https://www.mediawiki.org/wiki/Manual:Configuration) for detailed instructions.  For assistance with [[Troubleshooting]], refer to the dedicated help page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Server Hardware]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Intel-Based Server Configurations ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Configuration&lt;br /&gt;
! Specifications&lt;br /&gt;
! Benchmark&lt;br /&gt;
|-&lt;br /&gt;
| [[Core i7-6700K/7700 Server]]&lt;br /&gt;
| 64 GB DDR4, NVMe SSD 2 x 512 GB&lt;br /&gt;
| CPU Benchmark: 8046&lt;br /&gt;
|-&lt;br /&gt;
| [[Core i7-8700 Server]]&lt;br /&gt;
| 64 GB DDR4, NVMe SSD 2x1 TB&lt;br /&gt;
| CPU Benchmark: 13124&lt;br /&gt;
|-&lt;br /&gt;
| [[Core i9-9900K Server]]&lt;br /&gt;
| 128 GB DDR4, NVMe SSD 2 x 1 TB&lt;br /&gt;
| CPU Benchmark: 49969&lt;br /&gt;
|-&lt;br /&gt;
| [[Core i9-13900 Server (64GB)]]&lt;br /&gt;
| 64 GB RAM, 2x2 TB NVMe SSD&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Core i9-13900 Server (128GB)]]&lt;br /&gt;
| 128 GB RAM, 2x2 TB NVMe SSD&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Core i5-13500 Server (64GB)]]&lt;br /&gt;
| 64 GB RAM, 2x500 GB NVMe SSD&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Core i5-13500 Server (128GB)]]&lt;br /&gt;
| 128 GB RAM, 2x500 GB NVMe SSD&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| [[Core i5-13500 Workstation]]&lt;br /&gt;
| 64 GB DDR5 RAM, 2 NVMe SSD, NVIDIA RTX 4000&lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== AMD-Based Server Configurations ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Configuration&lt;br /&gt;
! Specifications&lt;br /&gt;
! Benchmark&lt;br /&gt;
|-&lt;br /&gt;
| [[Ryzen 5 3600 Server]]&lt;br /&gt;
| 64 GB RAM, 2x480 GB NVMe&lt;br /&gt;
| CPU Benchmark: 17849&lt;br /&gt;
|-&lt;br /&gt;
| [[Ryzen 7 7700 Server]]&lt;br /&gt;
| 64 GB DDR5 RAM, 2x1 TB NVMe&lt;br /&gt;
| CPU Benchmark: 35224&lt;br /&gt;
|-&lt;br /&gt;
| [[Ryzen 9 5950X Server]]&lt;br /&gt;
| 128 GB RAM, 2x4 TB NVMe&lt;br /&gt;
| CPU Benchmark: 46045&lt;br /&gt;
|-&lt;br /&gt;
| [[Ryzen 9 7950X Server]]&lt;br /&gt;
| 128 GB DDR5 ECC, 2x2 TB NVMe&lt;br /&gt;
| CPU Benchmark: 63561&lt;br /&gt;
|-&lt;br /&gt;
| [[EPYC 7502P Server (128GB/1TB)]]&lt;br /&gt;
| 128 GB RAM, 1 TB NVMe&lt;br /&gt;
| CPU Benchmark: 48021&lt;br /&gt;
|-&lt;br /&gt;
| [[EPYC 7502P Server (128GB/2TB)]]&lt;br /&gt;
| 128 GB RAM, 2 TB NVMe&lt;br /&gt;
| CPU Benchmark: 48021&lt;br /&gt;
|-&lt;br /&gt;
| [[EPYC 7502P Server (128GB/4TB)]]&lt;br /&gt;
| 128 GB RAM, 2x2 TB NVMe&lt;br /&gt;
| CPU Benchmark: 48021&lt;br /&gt;
|-&lt;br /&gt;
| [[EPYC 7502P Server (256GB/1TB)]]&lt;br /&gt;
| 256 GB RAM, 1 TB NVMe&lt;br /&gt;
| CPU Benchmark: 48021&lt;br /&gt;
|-&lt;br /&gt;
| [[EPYC 7502P Server (256GB/4TB)]]&lt;br /&gt;
| 256 GB RAM, 2x2 TB NVMe&lt;br /&gt;
| CPU Benchmark: 48021&lt;br /&gt;
|-&lt;br /&gt;
| [[EPYC 9454P Server]]&lt;br /&gt;
| 256 GB RAM, 2x2 TB NVMe&lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Order Your Dedicated Server ==&lt;br /&gt;
[https://powervps.net/?from=32 Configure and order] your ideal server configuration&lt;br /&gt;
&lt;br /&gt;
=== Need Assistance? ===&lt;br /&gt;
* Telegram: [https://t.me/powervps @powervps Servers at a discounted price]&lt;br /&gt;
&lt;br /&gt;
⚠️ *Note: All benchmark scores are approximate and may vary based on configuration. Server availability subject to stock.* ⚠️&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>