########################################################

Step One: Update the software package in your operation system.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#apt-get update

#apt-get dist-upgrade -y --force-yes

########################################################

Step Two: Install Apache2 Web Server Environment.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#apt-get install apache2 apache2-bin apache2-data apache2-doc apache2-mpm-prefork apache2-utils

And then you need to modify its default Home page. (/etc/apache2/mods-enabled/dir.conf)

<IfModule mod_dir.c>
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>

Modify it, like this as following show.

<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm
</IfModule>

After that, you still need to restart your apache server. so I think you have to execute the following command.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#service apache2 restart

At last, you want to verify this step whether it works well. You only have to open your browser and type your machine's IP or localhost into the URL input-box.

I believe you'll see the Apache2 Ubuntu Default Page.

If you can see this page, you have enough reason to believe that you have succeed to install the apache web server on your system. It's great.

########################################################

Step Three: start up the pseudo-static componnet (which named mod_rewrite component).

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#a2enmod rewrite
#service apache2 restart

########################################################

Step Four: Create a user for management and setting up multi-site.

first thing you need to do, creating its home directory '/home/username'

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#mkdir /home/username

#adduser username  -d /home/username(#comment: what username, it's up to you)

#passwd username

Enter new UNIX password:

Retype new UNIX password:

Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Changing the user information for laozuo
Enter the new value, or press ENTER for the default
Full Name []:
Room Number []:
Work Phone []:
Home Phone []:
Other []:
Is the information correct? [Y/n]

and then we need to create a directory to store our site files and log files.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#cd /home/username

#mkdir public_html logs

you need to set its permission for this user after you create this directory. Or we can not upload our site file into this folder or edit these file had existted on the website.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#chown username:www-data -R /home/username/public_html /home/username/logs

#chmod 755 -R /home/username

The important thing you need to note that going to configure your website.

At the begining, you just need to disable 000-default.conf configuration.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#a2dissite 000-default.conf
#service apache2 reload

The other important thing is that you need to write your own site's configuration.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#mv 000-default.conf XXXX.XXX.conf

Modify this configuration file.

<VirtualHost *:80>
ServerName laozuo.org
ServerAlias laozuo.org
ServerAdmin webmaster@laozuo.org
DocumentRoot /var/www/html
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined <Directory /var/www/html>
Options Indexes ExecCGI Includes FollowSymLinks MultiViews
AllowOverride All
Order Deny,Allow #Here, you must note that Deny,Allow without any blank-space. If you leave the blank-space, you will encounter a error when you want to restart your apache server.
Allow from all
</Directory> </VirtualHost>

Saved it later, you need to start up our website.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#a2ensite XXXX.XXX.conf

If you fail to launch it, I only suggest you go to check its log out. the log will restore on the /var/log/apache2/error.log file.

########################################################

Step Five: Install and Configuration MySQL Database

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#apt-get install mysql-server mysql-client

During the installation epriod, you have to type the same password two times. And then you don't have to do anything except for waitting until it has been completedly installed.

########################################################

Step Six: Install and Configure the PHP Development Environment.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#apt-get install php5 php-pear php5-mysql php5-dev libapache2-mod-php5 php5-dev php5-curl php5-gd php5-imagick php5-mcrypt

After finishing to install these software package, you can go to the "/var/www/html/" directory.

One Important thing you need to finish here is that create a PHP file to verify if it works normally.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#cd /var/www/html

#vim info.php

<?php
phpinfo();
?>

Saved it after you finish to write some code like this.

Please open your browser to verify this execitting moment and type your machine's IP/info.php or localhost/info.php.

You'll see some amazing thing. Showing as following screenshot:

########################################################

Step Seven: Install PHPMyAdmin

why do we need to install this software? maybe you want to know the answer.

I will tell you that it's useful to manage our SQL Database. So we need to install this guy to help us do something.

THE COMMAND YOU CAN TYPE INTO YOUR CONSOLE

#apt-get install phpmysqladmin

It requires us to select its supportive version.

I suggest you can choose the apache2.

Under this process, It also requires you to type your mysql's root password. maybe you need to type it two times.

That's all.

So our LAMP Development Environment has been established. It's an amazing thing.

Thank you for watching here. It's my pleasure to share something I know. Hope That It Can Help You.

I have to go asleep. Have a good time. Good Luck!

