


Master how to build a web server on CentOS and avoid common mistakes
Master how to build a web server on CentOS and avoid common mistakes
As an open source operating system, CentOS has been widely used in the server field. Building a web server is one of the common requirements for using CentOS. This article will introduce the detailed method of setting up a web server and remind readers to avoid common mistakes.
1. Install Apache
Apache is a powerful and stable web server software that is widely used. We first need to install Apache.
Enter the following command in the terminal to install Apache:
sudo yum install httpd
After the installation is complete, start Apache and set it to start automatically at boot:
sudo systemctl start httpd sudo systemctl enable httpd
2. Configure Apache
After the installation is complete, we need to configure Apache. Open the Apache configuration file:
sudo vi /etc/httpd/conf/httpd.conf
The following are some common configuration items and their examples:
Listening port
Listen 80
Copy after loginWebsite Root directory
DocumentRoot "/var/www/html" <Directory "/var/www/html"> AllowOverride None Require all granted </Directory>
Copy after loginSet the default page
DirectoryIndex index.html index.php
Copy after loginSet the virtual host
<VirtualHost *:80> DocumentRoot "/var/www/html/example" ServerName example.com </VirtualHost>
Copy after login
After the configuration is completed , save the file and restart Apache:
sudo systemctl restart httpd
3. Install PHP
PHP is a scripting language executed on the server side, and can be used with Apache to develop dynamic web pages.
Enter the following command in the terminal to install PHP and related extensions:
sudo yum install php sudo yum install php-mysql php-gd php-opcache php-devel php-mbstring
After the installation is complete, edit the PHP configuration file:
sudo vi /etc/php.ini
The following are some common configuration items and their examples:
Set the default time zone
date.timezone = Asia/Shanghai
Copy after loginSet the upload file size limit
upload_max_filesize = 8M post_max_size = 8M
Copy after login
After the configuration is completed, Save the file and restart Apache:
sudo systemctl restart httpd
4. Install MySQL
MySQL is a popular relational database management system used to store and manage data for web applications.
Enter the following command in the terminal to install MySQL and related tools:
sudo yum install mariadb-server mariadb
After the installation is completed, start MySQL and set it to start automatically at boot:
sudo systemctl start mariadb sudo systemctl enable mariadb
After the installation is completed, run the security script Perform initial settings:
sudo mysql_secure_installation
5. Configure the database
Create a database and a new user, and grant the user permission to access the database.
Log in to MySQL:
sudo mysql -u root -p
Create database:
CREATE DATABASE example;
Create new user:
CREATE USER 'user'@'localhost' IDENTIFIED BY 'password';
Grant permissions:
GRANT ALL PRIVILEGES ON example.* TO 'user'@'localhost'; FLUSH PRIVILEGES;
6. Test and Debugging
After completing the above steps, your CentOS server has set up a web server. You can access the server's IP address in your browser and you should see the Apache default page.
If any problems occur, you can debug them by:
View the Apache log
sudo tail -f /var/log/httpd/access_log sudo tail -f /var/log/httpd/error_log
Copy after loginView the PHP error log
sudo tail -f /var/log/httpd/php_error_log
Copy after loginView MySQL log
sudo tail -f /var/log/mariadb/mariadb.log
Copy after login
7. Avoid common mistakes
In the process of building a web server, it is easy to make some mistakes Common Mistakes. The following are some things to pay attention to:
- Permission issues
Ensure that the permissions of Apache and related folders and files are set correctly. Example:
sudo chown -R apache:apache /var/www/html sudo chmod -R 755 /var/www/html
- Firewall Settings
If your server has a firewall enabled, make sure the HTTP and HTTPS service ports are open. Example:
sudo firewall-cmd --zone=public --add-service=http --permanent sudo firewall-cmd --zone=public --add-service=https --permanent sudo firewall-cmd --reload
- File path error
When configuring Apache and PHP, ensure the correctness of the file path.
- The service is not started or is not set to start automatically at boot
Make sure that Apache, PHP, MySQL and other services are started and set to start automatically at boot.
Conclusion
This article introduces in detail the method of setting up a web server on CentOS and reminds readers to avoid common mistakes. I hope readers can get help from this article and successfully build their own web server.
The above is the detailed content of Master how to build a web server on CentOS and avoid common mistakes. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Backup and Recovery Policy of GitLab under CentOS System In order to ensure data security and recoverability, GitLab on CentOS provides a variety of backup methods. This article will introduce several common backup methods, configuration parameters and recovery processes in detail to help you establish a complete GitLab backup and recovery strategy. 1. Manual backup Use the gitlab-rakegitlab:backup:create command to execute manual backup. This command backs up key information such as GitLab repository, database, users, user groups, keys, and permissions. The default backup file is stored in the /var/opt/gitlab/backups directory. You can modify /etc/gitlab

