Home > Backend Development > PHP Tutorial > Installation of LAMP environment and yaf extension under Ubuntu14, ubuntu14yaf_PHP tutorial

Installation of LAMP environment and yaf extension under Ubuntu14, ubuntu14yaf_PHP tutorial

WBOY
Release: 2016-07-13 09:52:11
Original
993 people have browsed it

Installation of LAMP environment and yaf extension under Ubuntu14, ubuntu14yaf

I installed the lamp environment under ubuntu some time ago, record the installation process for easy reference later.

InstallationlampEnvironment

① Install apache

<span>sudo</span> apt-get <span>install</span> apache2
Copy after login

The system will pop up a prompt as shown in the picture. At this time, you need to enter the user's password before installation. All other installation operations below require entering the password, which is the same every time.

Open the browser and enter localhost. If the following interface is displayed, the installation is successful.

②Install php

<span>sudo</span> apt-get <span>install</span> php5
Copy after login

③Install mysql

<span>sudo</span> apt-get <span>install</span> mysql-server
Copy after login

At this point the lamp environment installation is completed. Check whether it is correct.

After

Apache is installed , the root directory of is in /var/www/html

cd  /var/www/<span>html
</span><span>sudo</span> <span>vi</span> phpinfo.php
Copy after login

Enter

<?<span>php
  </span><span>phpinfo</span><span>();
</span>?>
Copy after login

Then open the browser and enter localhost/phpinfo.php. If the following page appears, the installation is successful.

Install the development package of php

Extensions can only be installed if the development package is installed

<span>sudo</span> apt-get <span>install</span> php5-dev
Copy after login

Install the php extension

a) Install php-mysql

This installation comes with the system library, you can install it directly.

<span>sudo</span> apt-get <span>install</span> php5-mysql
Copy after login

Restart apacheload mysql support

<span>sudo</span> service  apache2 restart
Copy after login

b) Install yaf

Before installing yaf, you need to install the pcre library, otherwise install yafAn error will be reported

<span>sudo</span> apt-get <span>install</span> libpcre3 libpcre3-dev
Copy after login

Download the latest yaf file

cd  /usr/local/src/
<span>sudo</span> <span>wget</span> https:<span>//</span><span>github.com/laruence/php-yaf/archive/master.zip</span>
Copy after login

  • To prevent it from having the same name as the file downloaded later, change the name to distinguish it.

Unzip

<span>sudo</span> <span>unzip</span> yaf.<span>zip</span>
Copy after login

As shown below after decompression

cd php-yaf-<span>master
</span><span>sudo</span> /usr/bin/phpize
Copy after login

Configuration

Compile

Compile and install

After completion, the yaf.so file is generated in the following directory

Modify the configuration of php.ini and load yaf

<span>sudo</span> <span>vi</span> php.ini 
Copy after login

Change the extension directory to the surviving onesoThe directory where the file is located

New

Restartapache

<span>sudo</span> service apache2 restart
Copy after login

Refresh at this time and find that yaf has been installed correctly

If you need other extensions like yaf installation steps.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1010335.htmlTechArticleInstallation of LAMP environment and yaf extension under Ubuntu14, ubuntu14yaf installed the lamp environment under ubuntu some time ago, recorded The installation process is easy to review later. Install lamp environment ①...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template