转载自http://blog.csdn.net/yzlworld/article/details/5852719
查看已安装软件:
dpkg -l *apache*
dpkg -l *php*
dpgk -l *mysql*
"uu"为未安装,“ii”为已安装。
根据需要下载并安装:
sudo apt-get install apache2 php5 mysql-server libapache2-mod-php5 php5-mysql php5-gd
配置apache2
sudo vi /etc/apache2/httpd.conf
添加以下内容:
AddType application/x-httpd-php .php .htm .html
AddDefaultCharset UTF-8
ServerName 127.0.0.1
启动apache2
sudo /etc/init.d/apache2 restart
启动mysql server
sudo /etc/init.d/mysql restart
安装testlink
tar zxvf testlink_1.8.5b.tgz
sudo mv testlink /var/www/
cd /var/www/
sudo chown -R www-data:www-data testlink/
执行testlink安装向导
注:安装过程中用户名为root
cd /var/www/testlink/
sudo rm -rf install/
sudo vi config.inc.php
修改“user_self_signup”参数值为“FALSE”
修改“config_check_warning_mode”参数值为“SILENT”
PS:vi 搜索字符串命令 /config_check_warning_mode,按"n"查找下一个。
阅读(4536) | 评论(0) | 转发(1) |