ChinaUnix.net
相关文章推荐:

ubuntu apache php

Ubuntu建立(apache+php+mysql)+phpmyadmin 转自: 机敏的山猫's Blog http://hi.baidu.com/zf19870131/blog/item/1101189552224d037bf48008.html Ubuntu建立apache+php+mysql 基本的支持环境。暂时还不应用zend优化,因此这里就不涉及到zend optimizer的安装了。其实在ubuntu系统中中安装远比在windows系统中设置更为容易,而且在终端下设置更省事。 1、安装apache服务 sudo apt-get install apache2 然后按照提示即完...

by 中关村村草 - php文档中心 - 2012-02-03 18:17:24 阅读(1394) 回复(1)

相关讨论

1.安装SSH(必须) sudo apt-get install ssh 2.安装MySQL(虽然现在最新版为5.1,但是还只能装5.0版本) sudo apt-get install mysql-server-5.0 3.安装apache sudo apt-get install apache2 4.安装PHP sudo apt-get install php5 libapache2-mod-php5 sudo apt-get install libapache2-mod-auth-mysql sudo apt-get install php5-mysql sudo apt-get install php5-gd 配置php.ini: sudo gedit /etc/php5/apache2/php.ini 把文件在文...

by R0mmel - Linux新手园地 - 2011-12-21 09:58:12 阅读(905) 回复(0)

1.ubuntu直接使用命令root@php-desktop:/# apt-get install apache2 libapache2-mod-php5 php5 php5-gd php5-curl php5-cli完成安装; 2.root@php-desktop:/# sudo groupadd oracle; 3.root@php-desktop:/# sudo groupadd dba; 4.root@php-desktop:/# sudo useradd -d /home/oracle -g oracle -G dba -m -s /bin/bash oracle; 5.root@php-desktop:/# wget http://oss.oracle.com/el4/RPM-GPG-KEY-oracle -O- | sudo apt-key ...

by abiao503 - Linux文档专区 - 2009-05-31 14:10:56 阅读(1318) 回复(0)

最近由于项目需要配置mysql + php + apache环境,步骤比较简单,罗列如下: 1. 安装命令:apt-get install apache2 更改配置后注意重启:/etc/init.d/apache2 restart 2. 安装php: apt-get install libapache2-mod-php5 apt-get install php5 特别提示:如果想支持图形就加php5-gd,如果想支持Mysql就加php5-mysql,这里之所以要单独列出libapache2-mod-php5,主要 是由于php5的依赖关系没有做好,有可能会安装上...

by luoxb - 网络技术文档中心 - 2007-04-16 11:26:39 阅读(1024) 回复(0)

我们知道部署LMAP在任何Linux版本下都可以用源码安装来完成,而当我们用上ubuntu/fedora/opensuse这类发行版可以借助它们的包管理机制来完成,以减轻我们的工作量。 下面介绍在ubuntu11.10下安装配置MySQL、apache、PHP5、phpMyAdmin的方法 安装MySQL sudo apt-get install mysql-server 安装apache sudo apt-get install apache2 安装PHP5 sudo apt-get install php5 //安装PHP5 其它模块 sudo apt-get install libapache2-m...

by fantlam - Linux环境编程 - 2012-01-15 10:06:21 阅读(1738) 回复(0)

