<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">

    <title type="text">ICE Wiki</title>
    <subtitle type="text">ICE Wiki</subtitle>
    <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/" />
    <link rel="self" type="application/atom+xml" href="http://www.infobright.org/wiki/Special:Recentchanges_Atom" />
    <updated>2011-09-02T16:21:15Z</updated>
    <rights>Copyright (c) 2008, do-not-reply@infobright.com</rights>
    <generator uri="http://expressionengine.com/" version="1.6.7">ExpressionEngine</generator>
    <id>tag:infobright.org,2011:09:02:wiki</id>


    <entry>
      <title>How and When to use Lookups</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/How_and_When_to_use_Lookups/" />
      <id>tag:infobright.org,2011:wiki:How and When to use Lookups/18.667</id>
      <published>2011-09-02T16:21:15Z</published>
      <updated>2011-09-02T16:21:15Z</updated>
      <author>
            <name>Jeff Kibler</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p>Lookups are a powerful tool that can reduce both storage requirements and query times when used effectively.</p>

	<p>Lookups replace a <span class="caps">CHAR</span> or <span class="caps">VARCHAR</span> value with an integer value for a column where the total values to unique values ratio is more than 10:1. This is particularly beneficial for fields like States and other fields that traditionally have a small range of acceptable values. So, if you had 100,000 values, and only 10,000 unique values, then you would have a good candidate for the lookup function.</p>

	<p>The lookup function should not be used if this criteria is not met &#8211; a ratio less than 10:1 will result in slower queries and longer load times.</p>

	<p><b>How do I create a Lookup?</b></p>

	<p>A lookup must be created at table creation time as part of the <span class="caps">DDL</span>. Simply add the following to the table definition:</p>

	<p><b>&gt; &lt;&lt;column name&gt;&gt; &lt;&lt;column type&gt;&gt; … comment &#8216;lookup&#8217; …</b></p>

	<p>This cannot be done as part of a modify table statement, since Infobright generates the integer values on load.</p>
      ]]></content>
    </entry>

    <entry>
      <title>About ICE</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/About_ICE/" />
      <id>tag:infobright.org,2011:wiki:About ICE/7.665</id>
      <published>2011-07-21T18:39:08Z</published>
      <updated>2011-07-21T18:39:08Z</updated>
      <author>
            <name>Susan Davis</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p><span class="caps">ICE</span> is a specialized Open Source load and read-only analytic database, as opposed to a general-purpose database. <span class="caps">ICE</span> is designed to be easy to implement and maintain, eliminating most of the configuration, tuning and ongoing maintenance activities of other databases. <span class="caps">ICE</span> is optimized for use under the following conditions:</p>

	<ul>
		<li>Up to 50TB of data, supporting hundreds of millions of rows in a single table</li>
		<li>Data loading and storage, no <span class="caps">DML</span> support required</li>
		<li>64-bit &amp; 32-bit Linux environments and 32-bit Windows</li>
	</ul>

	<p>To learn more about Infobright technology, download the Infobright Architecture white paper from the White Paper page at http://support.infobright.com/Support/Resource-Library/Whitepapers/</p>
      ]]></content>
    </entry>

    <entry>
      <title>Upgrade Guide</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/Upgrade_Guide/" />
      <id>tag:infobright.org,2011:wiki:Upgrade Guide/26.664</id>
      <published>2011-06-29T21:23:57Z</published>
      <updated>2011-06-29T21:23:57Z</updated>
      <author>
            <name>Stuart Herd</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p><b>Note:</b> These instructions are for upgrading on Linux platforms using the <span class="caps">RPM</span> or <span class="caps">DEB</span> packages. To upgrade using the Tar package, see the <a href="http://www.infobright.org/wiki/Tar_Upgrade_Guide/">Linux Tar Upgrade Instructions</a>.</p>

	<p><b><span class="caps">ICE</span> 4.0.3 GA &#8211; Upgrade Notes</b> </p>

	<p><b>1.</b>  With <span class="caps">ICE</span> 3.5.2 GA, several tuning parameters are now configured automatically and have been deprecated from the brighthouse.ini file. The deprecated parameters include:</p>

	<ul>
		<li>ServerCompressedHeapSize</li>
		<li>LoaderSaveThreadNumber</li>
		<li>BufferingLevel</li>
		<li>CachingLevel</li>
		<li>ClusterSize</li>
		<li>HugefileDir</li>
	</ul>

	<p><b>2.</b>  Due to a known issue with the embedded version of MySQL, it is recommended you run the MySQL Updater program after any upgrade to avoid issues with stored procedures or table structures.</p>

	<p><b>3.</b>  The enable <span class="caps">UTF</span>-8 flag (UseCharset = 0/1) is no longer needed and if present, must be removed from the brighthouse.ini file. For table structures created prior to <span class="caps">ICE</span> 3.3.2 the Charset Migration Tool (<span class="caps">CHMT</span>) should be run during upgrade.<br />
