Infobright Enterprise Edition (IEE) 服务无法启动?

发布于 2024-10-08 20:21:15 字数 104 浏览 9 评论 0原文

我访问 www.infobright.com,下载 Infobright Enterprise Edition (IEE) 并安装。但是,该服务无法启动,并且它完全没有提示我错误是什么以及原因。

I went to www.infobright.com, downloaded Infobright Enterprise Edition (IEE), and installed it. However, the service won't start, and it gives me absolutely no hint as to what the error is and why.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半衬遮猫 2024-10-15 20:21:15

Infobright 只是带有自定义引擎的 MySQL,它实现了基于列的高压缩数据库。

进入 C:\Program Files\Infobright\bin,然后键入:

mysqld --console

这将在独立控制台模式(而不是服务模式)下启动 Infobright。命令行参数“--console”将所有错误传送到控制台(而不是将错误吞没到隐藏在硬盘驱动器上某处的文件中)。您将收到类似以下内容的信息:

C:\Program Files\Infobright\bin>mysqld --console

Loading configuration for Infobright instance ...
Option: AllowMySQLQueryPath, value: 1.
Option: AutoConfigure, value: 0.
Option: CacheFolder, value: C:\Program Files\Infobright\cache.
Option: ControlMessages, value: 0.
Option: InternalMessages, value: 0.
Option: KNFolder, value: BH_RSI_Repository.
Option: KNLevel, value: 99.
Option: LicenseFile, value: <unknown>.
Option: LoaderMainHeapSize, value: 400.
Option: PushDown, value: 1.
Option: ServerMainHeapSize, value: 1300.
Option: UseMySQLImportExportDefaults, value: 0.
Infobright instance configuration loaded.
101223 19:05:44 [ERROR] Error: No License file found in default path.
101223 19:05:44 [ERROR] Please place License file iblicense-*.lic in directory C:\Program Files\Infobright\/.
101223 19:05:44 [ERROR] Plugin 'BRIGHTHOUSE' init function returned error.
101223 19:05:44 [ERROR] Plugin 'BRIGHTHOUSE' registration as a STORAGE ENGINE failed.
101223 19:05:44 [ERROR] Unknown/unsupported table type: brighthouse
101223 19:05:44 [ERROR] Aborting
101223 19:05:45 [Note] mysqld: Shutdown complete

要修复此错误,请浏览至 http://support.infobright .com/Support/License_Keys/ 并下载许可证密钥。

对于 64 位版本的 Infobright,将 .lic 文件复制到:

C:\Program Files\InfoBright

对于 32 位版本的 Infobright,将 .lic 文件复制到:

C:\Program Files (x86)\InfoBright

您将得到类似以下内容:

C:\Program Files\Infobright\bin>mysqld --console

Loading configuration for Infobright instance ...
Option: AllowMySQLQueryPath, value: 1.
Option: AutoConfigure, value: 0.
Option: CacheFolder, value: C:\Program Files\Infobright\cache.
Option: ControlMessages, value: 0.
Option: InternalMessages, value: 0.
Option: KNFolder, value: BH_RSI_Repository.
Option: KNLevel, value: 99.
Option: LicenseFile, value: <unknown>.
Option: LoaderMainHeapSize, value: 400.
Option: PushDown, value: 1.
Option: ServerMainHeapSize, value: 1300.
Option: UseMySQLImportExportDefaults, value: 0.
Infobright instance configuration loaded.
101223 19:13:05 [Note] Event Scheduler: Loaded 0 events
101223 19:13:05 [Note] Infobright Enterprise Edition 3.4.2 is ready for connections.
socket: '' port: 5029 build number (revision)=IB_3.4.2_DPN128_r9255_11467(iee_eval - commercial)

此时,我们知道一切都已完成工作正常,因此我们可以通过按 Ctrl-C 终止该进程,然后启动该服务。现在就可以了。

更新:

此问题的解决方案取自https://serverfault.com/questions/214435/error-1067-the-process-termminate-unexpectedly-when-trying-to-install-mysql-on

Infobright is just MySQL with a custom engine that implements a column based database with high compression.

Go into C:\Program Files\Infobright\bin, and type:

mysqld --console

This starts Infobright in standalone console mode (rather than in service mode). The command line parameter "--console" pipes any errors to the console (rather than swallowing the errors to a file hidden somewhere on the hard drive). You will receive something similar to the following:

C:\Program Files\Infobright\bin>mysqld --console

Loading configuration for Infobright instance ...
Option: AllowMySQLQueryPath, value: 1.
Option: AutoConfigure, value: 0.
Option: CacheFolder, value: C:\Program Files\Infobright\cache.
Option: ControlMessages, value: 0.
Option: InternalMessages, value: 0.
Option: KNFolder, value: BH_RSI_Repository.
Option: KNLevel, value: 99.
Option: LicenseFile, value: <unknown>.
Option: LoaderMainHeapSize, value: 400.
Option: PushDown, value: 1.
Option: ServerMainHeapSize, value: 1300.
Option: UseMySQLImportExportDefaults, value: 0.
Infobright instance configuration loaded.
101223 19:05:44 [ERROR] Error: No License file found in default path.
101223 19:05:44 [ERROR] Please place License file iblicense-*.lic in directory C:\Program Files\Infobright\/.
101223 19:05:44 [ERROR] Plugin 'BRIGHTHOUSE' init function returned error.
101223 19:05:44 [ERROR] Plugin 'BRIGHTHOUSE' registration as a STORAGE ENGINE failed.
101223 19:05:44 [ERROR] Unknown/unsupported table type: brighthouse
101223 19:05:44 [ERROR] Aborting
101223 19:05:45 [Note] mysqld: Shutdown complete

To fix this error, browse to http://support.infobright.com/Support/License_Keys/ and download a license key.

For the 64-bit version of Infobright, copy the .lic file to:

C:\Program Files\InfoBright

For the 32-bit version of Infobright, copy the .lic file to:

C:\Program Files (x86)\InfoBright

and you will get something like the following:

C:\Program Files\Infobright\bin>mysqld --console

Loading configuration for Infobright instance ...
Option: AllowMySQLQueryPath, value: 1.
Option: AutoConfigure, value: 0.
Option: CacheFolder, value: C:\Program Files\Infobright\cache.
Option: ControlMessages, value: 0.
Option: InternalMessages, value: 0.
Option: KNFolder, value: BH_RSI_Repository.
Option: KNLevel, value: 99.
Option: LicenseFile, value: <unknown>.
Option: LoaderMainHeapSize, value: 400.
Option: PushDown, value: 1.
Option: ServerMainHeapSize, value: 1300.
Option: UseMySQLImportExportDefaults, value: 0.
Infobright instance configuration loaded.
101223 19:13:05 [Note] Event Scheduler: Loaded 0 events
101223 19:13:05 [Note] Infobright Enterprise Edition 3.4.2 is ready for connections.
socket: '' port: 5029 build number (revision)=IB_3.4.2_DPN128_r9255_11467(iee_eval - commercial)

At this point, we know that everything is working, so we can kill this process by pressing Ctrl-C, and start the service. It will now work.

Update:

The solution to this problem was taken from https://serverfault.com/questions/214435/error-1067-the-process-terminated-unexpectedly-when-trying-to-install-mysql-on

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文