Ubuntu 8.04下搭建LAMP服务器

安装apache2:sudo apt-get install apache2

安装php5:sudo apt-get install libapache2-mod-php5 php5

安装mysql5.0:sudo apt-get install mysql-server-5.0 mysql-common mysql-admin

安装php5+mysql:sudo apt-get install php5-mysql

启动mysql:sudo /etc/init.d/mysql start;

启动apache2:sudo /etc/init.d/apache2 start

你可能感兴趣的:(mysql,ubuntu)