<b>4.</b> The MySQL Query cache should be disabled before the upgrade<br />
<b>Linux Upgrade Instructions Using the <span class="caps">RPM</span> or <span class="caps">DEB</span> Package</b> </p>

	<p>1. Obtain root user access</p>

	<p>2. Run either: </p>

	<p style="padding-left:2em;"><code>rpm -U infobright-version-platform.rpm</code><br />
<code>dpkg -i infobright-version-platform.deb</code></p>

	<p>3. Change to the mysql user</p>

	<p>4. Start the Infobright server:</p>

	<p style="padding-left:2em;"><code>/etc/init.d/mysqld-ib start</code></p>

	<p>5. Run mysql upgrade tool to upgrade data folder:</p>

	<p style="padding-left:2em;"><code>cd /usr/local/inforbright</code><br />
<code>./bin/mysql_upgrade --defaults-file=/etc/my-ib.cnf --user=root --tmpdir=/tmp</code></p>

	<p><b>Important:</b> The MySQL Upgrade utility may display several errors regarding the use of locks with log tables and errors requiring table upgrades. The errors are all handled automatically by Infobright and/or the upgrade utility and can be ignored.</p>

	<p>6. Re-start the Infobright server:</p>

	<p style="padding-left:2em;"><code>/etc/init.d/mysqld-ib restart</code></p>

	<p>7. Confirm the build version as IB_4.0_r13151_13690:</p>

	<p style="padding-left:2em;"><code>/usr/local/infobright/bin/mysqld --version</code></p>
      ]]></content>
    </entry>

    <entry>
      <title>Upgrade Guide for Windows</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/Upgrade_Guide_for_Windows/" />
      <id>tag:infobright.org,2011:wiki:Upgrade Guide for Windows/105.663</id>
      <published>2011-06-29T21:22:06Z</published>
      <updated>2011-06-29T21:22:06Z</updated>
      <author>
            <name>Stuart Herd</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p><b><span class="caps">ICE</span> 4.0.3 GA &#8211; Upgrade Notes</b> </p>

	<p><b>1.</b>  With <span class="caps">ICE</span> 3.4.2 GA, several tuning parameters are now configured automatically and have been deprecated from the brighthouse.ini file. The deprecated parameters include:</p>

	<ul>
		<li>ServerCompressedHeapSize</li>
		<li>LoaderSaveThreadNumber</li>
		<li>BufferingLevel</li>
		<li>CachingLevel</li>
		<li>ClusterSize</li>
		<li>HugefileDir</li>
	</ul>

	<p><b>2.</b>  Due to a known issue with the embedded version of MySQL, it is recommended you run the MySQL Updater program after any upgrade to avoid issues with stored procedures or table structures.</p>

	<p><b>3.</b>  The enable <span class="caps">UTF</span>-8 flag (UseCharset = 0/1) is no longer needed and if present, must be removed from the brighthouse.ini file. For table structures created prior to <span class="caps">ICE</span> 3.3.2 the Charset Migration Tool (<span class="caps">CHMT</span>) should be run during upgrade.</p>

	<p><b>Windows Upgrade Instructions</b> </p>

	<p>1.  Stop the Infobright server using the Start Menu item.</p>

	<p>2.  Follow the <a href="http://www.infobright.org/wiki/Install_Guide_for_Windows/" title="Install_Guide_for_Windows">Install Guide for Windows</a>.  The Install Wizard automatically detects a previous version of <span class="caps">ICE</span> and upgrades your Infobright installation while preserving your data and configuration settings.</p>

	<p>3.  Stop the Infobright server from the Start Menu item</p>

	<p>4.  Start the Infobright server from the Start Menu item</p>

	<p>5.  Create or ensure that the directory c:\tmp exists (necessary for step 7)</p>

	<p>6.  Run the MySQL Upgrade utility from the Windows command line:</p>

	<p style="padding-left:2em;"><code>cd &quot;C:\Program Files\Infobright&quot;</code> <br />
