Heim >Backend-Entwicklung >PHP-Tutorial >ubuntu 10.04上搭建php网站运行环境

ubuntu 10.04上搭建php网站运行环境

WBOY
WBOYOriginal
2016-06-13 10:31:41874Durchsuche

ubuntu 10.04下搭建php网站运行环境

ubuntu 10.04下搭建php网站运行环境前提:要打开root权限sudo password [这里填写root密码]1、第一步安装ubuntu10.042、更新源sudo apt-get update3、安装lighttpdsudo apt-get install lighttpd安装好之后检查lighttpd是否成功启动,在浏览器里打开URL:    http://localhost/如果显示为 it's works 表面已经成功了如果不行的话,结束掉lighttpd程序的进程然后再输入sudo lighttpd -f /etc/lighttpd/lighttpd.conf4、安装PHPsudo apt-get install php5完成后继续sudo apt-get install php5-cli完成后继续sudo apt-get install php5-cgi完成后继续sudo apt-get install php5-mysql让lighttpd 支持cgi模式# lighttpd-enable-mod fastcgi重起Lighttpd# /etc/init.d/lighttpd restart5、将/var/www文件夹的owner改变成当前用户(有的可能不需要这步)sodu chown -R xu2006:xu2006  /var/www这样www文件夹的拥有者即为xu2006,这样就可以写入文件了6、打开www文件夹(var/www)右键--Create Document ---empty file文件名为:test.php在里面写入下面内容并保存< ?php// this file will test to see if php// is enabled and functiona;phpinfo();?>然后打开 http://localhost/test.php你会看到网页中的PHP信息7、安装mysqlsudo apt-get install mysql-server-5.1 mysql-client-5.1在这个安装过程中会提示你输入管理密码8、安装phpmyadmin 用来管理mysqlsudo apt-get install phpmyadmin当它提示你选择那种web server时,什么都不要选,然后OK安装   就行把phpmyadmin移动到/var/www我们就能用phpmyadmin管理mysql了# sudo mv /usr/share/phpadmin /var/www打开http://localhost/phpmyadmin 看看是不是能管理mysql了到此,php网站运行环境就搭载好了!你现在就可以下载一些php类型的网站程序安装测试看看,检验一下自己的劳动成果php程序有:discuz wordpress 等等。根本文件夹权限sudo chmod -R 0777 /home/1.txtsudo chmod -R 【权限】 【目录或文件】sudo chwon -R root:root /var/wwwsudo chown -R [用户名:用户组]  【目录或文件】

?

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn