Home > Article > Operation and Maintenance > How to build a php environment for cloud server linux
1. Choose a suitable cloud server
First of all, you need to choose a suitable cloud server. Choose the appropriate configuration and operating system based on your needs. Here we take the CentOS system on Alibaba Cloud as an example.
2. Install the web server
The first step in setting up the environment is to install a web server such as Apache or Nginx. Here we take Apache as an example. Use the following command to install Apache in the terminal:
sudo yum update sudo yum install httpd
After the installation is complete, start the Apache service and set it to start at boot:
sudo systemctl start httpd.service sudo systemctl enable httpd.service
At this time, by accessing the public IP address of the cloud server, browse Enter the IP address into the server and you will see the default page of Apache, indicating that Apache has been successfully installed.
3. Install php
Next, install php. Use the following command to install php in the terminal:
sudo yum -y install php php-mysql
After the installation is complete, restart the Apache service:
<code><code>##<pre class="brush:php;toolbar:false">sudo systemctl restart httpd.service</pre><code>
sudo vim /var/www/html/info.phpEnter in the info.php file The following content:
<?php phpinfo(); ?>After saving and exiting the file, you can see it by entering the public IP address of the cloud server in the browser and adding /info.php, that is:
http://你的IP地址/info.phpPHP related information, such as PHP version, configuration file path, etc., indicates that the PHP environment has been successfully established. 5. Install php extensionsIn php applications, you need to install some php extensions to run properly. Here are some common extension installation methods.
sudo yum install php-curlAfter the installation is complete, restart the Apache service:
<code><code><pre class="brush:php;toolbar:false">sudo systemctl restart httpd.service</pre><code>
sudo yum install php-gdAfter the installation is complete, restart the Apache service:
<code><code><pre class="brush:php;toolbar:false">sudo systemctl restart httpd.service</pre><code>
sudo yum install php-mbstringAfter the installation is complete, restart the Apache service:
<code><code><pre class="brush:php;toolbar:false">sudo systemctl restart httpd.service</pre><code>
sudo vim /etc/php.iniFind the following configuration items to modify:
display_errors = On # 显示错误信息 date.timezone = Asia/Shanghai # 设置时区 upload_max_filesize = 20M # 设置上传文件大小限制After the modification is completed, save and exit.
The above is the detailed content of How to build a php environment for cloud server linux. For more information, please follow other related articles on the PHP Chinese website!