<code>.\bin\mysql_upgrade.exe --defaults-file=&quot;c:</code>&#92;Program Files&#92;Infobright&#92;my-ib.ini&#8221; <code>-uroot --tmpdir=c:\tmp</code></p>

	<p><b>Important:</b> The MySQL Upgrade utility may display several errors regarding the use of locks with log tables and errors requiring table upgrades. The errors are all handled automatically by Infobright and/or the upgrade utility and can be ignored.</p>

	<p>8. Stop and start the Infobright server from the Start Menu items.</p>
      ]]></content>
    </entry>

    <entry>
      <title>Data Loading</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/Data_Loading/" />
      <id>tag:infobright.org,2011:wiki:Data Loading/13.649</id>
      <published>2011-03-31T21:10:26Z</published>
      <updated>2011-03-31T21:10:26Z</updated>
      <author>
            <name>Stuart Herd</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p><span class="caps">ICE</span> includes a dedicated high-performance loader, that differs from the standard MySQL Loader. The Infobright Loader is designed for speed, but supports less load syntax than the MySQL Loader, and only supports variable length text formatted load files.</p>

	<p>Import your data into an Infobright table by using the following load syntax (all other MySQL Loader syntax is not supported):</p>

	<p style="padding-left:2em;"><code>LOAD DATA INFILE &#39;/full_path/file_name&#39; INTO TABLE table_name</code><br />
