linux下构建建设完美FTP服务器
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-18
面改主目录: sudo mkdir /var/www #建立/var/www DocumentRoot "/var/www" #修改主目录 <Directory "/var/www"> #按上面的改 此时你可以用vi建一个index.html文件,放在/var/www下,测试一下. Options Indexes FollowSymLinks #把Indexes删除,否则别人可以看到时您网站里的所有文件.找到DirectoryIndex,大约在166行,改为如下: DirectoryIndex index.htm index.html index.html.var index.php 4.设置开机自动启动: sudo vi /etc/init.d/apache2 #!/bin/sh /usr/local/apache2/bin/apachectl "$1" sudo chmod 755 /etc/init.d/apache2 sudo update-rc.d apache2 defaults 删除命令:sudo /usr/sbin/update-rc.d -f apache2 remove 5.FAQ: httpd: Could not determine the server''s fully qualified domain name, using 127.0.0.1 for ServerName cd /usr/local/apache2/conf/ sudo cp httpd.conf httpd.conf.bak 备份一下,免得自己改错了. sudo vi httpd.conf 找到#ServerName www.example.com:80 把它改为ServerName 127.0.0.1 ====================================================== 四、PHP5安装: ====================================================== 来源博客:解决方法: 原因是没有安装 libtool.-_-! # apt-get install libtool ====================================================== 五、安装phpmyadmin: ====================================================== 来源博客:http://blog.csdn.net/xuchenguang/ 编写整理:徐晨光 MSN:xuchenguang@msn.com 参考资料:来自互联网,用于互联网. ====================================================== 1、安装: 到www.phpmyadmin.net下载phpmyadmin.当前最新稳定版是2.8.0.4,下 sudo tar -jxvf phpMyAdmin-2.8.0.4.tar.bz2 sudo mv phpMyAdmin-2.8.0.4 /var/www/phpmyadmin 测试:http://服务器IP/phpmyadmin/ //出来界面就行了,暂时不要管它出错信息. 2.修改config.inc.php: sudo cp libraries/config.default.php config.inc.php sudo vi config.inc.php 找到:#$cfg'' target=_blank>http://blog.csdn.net/xuchenguang/ 编写整理:徐晨光 MSN:xuchenguang@msn.com 参考资料:来自互联网,用于互联网. ====================================================== 1.下载PHP,网址:www.php.net 文件名:php-5.1.2.tar.bz2 apt-get install flex apt-get install libxml2-dev apt-get install libtool 2.解压、链接、编译、安装. cd cd Desktop tar -jxvf php-5.1.2.tar.bz2 cd php-5.1.2 vi INSTALL #这一步不,只是获得一些安装信息. ./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/opt/mysql --enable-track-vars --with-mbstring --enable-mbstring=all 如果出现如下证明快成功了. -------------------------------------------------------------------- | License: | | This software is subject to the PHP License, available in this | | distribution in the file LICENSE. By continuing this installation | | process, you are bound by the terms of this license agreement. | | If you do not agree with the terms of this license, you must abort | | the installation process at this point. | -------------------------------------------------------------------- Thank you for using PHP. make make install sudo cp php.ini-dist /usr/local/lib/php.ini sudo vi / |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于linux下构建建设完美FTP服务器的所有评论