ubuntu 搭建LAMP(Apache+PHP+MYSQL)开发环境

来源:互联网 发布:淘宝开鲜花店 编辑:程序博客网 时间:2024/05/22 00:08

(1)安装MYSQL

sudo apt-get install mysql-server mysql-client

(2)安装Apache

sudo apt-get install apache2

(3)安装PHP

sudo apt-get install php5 libapache2-mod-auth-mysql php5-mysql   php5-sqlite


安装结束后,检测是否成功:

(1)检测Mysql是否正常

在终端中输入:mysql -u username -p password (将username和password替换为你所设置的)看是否可以正常登陆

(2)检测Apache是否正常

在浏览器中打开:http://localhost/

如果出现如下信息,则表明正常。

It works!

This is the default web page for this server.

The web server software is running but no content has been added, yet.

(3)检测PHP是否正常

Ubuntu下Apache的默认安装路径为/var/www/,到其目录下新建info.php文件,文件内容为:

<?php
phpinfo();
?>

然后在浏览器中打开:http://localhost/info.php 看是否正常。

原创粉丝点击