步入软件测试行业两年多,有着扎实的软件测试理论知识和丰富的项目实践经验。目前感兴趣的研究方向是通用软件产品测试、嵌入式软件测试、自动化测试、测试管理等。现任北京有必通科技有限公司测试主管。
[原创]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
方案
问题解决
原创