CentOS 上安装BugZilla 详解(2)

这样会生成一个index.html文件,该文件指向index.cgi


2)再次运行checksetup.pl 
但是不能成功,会出现以下提示:
InnoDB is disabled in your MySQL installation.  Bugzilla requires InnoDB to be enabled.  Please enable it and then re-run checksetup.pl.
说的啥意思呢,就是说 Bugzilla的要求要启用InnoDB

下面咱就启用

进入到mysql 中

/usr/local/mysql/bin/mysql -u root -p123123

 查看数据库是否支持innodb

mysql> show engines;
+------------+---------+------------------------------------------------------------+--------------+------+------------+
| Engine     | Support | Comment                                                    | Transactions | XA   | Savepoints |
+------------+---------+------------------------------------------------------------+--------------+------+------------+
| CSV        | YES     | CSV storage engine                                         | NO           | NO   | NO         |
| MRG_MYISAM | YES     | Collection of identical MyISAM tables                      | NO           | NO   | NO         |
| MEMORY     | YES     | Hash based, stored in memory, useful for temporary tables  | NO           | NO   | NO         |
| InnoDB     | YES     | Supports transactions, row-level locking, and foreign keys | YES          | YES  | YES        |
| MyISAM     | DEFAULT | Default engine as of MySQL 3.23 with great performance     | NO           | NO   | NO         |
+------------+---------+------------------------------------------------------------+--------------+------+------------+
5 rows in set (0.00 sec)

先查看mysql是否安装了innodb插件

Sql代码

[root@localhost bin]# ./mysql   mysql> show plugin;   +------------+--------+----------------+---------+---------+   Name       | Status | Type           | Library | License |   +------------+--------+----------------+---------+---------+   | binlog     | ACTIVE | STORAGE ENGINE | NULL    | GPL     |   | CSV        | ACTIVE | STORAGE ENGINE | NULL    | GPL     |   | MEMORY     | ACTIVE | STORAGE ENGINE | NULL    | GPL     |   | MyISAM     | ACTIVE | STORAGE ENGINE | NULL    | GPL     |   | MRG_MYISAM | ACTIVE | STORAGE ENGINE | NULL    | GPL     |   +------------+--------+----------------+---------+---------+  

 

发现没有安装

安装

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/pswfp.html