<code>[FIELDS</code><br />
<code>[TERMINATED BY &#39;char&#39;]</code><br />
<code>[ENCLOSED BY &#39;char&#39;]</code><br />
<code>[ESCAPED &#39;char&#39;]</code><br />
<code>];</code></p>

	<p>The data is committed when the load completes if <span class="caps">AUTOCOMMIT</span> is set to on. This is default setting, but you can make it explicit by setting:</p>

	<p style="padding-left:2em;"><code>Set AUTOCOMMIT=1;</code></p>

	<p>If you want to check the data via select before committing, then set <span class="caps">AUTOCOMMIT</span> to off:</p>

	<p style="padding-left:2em;"><code>Set AUTOCOMMIT=0;</code></p>

	<p>New data can be seen by the loading session even though its not committed. Complete the load using an explicit <span class="caps">COMMIT</span>:</p>

	<p style="padding-left:2em;"><code>COMMIT;</code></p>

	<p>For testing purposes you can generate data using this community user&#8217;s <a href="http://www.datamelt.com">data generation tool.</a></p>

	<p>For more information on using the <span class="caps">ICE</span> Loader and details on the supported syntax, please click on the following link to download the Loading Data in <span class="caps">ICE</span> document:</p>

	<p><a href="http://www.infobright.org/downloads/ice/Infobright_Data_Loading_Guide.pdf">Download the Data Loading <span class="caps">PDF</span></a></p>
      ]]></content>
    </entry>

    <entry>
      <title>Tar Upgrade Guide</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/Tar_Upgrade_Guide/" />
      <id>tag:infobright.org,2011:wiki:Tar Upgrade Guide/120.648</id>
      <published>2011-02-21T17:32:21Z</published>
      <updated>2011-02-21T17:32:21Z</updated>
      <author>
            <name>Stuart Herd</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p><b><span class="caps">ICE</span> 3.5.2 GA &#8211; Upgrade Notes</b> </p>

	<p><b>1.</b>  With <span class="caps">ICE</span> 3.5.2 GA, several tuning parameters are now configured automatically and have been deprecated from the brighthouse.ini file. The deprecated parameters include:</p>

	<ul>
		<li>ServerCompressedHeapSize</li>
		<li>LoaderSaveThreadNumber</li>
		<li>BufferingLevel</li>
		<li>CachingLevel</li>
		<li>ClusterSize</li>
		<li>HugefileDir</li>
	</ul>

	<p><b>2.</b>  Due to a known issue with the embedded version of MySQL, it is recommended you run the MySQL Updater program after any upgrade to avoid issues with stored procedures or table structures.</p>

	<p><b>3.</b>  The enable <span class="caps">UTF</span>-8 flag (UseCharset = 0/1) is no longer needed and if present, must be removed from the brighthouse.ini file. For table structures created prior to <span class="caps">ICE</span> 3.3.2 the Charset Migration Tool (<span class="caps">CHMT</span>) should be run during upgrade.</p>

	<p><b>Linux Upgrade Instructions Using the Tar Package</b> </p>

	<p>1.    Obtain root user access </p>

	<p>2.    Unpack the tarball into a temporary folder:</p>

	<p style="padding-left:2em;"><code>cd /path/to/temp/</code><br />
<code>gunzip</code> &lt; <code>/path/to/infobright-3.5.2-x86_64.tar.gz | tar xvf -</code><br />
<code>cd infobright-3.5-x86_64</code></p>

	<p>3. Stop the Infobright server:</p>

	<p style="padding-left:2em;"><code>/etc/init.d/mysqld-ib stop</code></p>

	<p>3.  Run the install script with the <code>&quot;--upgrade” and “--config”</code> flags and pass in the configuration files of the previously installed version:</p>

	<p style="padding-left:2em;"><code>./install-infobright.sh  --upgrade --config=/etc/my-ib.cnf</code></p>

	<p>4.  Run the Charset Migration Tool:</p>

	<p style="padding-left:2em;"><code>cd /usr/local/infobright</code><br />
<code>./bin/chmt --datadir=/absolute/path/to/data/directory</code></p>

	<p>5. Start the Infobright server and run the mysql_upgrade utility:</p>

	<p style="padding-left:2em;"><code>/etc/init.d/mysqld-ib start</code><br />
<code>cd /usr/local/infobright</code><br />
<code>./bin/mysql_upgrade --defaults-file=/etc/my-ib.cnf --user=root --tmpdir=/tmp</code></p>

	<p><b>Important:</b> The MySQL Upgrade utility may display several errors regarding the use of locks with log tables and errors requiring table upgrades. The errors are all handled automatically by Infobright and/or the upgrade utility and can be ignored.</p>

	<p>6. Re-start the Infobright server:</p>

	<p style="padding-left:2em;"><code>/etc/init.d/mysqld-ib restart</code></p>

	<p>7. Confirm the build version as IB_3.5.2_r11794_12019:</p>

	<p style="padding-left:2em;"><code>/usr/local/infobright/bin/mysqld --version</code></p>
      ]]></content>
    </entry>

    <entry>
      <title>ICE Platform Requirements</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/ICE_Platform_Requirements/" />
      <id>tag:infobright.org,2010:wiki:ICE Platform Requirements/117.617</id>
      <published>2010-08-20T16:11:35Z</published>
      <updated>2010-08-20T16:11:35Z</updated>
      <author>
            <name>Andrew Flint</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p><b>Platform Support</b></p>

	<p><span class="caps">ICE</span> is available on the following platforms for 64-bit Intel or 64-bit <span class="caps">AMD</span>:</p>

	<ul>
		<li>Windows Server 2003</li>
		<li>Red Hat Enterprise Linux 5</li>
		<li>Debian ‘Lenny’</li>
		<li>CentOS 5.2</li>
	</ul>

	<p><span class="caps">ICE</span> is also available on the following platforms for 32-bit Intel or 32-bit <span class="caps">AMD</span> (<b>Note:</b> the 32-bit version should only be used for staging and application testing, or limited concurrent/single user deployments):</p>

	<ul>
		<li>Windows XP</li>
		<li>Ubuntu 8.04</li>
		<li>Fedora 9</li>
	</ul>

	<p><b>System Requirements</b></p>

	<p>Processor Architecture &#8211; Intel 64-bit, Intel 32-bit, <span class="caps">AMD</span> 64-bit, <span class="caps">AMD</span> 32-bit</p>

	<p><i>For Multi-User Evaluation or Production Deployment:</i></p>

	<p><span class="caps">CPU</span> Speed</p>

	<ul>
		<li>64-bit:</li>
	</ul>

	<p style="padding-left:2em;">2.0GHz minimum<br />
