UBUNTU下安装 APACHE+PHP+MYSQL WEB服务器配置

Once again,here’s my updated simple installation of Apache,PHP and MysqL in Ubuntu 8.04 LTS (Hardy heron) Server.

Install SSH Client and Server (for my remote access)

sudo apt-get install ssh

Install Database Server

sudo apt-get install MysqL-server-5.0

Install Apache HTTP Server

sudo apt-get install apache2

Install PHP5 and Apache PHP5 module

sudo apt-get install PHP5 libapache2-mod-PHP5

Restart Apache

sudo /etc/init.d/apache2 restart

Optionally,install PHPMyAdmin

sudo apt-get install PHPmyadmin

Enjoy!

怎么样?简单吧!除去下载的时间,要不了一分钟就可以完成配置,在 Ubuntu 上还需要 APM 包吗?还是记住以下几个命令和位置就行了。

sudo /etc/init.d/apache2 restart (重启 apache)

sudo gedit /etc/PHP5/apache2/PHP.ini (配置 PHP.ini)

sudo gedit /etc/apache2/apache2.conf (配置 apache2.conf)

/var/www/(主目录位置)

相关文章

ubuntu退出redis的示例:指定配置文件方式启动源码redis:roo...
ubuntu中mysql改密码忘了的解决方法:1.在终端中切换到root权...
ubuntu安装mysql失败的解决方法原因:可能是原有的MySQL还有...
使用centos和ubuntu建站的区别有以下几点1.CentOS是Linux发行...
ubuntu图形界面和字符界面切换的方法:可以通过快捷键CTRL+A...
ubuntu中重启mysql失败的解决方法1.首先,在ubuntu命令行中,...