apache和php配置

 安装apache 

sudo apt-get install apache2

 sudo /etc/init.d/apache2 restart

 --测试:浏览器访问对应IP地址,正确的话返回/var/www/html/index.html页面


  安装php
 sudo apt-get install libapache2-mod-php5 php5
 sudo /etc/init.d/apache2 restart
 -测试:浏览器访问对应IP地址index.php(echo phpinfo();),正确的话返回php信息页面
 
 安装php Mysql接口
 sudo apt-get install php5-mysql
 sudo /etc/init.d/apache2 restart
 -测试:调用接口成功mysql_connect if(!$conn)结果显示成功或则失败,如果没有安装好就什么都不显示
 

 安装Mysql数据库

建议同步安装phpmyadmin进行数据库管理

 sudo apt-get install mysql-server mysql-client

你可能感兴趣的:(web开发)