Welcome to W3Space Blog

Step-by-Step Tutorials

Tengine vs. OpenResty: Which Web Server is Best for Performance and Scalability?

Introduction In the world of web servers, performance and flexibility are paramount. Tengine and OpenResty are two high-performance web servers, both derived from NGINX, that have made significant strides in improving website speed and scalability. But which one is better suited for your needs? Let’s dive into the core differences, performance benchmarks, and use cases… read more »

 137 total views,  39 views today

Apache vs. Nginx vs. LiteSpeed: Unraveling the Differences

In the world of web servers, Apache, Nginx, and LiteSpeed stand out as three of the most popular and widely used options. Each has its unique features, performance characteristics, and configuration options, making the choice between them a critical decision for web developers and administrators. This article delves into the nuances of these web servers,… read more »

 1,979 total views,  30 views today

How to Set up and Configure Root User on AlmaLinux 8 with Username ‘almalinux’

AlmaLinux 8, like many other Linux distributions, typically sets up the root user during the installation process. The root user is usually created with a password that you provide during installation. However, if for some reason you need to change the root password or if it wasn’t set during installation, you can use the following… read more »

 3,586 total views,  36 views today

Configuring CentOS 7 Boot Order: Managing System Startup Preferences

To ensure your CentOS 7 system boots up with the desired configuration, you can manipulate the boot order settings using the following steps: Check the Current Boot Order: To determine the current boot order configuration, execute the command: grub2-editenv list The output will display the saved_entry value, which represents the default boot entry. For example:… read more »

 3,527 total views,  24 views today

Install a Specific or older Version of cPanel & WHM

Introduction: In certain cases, you may need to install a specific version of cPanel & WHM on your server. While it is generally recommended to have the most up-to-date version, there are situations where installing a particular version is necessary. Please note that we advise installing only the cPanel versions listed in the provided tiers…. read more »

 5,015 total views,  33 views today

Benchmark VPS/Dedicated Server with a single command – VPS performance test ssh

Run either command on your VPS. Script 1 curl -sL yabs.sh | bash Or wget -qO- yabs.sh | bash Script 2 wget -qO- bench.sh | bash Or curl -Lso- bench.sh | bash Script 3 wget freevps.us/downloads/bench.sh && bash bench.sh -io && rm -f bench.sh* VPS CPU BenchMark test wget https://vhwinfo.com/vhwinfo.sh & sh vhwinfo.sh  3,314 total views,… read more »

 3,314 total views,  27 views today

Preconfiguring cPanel Installation with Desired MySQL Version – cpanel profile install mariadb

Introduction In order to ensure that your desired version of MySQL is installed right from the beginning, it is possible to preconfigure a cPanel installation. By following a simple procedure, you can specify the MySQL version you want during the installation process. Procedure If you are setting up a new server without cPanel installed, perform… read more »

 2,935 total views,  27 views today

Convert Excel Files to CSV – Windows Script

Instructions Copy both files into the directory containing the files you want converted Run excel-to-csv.bat Note: This script requires Excel to be installed. excel-to-csv.bat FOR /f “delims=“ %%i IN (‘DIR *.xls* /b’) DO to-csv.vbs “%%i“ “%%i.csv“ to-csv.vbs if WScript.Arguments.Count < 2 Then WScript.Echo “Please specify the source and the destination files. Usage: ExcelToCsv <xls/xlsx source file>… read more »

 3,035 total views,  21 views today

How to Search for Files and Folders Recursively via SSH

You need to use the following command to search for a file called FileName.txt under the current folder including all subfolders find ./ -type f -exec grep -l “text to find” {} \; find . -name FileName.txt If you are unclear about the file name or want to match a part of the file name,… read more »

 5,356 total views,  27 views today

Sidebar