我用的是WIN8系统
首先要安装XAMPP,开始里面的Apache和MySQL服务。
在运行Apache服务时报错:
---------------------------------------------
19:17:19 [Apache] Error: Apache shutdown unexpectedly.
19:17:19 [Apache] This may be due to a blocked port, missing dependencies,
19:17:19 [Apache] improper privileges, a crash, or a shutdown by another method.
19:17:19 [Apache] Press the Logs button to view error logs and check
19:17:19 [Apache] the Windows Event Viewer for more clues
19:17:19 [Apache] If you need more help, copy and post this
19:17:19 [Apache] entire log window on the forums
---------------------------------------------
在cmd下运行xamppapacheinhttpd.exe 打印错误信息。发现端口号80被占用。
打开xamppapacheconfhttpd.conf 把Listen 80 改成Listen 8001
改完发现还是报错,变成443端口被占用。
可以通过修改端口号:xamppapacheconfextrahttpd-ssl.conf 中的443全部改为4431
或者杀掉当前使用443端口的进程
管理员身份运行cmd
输入 netstat -ano|findstr 443 找到占用443端口的进程
输入 taskkill /F /PID 进程号 强制杀掉进程 (后来发现,原来是为知笔记)
再打开Apache服务,成功。
在xampphtdocs中新建 BugFile文件夹
在浏览器中输入 http://localhost:8001/bugfree/ 进入安装页面 (注:8001是我们修改的端口号)
由于我没有添加mysql的密码,所以安装中密码那一行留空白就可以
安装成功后会显示初始用户名和密码 初始用户名: admin 初始密码: 123456
一些使用到的教程:
http://www.cnblogs.com/EddyPeng/archive/2013/04/26/3044482.html
http://www.cnblogs.com/newstart/archive/2012/09/15/2686030.html
http://jingyan.baidu.com/article/48b558e35544cc7f38c09af2.html