前天在虚拟机的UBUNTU操作系统系安装PHP和apache服务器,跟着谷歌的帖子做的都成功了,但编了一个AJAX代码程序,却不能在火狐浏览器上显示,请问是为什么? 当我点击Fetch the message 时底下的文件应该变为预设的php文件里面的内容,可却什么也没显示? 代码如下: php文件: html代码: An Ajax demo</titl... </p> <p class="news_tag"> </p> </div> <div class="two_con2"> by <a href="http://bbs.chinaunix.net/space-uid-26426933.html" target="_blank">锋利fighting </a> - <a href="http://bbs.chinaunix.net/forum-27-1.html" target="_blank">PHP</a> - 2011-12-16 20:32:32 阅读(1284) 回复(0) </div> <div class="two_con1"> <div class="tit5"> <h2><a href="http://bbs.chinaunix.net/thread-3598440-1-1.html" target="_blank"> ubuntu10.04配置<font color="red">apache</font>+php+mysql </a></h2> </div> <p> ubuntu10.04配置<font color="red">apache</font>+php+mysql 2010/07/21 06:51 P.M. 1.安装<font color="red">apache</font>2.0   sudo apt-get install <font color="red">apache</font>2   安装后在浏览器中打开:   http://localhost/或者http://127.0.0.1   如果出现It works!,那证明安装成功。 2.安装PHP   sudo apt-get install php 5 //安装PHP 5   sudo apt-get install lib<font color="red">apache</font>2-mod-php5 //配置<font color="red">apache</font>+PHP   sudo /etc/init.d/<font color="red">apache</font>2 restart //重启<font color="red">apache</font>   测试: ... </p> <p class="news_tag"> <a href="http://bbs.chinaunix.net/tag-thread-3841-1.html" target="_blank">php</a> </p> </div> <div class="two_con2"> by <a href="http://bbs.chinaunix.net/space-uid-24963038.html" target="_blank">feiyang10086 </a> - <a href="http://bbs.chinaunix.net/forum-135-1.html" target="_blank">php文档中心</a> - 2011-09-21 21:10:10 阅读(1456) 回复(0) </div> <div class="two_con1"> <div class="tit5"> <h2><a href="http://bbs.chinaunix.net/thread-1928341-1-1.html" target="_blank"> 为Ubuntu搭建LAMP(<font color="red">apache</font>+PHP+MYSQL)开发环境 </a></h2> </div> <p> 作者:老臧 网站:http://www.fovweb.com 题记:在之前的文章中,我们将Ubuntu安装进了U盘。今天我们一起来,为Ubuntu搭建PHP+MYSQL开发环境。本文将会介绍两种方法,一种是用apt-get方式进行安装,另一种是手工编译进行安装。 正文:一、使用apt-get方式为Ubuntu安装PHP+MYSQL+<font color="red">apache</font>分别执行如下命令:(1)安装MYSQLsudo apt-get install mysql-serversudo apt-get install mysql-client(2)安装<font color="red">apache</font>sudo apt-get install apac... </p> <p class="news_tag"> </p> </div> <div class="two_con2"> by <a href="http://bbs.chinaunix.net/space-uid-20764944.html" target="_blank">老臧 </a> - <a href="http://bbs.chinaunix.net/forum-216-1.html" target="_blank">Linux新手园地</a> - 2010-06-29 11:00:10 阅读(2230) 回复(0) </div> <div class="two_con1"> <div class="tit5"> <h2><a href="http://bbs.chinaunix.net/thread-1938804-1-1.html" target="_blank"> [Ubuntu-8.10]<font color="red">apache</font>+Php+Mysql+cacti搭建手记 </a></h2> </div> <p> 因为要做一个测试用例,模拟一次攻击,顺便搭建起来APM的平台。选了LInux下的cacti远程攻击用例。需要先搭建起来A+P+M平台。不多说了,上正题: --------版本---------Ubuntu 8.10<font color="red">apache</font>: httpd-2.0.63.tar.bz2PHP: php.5.3.0.tar.bz2Mysql: mysql-5.0.83-linux-i686.tar.gzCacti: cacti-0.8.6.tar.gzrrdtool: rrdtool-1.2.0.tar.gzgd: gd-2.0.33.tar.gzzlib: zlib-1.2.3.tar.gz 其中 gd 和 zlib 是安装 Php是... </p> <p class="news_tag"> </p> </div> <div class="two_con2"> by <a href="http://bbs.chinaunix.net/space-uid-23242876.html" target="_blank">shepherder_wang </a> - <a href="http://bbs.chinaunix.net/forum-250-1.html" target="_blank">Linux文档专区</a> - 2010-01-25 20:53:57 阅读(2492) 回复(0) </div> <div class="two_con1"> <div class="tit5"> <h2><a href="http://bbs.chinaunix.net/thread-1971942-1-1.html" target="_blank"> Ubuntu <font color="red">apache</font>2, PHP, CGI, etc....配置 </a></h2> </div> <p> <font color="red">apache</font> 1. apt-get install <font color="red">apache</font>2 test web page: http://x.x.x.x PHP 1. apt-get insall php5 2. apt-get install lib<font color="red">apache</font>2-mod-php5 test.php: 3. /etc/init.d/<font color="red">apache</font>2 restart CGI 1. /etc/<font color="red">apache</font>2/sites-enabled/000-default AddHandler cgi-script .cgi .pl Directory "/var/www/cgi"> AllowOverride all Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,de... </p> <p class="news_tag"> </p> </div> <div class="two_con2"> by <a href="http://bbs.chinaunix.net/space-uid-492281.html" target="_blank">Eleswen </a> - <a href="http://bbs.chinaunix.net/forum-250-1.html" target="_blank">Linux文档专区</a> - 2009-07-01 13:51:05 阅读(1055) 回复(0) </div> <div class="two_con1"> <div class="tit5"> <h2><a href="http://bbs.chinaunix.net/thread-1981900-1-1.html" target="_blank"> Ubuntu下安装 <font color="red">apache</font>2 + php5 + mysql </a></h2> </div> <p> 1. 安装运行环境 sudo apt-get install <font color="red">apache</font>2 sudo apt-get install mysql-server sudo apt-get install php5-common sudo apt-get install php5-gd sudo apt-get install php5-mysql sudo apt-get install lib<font color="red">apache</font>2-mod-php5 <font color="red">apache</font>2默认的sites路径在 /var/www/sites 2. 配置php5 sudo gedit /etc/php5/<font color="red">apache</font>2/php.ini 修改允许最大使用内存,查找 memory_limit = 8M 修改为 memory_limit = 32M 修改允许最大上传尺寸,查... </p> <p class="news_tag"> </p> </div> <div class="two_con2"> by <a href="http://bbs.chinaunix.net/space-uid-405749.html" target="_blank">badb0y </a> - <a href="http://bbs.chinaunix.net/forum-250-1.html" target="_blank">Linux文档专区</a> - 2009-05-07 08:51:27 阅读(1209) 回复(0) </div> </div> <div class="friendly_link"> <div class="friendly_con1"> <div class="f_link_tit">盛拓传媒:</div> <p><a href="http://www.it168.com">IT168</a> | <a href="http://www.pcpop.com">泡泡网</a> | <a href="http://www.autohome.com.cn">汽车之家</a> | <a href="http://www.che168.com">二手车之家</a> | <a href="http://www.qudao168.com">渠道168</a> | <a href="http://www.itpub.net/">ITPUB</a> | <a href="http://www.ixpub.net/">IXPUB</a> | <a href="http://www.chinaunix.net/">ChinaUnix</a> | <a href=" http://www.jimi168.com/">安卓之家</a> | <a href="http://www.app111.com/">苹果园</a> | <a href="http://www.gqt168.com/">家商城</a> | <a href="http://bbs.app111.com/">苹果论坛</a></p> <div class="clear"></div> </div> </div> <div id="footer"> <div class="dot1"><a href="http://www.bj.cyberpolice.cn/index.jsp" class="n1"></a><a href="http://www.hd315.gov.cn/beian/view.asp?bianhao=010202008062400006"></a><a href="http://ulic.baidu.com/client/clientDetailCerInfo.do?id=1602"></a></div> <p class="p"> <a href="http://www.it168.com/bottomfile/about.shtml" rel="nofollow">盛拓传媒简介</a> | <a href="http://www.it168.com/bottomfile/it168.shtml" rel="nofollow">关于IT168</a> | <a href="http://www.it168.com/bottomfile/hzhb.shtml" rel="nofollow">合作伙伴</a> | <a href="http://www.it168.com/bottomfile/ggfw.shtml" rel="nofollow">广告服务</a> | <a href="http://www.it168.com/bottomfile/sytk.shtml" rel="nofollow">使用条款</a> | <a href="http://www.it168.com/bottomfile/tgzn.shtml" rel="nofollow">投稿指南</a> | <a href="http://www.wintalent.cn:8031/wt5/sequelmedia/web/index" rel="nofollow">诚聘精英</a> | <a href="http://www.it168.com/bottomfile/lxwm.shtml" rel="nofollow">联系我们</a> | <a href="http://www.itpub.net/forum.php">ITPUB论坛</a> | <a href="http://www.it168.com/bottomfile/sitemap/sitemap.html" rel="nofollow">网站导航</a> | <a href="http://archive.it168.com/" rel="nofollow">往日回顾</a> </p> <address> 北京皓辰网域网络信息技术有限公司. 版权所有 <a href="http://www.it168.com/images/icp.jpg"><font color="#666666">京ICP证:060528号</font></a> 北京市公安局海淀分局网监中心备案编号:1101082001<br> <font color="#666666">广播电视节目制作经营许可证:编号(京)字第1149号</font> </address> <div style=" color:#666;margin-top:10px; text-align:right;">ITPUB推荐文章解答你所有技术难题</div> <div class="clear"> </div> </div> </div> <!-- 统计 START --> <script language="javascript" src="http://stat.it168.com/pv.js"></script> <script> function sendPV(){ var pvTrack = new PvTrack(); pvTrack.type = 35; // 频道类别ID pvTrack.channel = 461; // 频道ID pvTrack.pageType = 0; pvTrack.track(); } window.setTimeout("sendPV()", 1000); </script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-20237423-2']); _gaq.push(['_setDomainName', '.chinaunix.net']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <div style='display:none'> <script type="text/javascript"> var _bdhmProtocol = (("https:" == document.location.protocol) ? " https://" : " http://"); document.write(unescape("%3Cscript src='" + _bdhmProtocol + "hm.baidu.com/h.js%3F0ee5e8cdc4d43389b3d1bfd76e83216b' type='text/javascript'%3E%3C/script%3E")); </script></div> <!-- END STAT PV --> <!-- <script type='text/javascript' src='http://168.it168.com/js/597.js'></script> --> <script>if(typeof(BLA)!='undefined'){BLA();}</script> </body> </html>