Improve HDFS performance on CentOS: A comprehensive optimization guide to optimize HDFS (Hadoop distributed file system) on CentOS requires comprehensive consideration of hardware, system configuration and network settings. This article provides a series of optimization strategies to help you improve HDFS performance. 1. Hardware upgrade and selection resource expansion: Increase the CPU, memory and storage capacity of the server as much as possible. High-performance hardware: adopts high-performance network cards and switches to improve network throughput. 2. System configuration fine-tuning kernel parameter adjustment: Modify /etc/sysctl.conf file to optimize kernel parameters such as TCP connection number, file handle number and memory management. For example, adjust TCP connection status and buffer size

The CentOS shutdown command is shutdown, and the syntax is shutdown [Options] Time [Information]. Options include: -h Stop the system immediately; -P Turn off the power after shutdown; -r restart; -t Waiting time. Times can be specified as immediate (now), minutes ( minutes), or a specific time (hh:mm). Added information can be displayed in system messages.

CentOS will be shut down in 2024 because its upstream distribution, RHEL 8, has been shut down. This shutdown will affect the CentOS 8 system, preventing it from continuing to receive updates. Users should plan for migration, and recommended options include CentOS Stream, AlmaLinux, and Rocky Linux to keep the system safe and stable.

The key to installing MySQL elegantly is to add the official MySQL repository. The specific steps are as follows: Download the MySQL official GPG key to prevent phishing attacks. Add MySQL repository file: rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm Update yum repository cache: yum update installation MySQL: yum install mysql-server startup MySQL service: systemctl start mysqld set up booting

Complete Guide to Checking HDFS Configuration in CentOS Systems This article will guide you how to effectively check the configuration and running status of HDFS on CentOS systems. The following steps will help you fully understand the setup and operation of HDFS. Verify Hadoop environment variable: First, make sure the Hadoop environment variable is set correctly. In the terminal, execute the following command to verify that Hadoop is installed and configured correctly: hadoopversion Check HDFS configuration file: The core configuration file of HDFS is located in the /etc/hadoop/conf/ directory, where core-site.xml and hdfs-site.xml are crucial. use

Building a Hadoop Distributed File System (HDFS) on a CentOS system requires multiple steps. This article provides a brief configuration guide. 1. Prepare to install JDK in the early stage: Install JavaDevelopmentKit (JDK) on all nodes, and the version must be compatible with Hadoop. The installation package can be downloaded from the Oracle official website. Environment variable configuration: Edit /etc/profile file, set Java and Hadoop environment variables, so that the system can find the installation path of JDK and Hadoop. 2. Security configuration: SSH password-free login to generate SSH key: Use the ssh-keygen command on each node

Common problems and solutions for Hadoop Distributed File System (HDFS) configuration under CentOS When building a HadoopHDFS cluster on CentOS, some common misconfigurations may lead to performance degradation, data loss and even the cluster cannot start. This article summarizes these common problems and their solutions to help you avoid these pitfalls and ensure the stability and efficient operation of your HDFS cluster. Rack-aware configuration error: Problem: Rack-aware information is not configured correctly, resulting in uneven distribution of data block replicas and increasing network load. Solution: Double check the rack-aware configuration in the hdfs-site.xml file and use hdfsdfsadmin-printTopo