2.0GHz or faster dual or quad core recommended</p>

	<p>Memory </p>

	<ul>
		<li>64-bit:</li>
	</ul>

	<p style="padding-left:2em;">4GB minimun<br />
16GB or more recommended (and at least 2GB per core)</p>

	<p><i>For Personal Evaluation, or Single/Limited User Deployments:</i></p>

	<p><span class="caps">CPU</span> Speed</p>

	<ul>
		<li>32-bit:</li>
	</ul>

	<p style="padding-left:2em;">1.6GHz minimum<br />
2.0GHz or faster dual or quad core recommended</p>

	<ul>
		<li>64-bit:</li>
	</ul>

	<p style="padding-left:2em;">1.8GHz minimum<br />
2.0GHz or faster dual or quad core recommended</p>

	<p>Memory   </p>

	<ul>
		<li>32-bit:</li>
	</ul>

	<p style="padding-left:2em;">1GB minimum<br />
2GB or more recommended</p>

	<ul>
		<li>64-bit:</li>
	</ul>

	<p style="padding-left:2em;">2GB minimum<br />
4GB or more recommended</p>
      ]]></content>
    </entry>

    <entry>
      <title>Install Guide for Linux</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/Install_Guide_for_Linux/" />
      <id>tag:infobright.org,2010:wiki:Install Guide for Linux/108.615</id>
      <published>2010-08-03T17:00:55Z</published>
      <updated>2010-08-03T17:00:55Z</updated>
      <author>
            <name>Andrew Flint</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p><b>Note:</b> These instructions are for installing <span class="caps">ICE</span> 3.x on Linux operating systems using the <span class="caps">RPM</span> or <span class="caps">DEB</span> packages. To install using the tarball, please see the tar <a href="http://www.infobright.org/wiki/Install_Guide/" title="Install_Guide">Install Guide</a>. For Windows XP, please see <a href="http://www.infobright.org/wiki/Install_Guide_for_Windows/" title="Install_Guide_for_Windows">Install Guide for Windows</a>.</p>

	<p><b>Installation Instructions</b></p>

	<p>1. <a href="http://www.infobright.org/Downloads/ICE/">Download the install package</a> (e.g. infobright-3.4-x86_64.rpm) to the server where you are installing Infobright</p>

	<p>2. Obtain root user access</p>

	<p>3. To install the <span class="caps">RPM</span> package, run:</p>

	<p style="padding-left:2em;"><code>rpm -i infobright_version_name.rpm [optional: --prefix=path]</code></p>

	<p>To install the <span class="caps">DEB</span> package, run:</p>

	<p style="padding-left:2em;"><code>dpkg -i infobright_version_name.deb</code></p>

	<p><b>Note:</b> Please do not install <span class="caps">ICE</span> in the root or home directories due to possible MySQL permission checking issues during install, start up, and/or load.</p>

	<p>4. To change the default install options, after installation run:</p>

	<p style="padding-left:2em;"><code>/usr/local/infobright/postconfig.sh</code></p>

	<p>You can run this script at any time after installation to change the datadir, CacheFolder, socket, and port. The script must be run as root and <span class="caps">ICE</span> must not be running.</p>

	<p>5. The installation determines the optimum memory settings based on the physical memory of the system. You may change these settings by editing the file brighthouse.ini within the data directory. </p>

	<p><b>Important:</b> The memory settings assume that there are no other services on the machine consuming significant memory. If this is not the case, please lower the memory settings for Infobright.</p>

	<p>6. To start or stop <span class="caps">ICE</span>, run:</p>

	<p style="padding-left:2em;"><code>/etc/init.d/mysqld-ib start</code><br />
