在windows上安装的web服务器是xampp,很好用,对于建站是帮了大忙的。 1、安装Apache服务 sudo apt-get install apache2 然后按照提示即完成apahce的安装了。这里 可以打开 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. 2、安装php5 sudo apt-get install php5 sudo /etc/init.d/apache2 restart 检查是否生效: gksudo gedit /var/www/info.php 写入如下代码:保存运行 http://localhost/info.php 3、安装mysql sudo apt-get install mysql-server 安装完成按提示设置root密 4、让apache、php支持mysql sudo apt-get install libapache2-mod-auth-mysql sudo apt-get install php5-mysql sudo /etc/init.d/apache2 restart 5.安装phpmyadmin sudo apt-get install phpmyadmin 由于phpmyadmin是安装在/usr/share/phpmyadmin/目录中的,要使用http://localhost/phpmyadmin 访问就要执行如下命令: sudo ln -s /usr/share/phpmyadmin/ /var/www/ 然后重启apache服务器 sudo /etc/init.d/apache2 restart 至此apache2+php+mysql+phpmyadmin的环境就完成了。
|