linux下配置apche+php+mysql

WBOY
Release: 2016-06-23 13:46:46
Original
947 people have browsed it

   最近由于要学习android网络开发,需要用到服务器,所以在linux下配置apche+php+mysql,以下为主要流程,以ubuntu为例。

配置流程:  

1. 安装apache

在终端输入 sudo apt-get install apache2       

安装完成后,在浏览器中打开http://localhost/或者http://127.0.0.1,如果出现以下界面,那么恭喜你,apche2安装成功了。

 

2.安装php

   在终端输入 sudo apt-get install php5

        输入y继续,

       安装完成后,可以测试php是否安装成功。

首先,在终端输入以下命令:

cd /var/wwwsudo gedit phptest.php
Copy after login

然后在新打开的文本中输入测试文字,这里输入:php install success!

最后,在浏览器中地址栏中输入:http://localhost/phptest.php ,如果看到测试文字,则表示php已安装成功。

3.安装mysql

  在终端输入 sudoapt-get install mysql-server 

  安装过程中,需要为mysql设置密码,输入后确定即可。

   安装成功后,在终端输入sudoapt-get install libapache2-mod-auth-mysql这是为了让apche2支持mysql;接着再输入 sudoapt-get install php5-mysql 这是为了让php5支持mysql。


  4.重启apache

  在终端输入sudo/etc/init.d/apache2 restart重启apche2,这样,linux下的apache+ php + mysql 就已全部配置完成,接下来就可以进行web开发了。



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