Category: Web

Apache (16)
GlassFish (0)
HAProxy (2)
IIS (20)
Nginx (55)
Other (4)
Tomcat (17)

How to Start Tomcat on Linux

Tomcat does not start automatically, so you need to start it manually when booting up the server; otherwise, it won’t be accessible.
Use the cd command to locate and enter the Tomcat directory: #cd bin
#ls After running ls, you’ll see many scripts and files inside. Execute the following command: #sh startup.sh

If it returns …

How to Convert IIS 6.0 Logs Between LOG and IBL Formats

Sometimes you may find IIS isn’t generating IIS logs, or the log files default to the .ibl format?
This is caused by an IIS configuration file setting issue! Solution: 1. Locate the file: metabase.xml in the IIS directory on the C drive. 2. Open this file with Notepad and search for CentralBin …

How to Set Up 301 Redirects on IIS7 Correctly

Many people have previously tried using web.config to set up redirects, but they often encounter various issues. Here, I’ll share my own experience, using a 301 redirect from cnop.net to www.cnop.net as an example.

Copy and paste the following code: <?xml version="1.0" encoding="UTF-8" …

Quick WDCP Installation via RPM Package Method

The wdlinux panel installation via compilation can take a few hours, and the compilation process itself is particularly troublesome. The RPM package method can finish installation in about 20 minutes, though PHP is limited to version 5.2. Below we use the RPM package installation as an example. The official website installation address is:
http://www.wdlinux.cn/wdcp/install …

How to Add pdo_mysql Module to PHP in WDCP

The default PHP installation only includes the commonly used default modules; some less common or infrequently used ones are not installed. Below, we’ll use the wdlinux panel to install pdo-mysql as an example. After successful installation, you can detect it through a PHP probe: wget http://pecl.php.net/get/PDO_MYSQL-1.0.2.t …