<?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=OVHcloud</id>
	<title>OVHcloud - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://serverrental.store/index.php?action=history&amp;feed=atom&amp;title=OVHcloud"/>
	<link rel="alternate" type="text/html" href="https://serverrental.store/index.php?title=OVHcloud&amp;action=history"/>
	<updated>2026-04-15T14:42:57Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.36.1</generator>
	<entry>
		<id>https://serverrental.store/index.php?title=OVHcloud&amp;diff=2001&amp;oldid=prev</id>
		<title>Admin: Automated server configuration article</title>
		<link rel="alternate" type="text/html" href="https://serverrental.store/index.php?title=OVHcloud&amp;diff=2001&amp;oldid=prev"/>
		<updated>2025-04-15T17:37:57Z</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;# OVHcloud Server Configuration for MediaWiki 1.40&lt;br /&gt;
&lt;br /&gt;
This article details configuring an OVHcloud server for running [[MediaWiki 1.40]]. It is aimed at newcomers seeking a robust and scalable hosting solution. OVHcloud offers a variety of server options, but this guide will focus on general principles applicable across their offerings, with some specific notes for common setups. This guide assumes you have basic command-line familiarity and a working knowledge of [[Linux server administration]].&lt;br /&gt;
&lt;br /&gt;
== Understanding OVHcloud Offerings==&lt;br /&gt;
&lt;br /&gt;
OVHcloud provides several server options suitable for MediaWiki. The most common include:&lt;br /&gt;
&lt;br /&gt;
*   **Public Cloud Instances:** Flexible, scalable, and pay-as-you-go. Ideal for projects with fluctuating traffic. Requires more configuration.&lt;br /&gt;
*   **Dedicated Servers:** Provide exclusive hardware resources.  Good for high-traffic wikis or those requiring specific hardware configurations.  More expensive but offer greater control.&lt;br /&gt;
*   **VPS (Virtual Private Servers):** A middle ground between Public Cloud and Dedicated Servers, offering a balance of cost and control.&lt;br /&gt;
&lt;br /&gt;
Choosing the right option depends on your wiki's size, traffic, and budget. For a small to medium-sized wiki, a VPS is often a good starting point.  For larger wikis, consider Public Cloud Instances or Dedicated Servers.  See [[Choosing a Hosting Provider]] for more general advice.&lt;br /&gt;
&lt;br /&gt;
== Server Specifications and Recommendations==&lt;br /&gt;
&lt;br /&gt;
Here's a table outlining recommended server specifications for different wiki sizes:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Wiki Size&lt;br /&gt;
! CPU&lt;br /&gt;
! RAM&lt;br /&gt;
! Storage (SSD)&lt;br /&gt;
! Bandwidth&lt;br /&gt;
|-&lt;br /&gt;
| Small (Under 10,000 pages)&lt;br /&gt;
| 2 vCores&lt;br /&gt;
| 4 GB&lt;br /&gt;
| 80 GB&lt;br /&gt;
| 1 TB&lt;br /&gt;
|-&lt;br /&gt;
| Medium (10,000 - 100,000 pages)&lt;br /&gt;
| 4 vCores&lt;br /&gt;
| 8 GB&lt;br /&gt;
| 160 GB&lt;br /&gt;
| 3 TB&lt;br /&gt;
|-&lt;br /&gt;
| Large (Over 100,000 pages)&lt;br /&gt;
| 8+ vCores&lt;br /&gt;
| 16+ GB&lt;br /&gt;
| 320+ GB&lt;br /&gt;
| 5+ TB&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
These are starting points. Monitor your server's resource usage regularly using tools like `top`, `htop`, or OVHcloud's monitoring dashboard and adjust accordingly.  Consider using a [[Database server]] separate from the web server for better performance, especially for larger wikis.&lt;br /&gt;
&lt;br /&gt;
== Software Installation and Configuration==&lt;br /&gt;
&lt;br /&gt;
The core software stack for MediaWiki includes:&lt;br /&gt;
&lt;br /&gt;
*   **Operating System:**  A Linux distribution like [[Ubuntu Server]], [[Debian]], or [[CentOS]]. Ubuntu is often preferred for its ease of use and large community support.&lt;br /&gt;
*   **Web Server:** [[Apache]] or [[Nginx]]. Nginx is often more performant for static content and can handle higher concurrency.&lt;br /&gt;
*   **Database Server:** [[MySQL]] or [[MariaDB]]. MariaDB is a popular, open-source fork of MySQL.&lt;br /&gt;
*   **PHP:** The scripting language MediaWiki is built upon.  MediaWiki 1.40 requires PHP 7.3 or higher.&lt;br /&gt;
*   **PHP Extensions:**  Essential extensions for MediaWiki functionality.&lt;br /&gt;
&lt;br /&gt;
Here's a table detailing the required PHP extensions:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! PHP Extension&lt;br /&gt;
! Description&lt;br /&gt;
|-&lt;br /&gt;
| php-cli&lt;br /&gt;
| Command-line interface for PHP&lt;br /&gt;
|-&lt;br /&gt;
| php-mysql&lt;br /&gt;
| MySQL database support&lt;br /&gt;
|-&lt;br /&gt;
| php-gd&lt;br /&gt;
| Image manipulation library&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 support&lt;br /&gt;
|-&lt;br /&gt;
| php-json&lt;br /&gt;
| JSON support&lt;br /&gt;
|-&lt;br /&gt;
| php-curl&lt;br /&gt;
| Client URL library&lt;br /&gt;
|-&lt;br /&gt;
| php-intl&lt;br /&gt;
| Internationalization support&lt;br /&gt;
|-&lt;br /&gt;
| php-zip&lt;br /&gt;
| ZIP archive support&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Installation commands will vary depending on your chosen Linux distribution.  For example, on Ubuntu: `sudo apt update &amp;amp;&amp;amp; sudo apt install apache2 mariadb-server php php-cli php-mysql php-gd php-mbstring php-xml php-json php-curl php-intl php-zip`&lt;br /&gt;
&lt;br /&gt;
== Security Considerations==&lt;br /&gt;
&lt;br /&gt;
Securing your server is crucial.  Implement the following measures:&lt;br /&gt;
&lt;br /&gt;
*   **Firewall:** Configure a firewall (e.g., `ufw` on Ubuntu) to allow only necessary ports (80 for HTTP, 443 for HTTPS, 22 for SSH - restrict SSH access to specific IP addresses). See [[Firewall configuration]].&lt;br /&gt;
*   **SSL/TLS:**  Enable HTTPS using a certificate from Let's Encrypt or a commercial provider.  See [[Setting up SSL]].&lt;br /&gt;
*   **Regular Updates:** Keep your operating system and all software packages up-to-date with the latest security patches.  Use `sudo apt update &amp;amp;&amp;amp; sudo apt upgrade` on Debian/Ubuntu.&lt;br /&gt;
*   **MediaWiki Security:**  Follow the security recommendations outlined in the [[MediaWiki security]] documentation.&lt;br /&gt;
*   **Database Security:**  Use strong passwords for your database user and restrict access to the database server.&lt;br /&gt;
&lt;br /&gt;
Here's a table summarizing key security practices:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Security Measure&lt;br /&gt;
! Description&lt;br /&gt;
! Priority&lt;br /&gt;
|-&lt;br /&gt;
| Firewall Configuration&lt;br /&gt;
| Restrict network access to essential ports.&lt;br /&gt;
| High&lt;br /&gt;
|-&lt;br /&gt;
| SSL/TLS Encryption&lt;br /&gt;
| Secure communication between server and clients.&lt;br /&gt;
| High&lt;br /&gt;
|-&lt;br /&gt;
| Regular Software Updates&lt;br /&gt;
| Patch security vulnerabilities.&lt;br /&gt;
| High&lt;br /&gt;
|-&lt;br /&gt;
| Strong Passwords&lt;br /&gt;
| Protect database and server accounts.&lt;br /&gt;
| High&lt;br /&gt;
|-&lt;br /&gt;
| MediaWiki Security Practices&lt;br /&gt;
| Implement MediaWiki-specific security measures.&lt;br /&gt;
| Medium&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Optimizing Performance==&lt;br /&gt;
&lt;br /&gt;
*   **Caching:** Enable caching mechanisms like [[APC]], [[Memcached]], or [[Redis]] to reduce database load.&lt;br /&gt;
*   **Database Optimization:** Regularly optimize your MariaDB/MySQL database using tools like `OPTIMIZE TABLE`.&lt;br /&gt;
*   **OPcache:** Ensure PHP OPcache is enabled for faster script execution.&lt;br /&gt;
*   **HTTP Compression:** Enable Gzip compression in your web server configuration to reduce bandwidth usage.&lt;br /&gt;
*   **Content Delivery Network (CDN):** Consider using a CDN to serve static content from geographically distributed servers.  See [[CDN integration]].&lt;br /&gt;
&lt;br /&gt;
Remember to monitor your server's performance and adjust your configuration as needed.  Regularly review your server logs for errors or performance bottlenecks.  [[Performance tuning]] is a continuous process.&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;br /&gt;
&lt;br /&gt;
{{Exchange Box}}&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
</feed>