<code>/etc/init.d/mysqld-ib stop</code></p>

	<p>7.  To connect to <span class="caps">ICE</span>, use the script mysql-ib: </p>

	<p style="padding-left:2em;"><code>/usr/bin/mysql-ib [optional:db_name]</code></p>

	<p>8. To uninstall <span class="caps">ICE</span>, run either:</p>

	<p style="padding-left:2em;"><code>rpm -e infobright</code><br />
<code>dpkg -r infobright</code></p>
      ]]></content>
    </entry>

    <entry>
      <title>Install Guide Part 2</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/Install_Guide_Part_2/" />
      <id>tag:infobright.org,2010:wiki:Install Guide Part 2/10.572</id>
      <published>2010-03-25T20:18:47Z</published>
      <updated>2010-03-25T20:18:47Z</updated>
      <author>
            <name>Andrew Flint</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p>7. Change default memory configuration by editing the file brighthouse.ini within the data directory. </p>

	<p><b>Important:</b> It is critical that you increase the memory settings for systems running more than 2GB of physical memory or performance will be severely impacted.</p>

	<p>The following table lists the parameters and some recommended values based on the amount of system memory (values are expressed in megabytes).</p>

	<table>
		<tr>
			<th>System</th>
			<th>Server Main</th>
			<th>Server Compressed</th>
			<th>Loader Main</th>
		</tr>
		<tr>
			<th>Memory</th>
			<th>Heap Size</th>
			<th>Heap Size</th>
			<th>Heap Size</th>
		</tr>
		<tr>
			<td>&#8212;&#8212;&#8212;&#8212;&#8212;-</td>
			<td>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</td>
			<td>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</td>
			<td>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</td>
		</tr>
		<tr>
			<td>64 GB</td>
			<td>48000</td>
			<td>4000</td>
			<td>800</td>
		</tr>
		<tr>
			<td>48 GB</td>
			<td>32000</td>
			<td>4000</td>
			<td>800</td>
		</tr>
		<tr>
			<td>32 GB</td>
			<td>24000</td>
			<td>4000</td>
			<td>800</td>
		</tr>
		<tr>
			<td>16 GB</td>
			<td>10000</td>
			<td>1000</td>
			<td>800</td>
		</tr>
		<tr>
			<td>8 GB</td>
			<td>4000</td>
			<td>500</td>
			<td>800</td>
		</tr>
		<tr>
			<td>4 GB</td>
			<td>1300</td>
			<td>400</td>
			<td>400</td>
		</tr>
		<tr>
			<td>2 GB</td>
			<td>600</td>
			<td>250</td>
			<td>320</td>
		</tr>
		<tr>
			<td>Default</td>
			<td>600</td>
			<td>250</td>
			<td>320</td>
		</tr>
		<tr>
			<td>.</td>
		</tr>
	</table>

	<p><b>Note:</b> The values are commented out (preceded by #) in the brighthouse.ini file, which causes them to default to the application minimum allowed values of 600, 256, and 320 respectively.</p>

	<p>8. To start or stop the Infobright server, run:</p>

	<p style="padding-left:2em;"><code>/etc/init.d/mysqld-ib start</code><br />
<code>/etc/init.d/mysqld-ib stop</code></p>

	<p>For details, run</p>

	<p style="padding-left:2em;"><code>bin/mysqld_safe --help</code></p>

	<p>9. To connect to Infobright server, use the script mysql-ib located in /usr/bin</p>

	<p><a href="http://www.infobright.org/wiki/Creating_the_Database_from_an_Existing_Schema/" title="Creating_the_Database_from_an_Existing_Schema">Creating the Database from an Existing Schema</a></p>
      ]]></content>
    </entry>

    <entry>
      <title>Install Guide</title>
      <link rel="alternate" type="text/html" href="http://www.infobright.org/wiki/Install_Guide/" />
      <id>tag:infobright.org,2010:wiki:Install Guide/9.571</id>
      <published>2010-03-25T20:18:17Z</published>
      <updated>2010-03-25T20:18:17Z</updated>
      <author>
            <name>Andrew Flint</name>
            <email></email>
      </author>
      <content type="html"><![CDATA[
        	<p><b>Tar Package Installation Instructions</b></p>

	<p>1. <a href="http://www.infobright.org/Downloads/ICE/">Download the install package</a> (e.g. infobright-3.3-x86_64-ice.tar.gz) to the server where you are installing Infobright</p>

	<p>2. Obtain root user access</p>

	<p>3. Change to the parent location in which you want to install (e.g. /usr/local) </p>

	<p style="padding-left:2em;"><code>cd /usr/local</code></p>

	<p><b>Note:</b> Please do not install in the root or home directories due to possible MySQL permission checking issues during install, start up, and/or load.</p>

	<p>4. Unpack the tarball, which will create the product directory (infobright-3.3-x86_64-ice/), and create a symbolic link &#8216;infobright&#8217; to the product folder</p>

	<p style="padding-left:2em;"><code>gunzip</code> &lt; <code>/path/to/infobright-3.3-x86_64-ice.tar.gz | tar xvf -</code><br />
<code>cd /usr/local/infobright</code></p>

	<p>5. Run the install script with the <code>&quot;--help</code>&#8221; flag to check for system configuration and provide examples of directory parameters</p>

	<p style="padding-left:2em;"><code>./install-infobright.sh --help</code></p>

	<p style="padding-left:2em;"><code>Parameters required for installation -</code><br />
<code>--datadir=infobright data folder       [--datadir=/usr/local/infobright/data]</code><br />
<code>--cachedir=infobright cache folder     [--cachedir=/usr/local/infobright/cache]</code><br />
<code>--config=mysql conf file to be created [--config=/etc/my-ib.cnf]</code><br />
<code>--port=infobright server port          [--port=5029]</code><br />
<code>--socket=socket file to be used by this server [--socket=/tmp/mysql-ib.sock]</code><br />
<code>--user=user to be created if not exist         [--user=mysql]</code><br />
<code>--group=user group be created if not exist     [--group=mysql]</code></p>

	<p style="padding-left:2em;"><code>Example command</code><br />
<code>./install-infobright.sh          (install with defaults)</code><br />
<code>./install-infobright.sh --help</code><br />
<code>./install-infobright.sh --datadir=/usr/local/infobright/data --cachedir=/usr/local/infobright/cache --port=5029 --config=/etc/my-ib.cnf --socket=/tmp/mysql-ib.sock --user=mysql --group=mysql</code></p>

	<p>6. Run the install script again, this time with directory parameters. If parameters are used that already exist, an error will occur (for example running the same script with parameters twice)</p>

	<p><a href="http://www.infobright.org/wiki/Install_Guide_Part_2/" title="Install_Guide_Part_2">Install Guide Part 2</a></p>
      ]]></content>
    </entry>


</feed>
