http://wiki.ubuntu.org.cn/serverguide
Ftp 服务器的配置
vsftpd 安装:http://debian.linuxsir.org/doc/inthedebianway/vsftpd/
vsftpd.conf 中文说明:
http://etony.9966.org/doc/other/vsftpd-man-zh.html
http://blog.csdn.net/bat603/archive/2006/07/30/999800.aspx
vsftpd 详细配置:
http://blog.csdn.net/zcatlinux/archive/2004/11/02/164130.aspx
笔记:
启动:
停止:
Web 服务器的配置
apache 安装:
http://me.flashlm.com/html_data/article/art-164.shtml
http://blog.csdn.net/xuchenguang/
apache 2.2 中文参考手册:http://lamp.linux.gov.cn/Apache/ApacheMenu/sitemap.html
笔记:
启动:
停止:
apache2 配置文件为 /etc/apache2/apache2.conf , 而 /etc/apache2/httpd.conf 则是为了兼容而存在的。
MySQL 数据库的配置
MySQL 安装:参考压缩包中的 INSTALL-BINARY
MySQL 5.1中文参考手册:http://dev.mysql.com/doc/refman/5.1/zh/index.html
笔记:
启动:mysqld --user=mysql (以用户 mysql 启动)
停止:mysqladmin -p -u root -h localhost shutdown (需输入 root 密码)
更新 root 密码:Update user SET Password=PASSWORD('new_password') Where user='root';
不断学习和整理中 ^_^