步入軟件測試行業兩年多,有著扎實的軟件測試理論知識和豐富的項目實踐經驗。目前感興趣的研究方向是通用軟件產品測試、嵌入式軟件測試、自動化測試、測試管理等,F任北京有必通科技有限公司測試主管。
[原創]Bugfree安裝問題解決方案
上一篇 /
下一篇 2008-09-24 09:54:39
/ 個人分類:測試工具
總結一下我在安裝Bugfree時遇到的一些問題和相關的解決方案。
服務器端環境:
MILY: 'Times New Roman'; mso-bidi-font-size: 12.0pt; mso-fareast-font-family: 宋體; mso-font-kerning: 1.0pt; mso-ansi-language: EN-US; mso-fareast-language: ZH-CN; mso-bidi-language: AR-SA">操作系統:RedHat AS 4 ;數據庫:Mysql;Web服務器:Apache;腳本系統:Php
錯誤提示一:不能通過'/tmp/mysql.sock'連到服務器
解決方案:這個問題是用戶權限不夠造成的,數據庫里賦予用戶足夠權限即可解決。具體操作方法如
下:
[root@localhost etc]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 7 to server version: 4.1.16
mysql> grant all privileges on *.* to 'jifang'@'' identified by 'hello';
Query OK, 0 rows affected (0.01 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
Bye
[root@localhost etc]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9 to server version: 4.1.16
mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select * from user;
mysql> exit
Bye
錯誤提示二:客戶機瀏覽器顯示的是php的源碼
解決方案:只需要重起Apache,即可解決。具體操作方法如下:
]#cd /path/to/apache/bin
]#apachectl restart
or
]#servcice httpd restart
錯誤提示三:目錄下找不到mysql.sock
解決方案:重新啟動Mysql。命令執行完成后,需要等待一段時間,才能有
mysql.sock生成。具體操作方法如下:
1、使用 service 啟動:service mysqld restart
2、使用 mysqld 腳本啟動:/etc/inint.d/mysqld restart
相關閱讀:
- Sybase交行客戶信息分析系統解決方案 (taotao2008, 2008-8-19)
- HP磁帶庫保護Sybase數據庫安全解決方案 (taotao2008, 2008-8-19)
- SQL Server數據庫優化方案 (aken, 2008-8-26)
- CCM解決方案及時應對IT變更 (taotao2008, 2008-8-27)
- TestDirector IE7.0解決方案 (yangjia312, 2008-9-03)
- Telelogic變更配量管理解決方案 (wangyajing, 2008-9-05)
- 微軟解決方案框架與成熟度模型 (wangyajing, 2008-9-11)
- Sybase交行客戶信息分析系統解決方案 (taotao2008, 2008-9-12)
- 關于"RPC server is unavailable"的解決方案 (taotao2008, 2008-9-19)
- [原創]軟件測試基本概念答疑 (小水滴, 2008-9-22)
導入論壇
引用鏈接
收藏
分享給好友
推薦到圈子
管理
舉報
TAG:
bugfree
BugFree
BUGFREE
Bugfree
方案
問題解決
原創