Establish the LAMP (Linux+Apache+MySQL+PHP) Development Environment on Ubuntu 14.04 Operating System的更多相关文章

  1. [Django] Setting up Django Development Environment in Ubuntu 14.04

    1. Python Of course you will need Python. Still Python 2.7 is preferred, however if you would like t ...

  2. Centos下安装配置LAMP(Linux+Apache+MySQL+PHP)

    Centos下安装配置LAMP(Linux+Apache+MySQL+PHP)   关于LAMP的各种知识,还请大家自行百度谷歌,在这里就不详细的介绍了,今天主要是介绍一下在Centos下安装,搭建一 ...

  3. CentOS 6.3下源码安装LAMP(Linux+Apache+Mysql+Php)环境【转载】

    本文转载自 园友David_Tang的博客,如有侵权请联系本人及时删除,原文地址: http://www.cnblogs.com/mchina/archive/2012/11/28/2778779.h ...

  4. Lamp(linux+apache+mysql+php)环境搭建

    Lamp(linux+apache+mysql+php)环境搭建 .安装apache2:sudo apt-get installapache2 安装完毕后.执行例如以下命令重新启动apache:sud ...

  5. CentOS 6.3下源码安装LAMP(Linux+Apache+Mysql+Php)环境

    一.简介 什么是LAMP    LAMP是一种Web网络应用和开发环境,是Linux, Apache, MySQL, Php/Perl的缩写,每一个字母代表了一个组件,每个组件就其本身而言都是在它所代 ...

  6. CentOS 6.3 源码安装LAMP(Linux+Apache+Mysql+Php)环境

    一.简介 什么是LAMP LAMP是一种Web网络应用和开发环境,是Linux, Apache, MySQL, Php/Perl的缩写,每一个字母代表了一个组件,每个组件就其本身而>言都是在它所 ...

  7. CentOS6系统编译部署LAMP(Linux, Apache, MySQL, PHP)环境

    我们一般常规的在Linux服务器中配置WEB系统会用到哪种WEB引擎呢?Apache还是比较常用的引擎之一.所以,我们在服务器中配置LAMP(Linux, Apache, MySQL, PHP)是我们 ...

  8. Ubuntu在下面LAMP(Linux+Apache+MySQL+PHP) 开发环境的搭建

    LAMP在行业是一个非常流行的词.此4字母代表Linux.Apache,MySQL和PHP. LAMP其高效.灵活的特点已经成为中小企业的首选. 它已经推出了快速构建LAMP道路. 1 在Ubuntu ...

  9. 【转】CentOS环境下yum安装LAMP(Linux+Apache+Mysql+php)

    此种方法很简单.每次都用源码编译,浪费好多时间啊! 同样的网站程序在Linux下运行要比在windows下快出不少,所以决定使用Linux的发行版CentOS ,本文主要讲解在CentOS下使用yum ...

随机推荐

  1. JDBC在javaweb中的应用之分页数据查询

    分页查询 分页查询是java web开发中经常使用到的技术.在数据库中数据量非常大的情况下,不适合将所有的数据全部显示到一个页面中,同时为了节约程序以及数据库的资源,就需要对数据进行分页查询操作. 通 ...

  2. mysql水平分表和垂直分表的优缺点

    表分割有两种方式: 1.水平分割:根据一列或多列数据的值把数据行放到两个独立的表中. 水平分割通常在下面的情况下使用. •表很大,分割后可以降低在查询时需要读的数据和索引的页数,同时也降低了索引的层数 ...

  3. Cross the GreateWall方案

    涉及Client端和Server端 服务端:SS搭建 注意:以Ubuntu环境为例 Step1:添加GPG Public key wget -O- http://shadowsocks.org/deb ...

  4. php数组合并,反转,去重,添加元素等;

    //参数默认值//function abc($a,$b,$c = 0){// echo $a,$b,$c;//}//abc(1,3);//结果等于130://echo "<br> ...

  5. Java代理和动态代理

    code from <Thinking in java> 代理模式 interface Interface { void doSomething(); void somethingElse ...

  6. SpringMVC上传压缩文件,解压文件,并检测上传文件中是否有index.html

    SpringMVC上传压缩文件,解压文件,并检测上传文件中是否有index.html 说明: 1.环境:SpringMVC+Spring+Tomcat7+JDK1.7 2.支持 zip和rar格式的压 ...

  7. python邮件SMTP的GUI编程

    写的是python中smtp的gui编程,用的163邮箱给qq邮箱发送邮件做测试,如果你发现你的发送失败,试着用以下方法解决: 1.网页登陆你的邮箱,设置中查看smtp是否开启,比如163邮箱的smt ...

  8. Centos7 创建本地 docker 仓库极其遇到的问题

    环境安装: VirtualBox 安装 Centos7 安装 docker 1. 配置私有仓库和客户端地址 私有仓库:192.168.1.104 客户端:192.168.1.103 通过 Centos ...

  9. php中常用的字符串大小写转换函数实例解释

    PHP字符串处理函数中,最为简单的几个函数,相关解释就不上了,直接看例子. PHP字符串处理函数中,最为简单的几个函数,相关解释就不上了,直接看例子. strtolower函数.strtoupper函 ...

  10. 通过修改 LayoutInflater,全局替换字体!!!

    序 在 Android 下使用自定义字体已经是一个比较常见的需求了,最近也做了个比较深入的研究. 那么按照惯例我又要出个一篇有关 Android 修改字体相关的文章,但是写下来发现内容还挺多的,所以我 ...