<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>NewPush &#187; DB2</title> <atom:link href="http://newpush.com/category/tech/db2/feed/" rel="self" type="application/rss+xml" /><link>http://newpush.com</link> <description>Server Hosting, Data Warehouse Hosting, Collaboration</description> <lastBuildDate>Mon, 30 Jan 2012 15:40:45 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Installing a Secure Certificate on IBM Smart Business Server (VERDE)</title><link>http://newpush.com/2011/05/installing-a-secure-certificate-on-ibm-smart-business-server-verde/</link> <comments>http://newpush.com/2011/05/installing-a-secure-certificate-on-ibm-smart-business-server-verde/#comments</comments> <pubDate>Mon, 23 May 2011 07:41:06 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Business Intelligence]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Cognos 10]]></category> <category><![CDATA[Collaboration]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Domino]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[IBM Smart Business Server]]></category> <category><![CDATA[VDI]]></category> <category><![CDATA[VERDE]]></category> <category><![CDATA[Virtual Desktop]]></category><guid isPermaLink="false">http://newpush.com/?p=1130</guid> <description><![CDATA[At the time of this writing, the IBM Smart Business Server&#8217;s control panel doesn&#8217;t allow importing a secure certificate (SSL cert). Never-the-less it is possible to install a valid (CA signed) secure certificate from the command line. This article assumes &#8230; <a href="http://newpush.com/2011/05/installing-a-secure-certificate-on-ibm-smart-business-server-verde/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>At the time of this writing, the IBM Smart Business Server&#8217;s control panel doesn&#8217;t allow importing a secure certificate (SSL cert).  Never-the-less it is possible to install a valid (CA signed) secure certificate from the command line.  This article assumes that the reader is familiar with SSL and the basic SSL KEY, CSR, and CRT generation step.  We are therefore picking up at the point where you have an SSL KEY as well as an SSL CRT.  You will also need a machine that has <code>openssl</code> installed (any Linux or Mac box will do).  In fact the smart business server itself has openssl installed, as well as keytools, so all the steps can be performed directly on the smart business server.</p><p>Please note that this is a draft document, and work in progress.  At this time only the public facing websites have been successfully set up with a CA signed certificate.</p><ul><li>The Apache configuration file for the setup wizard is:<code>/etc/apache2/httpdWSW.conf</code></li><li>The Apache configuration file for the intranet is here:<code>/etc/apache2/httpdInt.conf</code> with the corresponding SSL configuration here: <code>/etc/apache2/extra/httpdInt-ssl.conf</code></li><li>First copy the new key and cert (in the same file, key goes on top and then the cert) into <code>/etc/opt/ibm/bbp/smartcontainer/httpdWSW.cert</code></li><li>(Optional, this step hasn&#8217;t been successfully tested, because a non-RFC compiant method is used.) To create an RFC compliant PKCS8 version of the key pair where the intranet config file is expecting it:<code><br /> cd /etc/opt/ibm/bbp/<br /> openssl pkcs8 -topk8 -inform PEM -nocrypt -in smartcontainer/httpdWSW.cert -out PKCS8.cert</code></li><li>Make sure the CA bundle is made available and properly reference in the above mentioned config files (<code>cp path/to/sf_bundle.crt smartcontainer/</code>)</li><li>Create a PKCS12 version of your certificate:<code><br /> openssl pkcs12 -export -chain -CAfile sf_bundle.crt -in '&lt;your>.crt' -inkey '&lt;your>.key' -out PKCS12.cert -name &lt;name> -passout pass:111111<br /> </code>(at the time of this writing, the default cert store password hard coded in the VERDE install is <code>111111</code>)</li><li>Location of the Java SSL Keystore: <code>/etc/opt/ibm/bbp/SSLkeystore</code></li><li>Location of the [SAFEv3] encription tool:<code>/opt/ibm/bbp/saf/encryptPassword.sh</code></li><li>Password retrieval command:<code>/opt/ibm/bbp/saf/lib/security/manageAdminCreds -f get -a JavaKeyStore2048BitKey -i 1</code></li><li>Create a new keystore based on the PKCS#12 cert: <code><br /> keytool -importkeystore -destkeystore SSLkeystore.new -srckeystore PKCS12.cert -srcstoretype PKCS12  -alias &lt;common_name_of_SSL_cert></code></li><li>Update the Keystore configuration reference in <code>/opt/ibm/bbp/saf/cfg</code> (use the password retrieved above).</li><li>Copy the PKCS#12 cert to the VERDE Tomcat cert store:<code><br /> cp PKCS12.cert /var/lib/verde/host.p12<br /> cp /var/lib/verde/host.p12 /usr/lib/verde/etc/host.p12<br /> </code>(Make sure you save your previous copies of any file you modify.)</li></ul><p>At this point, you have to restart the system, to make sure that all public services get the proper certificate loaded on boot.  If you prefer, you can restart the services:</p><ul><li><code>/etc/init.d/lwi restart </code></li><li><code>/etc/init.d/simpleAgent_d restart</code></li><li>restart the VERDE software from the web console</li></ul><h2>References</h2><ul><li>http://conshell.net/wiki/index.php/Keytool_to_OpenSSL_Conversion_tips</li><li>http://cunning.sharp.fm/2008/06/importing_private_keys_into_a.html</li><li>Many thanks to the bISV IBM support team</li></ul> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2011/05/installing-a-secure-certificate-on-ibm-smart-business-server-verde/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Updated IBM DB2 e-kit for Database Professionals</title><link>http://newpush.com/2011/03/updated-ibm-db2-e-kit-for-database-professionals/</link> <comments>http://newpush.com/2011/03/updated-ibm-db2-e-kit-for-database-professionals/#comments</comments> <pubDate>Sat, 05 Mar 2011 00:07:38 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Database]]></category> <category><![CDATA[IBM]]></category><guid isPermaLink="false">http://newpush.com/?p=958</guid> <description><![CDATA[Refresh of the DB2 e-kit As a follow up to the DB2 Discovery Kit post, here is a link the the Updated IBM DB2 e-kit for Database Professionals This new kit has a number of resources for migrating to DB2 &#8230; <a href="http://newpush.com/2011/03/updated-ibm-db2-e-kit-for-database-professionals/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>Refresh of the DB2 e-kit</h1><p>As a follow up to the <a href="http://newpush.com/2009/12/db2-discovery-kit/">DB2 Discovery Kit</a> post, here is a link the the <a href="https://www6.software.ibm.com/developerworks/offers/kits/data/dataprokit/index.html">Updated IBM DB2 e-kit for Database Professionals</a></p><p>This new kit has a number of resources for migrating to DB2 from other databases, such as Oracle.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2011/03/updated-ibm-db2-e-kit-for-database-professionals/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Java Shopping Cart and eCommerce Solutions</title><link>http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/</link> <comments>http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/#comments</comments> <pubDate>Tue, 07 Dec 2010 07:27:38 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[eCommerce]]></category> <category><![CDATA[Shopping Cart]]></category><guid isPermaLink="false">http://newpush.com/?p=860</guid> <description><![CDATA[Java Shopping Cart Hosting The need to host a shopping cart comes up on a regular basis. There are literally hundreds of very good solutions out there. Here is a list of carts that satisfy the following criteria: - configurable &#8230; <a href="http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>Java Shopping Cart Hosting</h1><p>The need to host a shopping cart comes up on a regular basis.  There are  literally hundreds of very good solutions out there.  Here is a list of carts that satisfy the following criteria:<br /> - configurable<br /> - customizable<br /> - embeddable<br /> - has a flexible API<br /> - compatible with IBM DB2<a rel="attachment wp-att-865" href="http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/im-mark-170x22/"> <img class="size-full wp-image-865 alignright" title="Java Shopping Cart Hosting for IBM DB2" src="http://newpush.com/wp-content/uploads/2010/12/im-mark-170x22.gif?9d7bd4" alt="Java Shopping Cart Hosting for IBM DB2" width="170" height="22" /></a><br /> - scalable<br /> - reliable</p><p>With these requirements, Java EE is a good technology to settle on, hence the need to find Java Shopping Cart Hosting.</p><h2>Java Shopping Cart Hosting &#8211; Ready to Go Solutions</h2><p>The following products have been identified as viable solutions for Java Shopping Cart Hosting deployments:</p><ul><li>http://www-01.ibm.com/software/genservers/commerce/express/<a rel="attachment wp-att-866" href="http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/ws-mark-170x22/"> <img class="size-full wp-image-866 alignright" title="IBM Websphere Commerce" src="http://newpush.com/wp-content/uploads/2010/12/ws-mark-170x22.gif?9d7bd4" alt="Java Shopping Cart Hosting with IBM Websphere Commerce" width="170" height="22" /></a></li><li>http://www.softslate.com/</li><li>http://ofbiz.apache.org/</li><li>http://www.shopizer.com/</li><li>http://www.jadasite.com/</li><li>http://www.openedit.org/</li><li>http://www.konakart.com/</li><li>http://www.avetti.com/</li><li>http://allbinary.appspot.com/Weblisket.jsp</li></ul><h3>Java Shopping Cart Hosting &#8211; Tutorials</h3><p>There are also a couple good tutorials we found that would walk you through how to create a shopping cart from scratch to embed into an existing application:</p><ul><li>http://www.ibm.com/developerworks/library/j-ajax1/</li><li>http://www.tech-freaks.in/Java-Programming/JSP-Servlets/shopping-cart.html</li></ul><p>Any of the above is supported in our <a href="/category/services/managed-hosting/">Managed Hosting</a> environment for a successful Java Shopping Cart Hosting deployment.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/12/java-shopping-cart-and-ecommerce-solutions/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Updating the Rate Sheet in the COGEXO Rating Engine</title><link>http://newpush.com/2010/11/updating-the-rate-sheet-in-the-cogexo-rating-engine/</link> <comments>http://newpush.com/2010/11/updating-the-rate-sheet-in-the-cogexo-rating-engine/#comments</comments> <pubDate>Wed, 10 Nov 2010 01:41:05 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[Business Intelligence]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[MySQL]]></category><guid isPermaLink="false">http://newpush.com/?p=855</guid> <description><![CDATA[Rate table update on MySQL backed database The concepts in this guide apply for the DB2 version of the rating engine. Data Fromat product_code_call,description,cost,call_type Data Upload For the MySQL back-end, use phpMyAdmin to upload the data: Log in to phpMyAdmin &#8230; <a href="http://newpush.com/2010/11/updating-the-rate-sheet-in-the-cogexo-rating-engine/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>Rate table update on MySQL backed database</h1><p> The concepts in this guide apply for the DB2 version of the rating engine.</p><h2>Data Fromat</h2><p><code>product_code_call,description,cost,call_type</code></p><h2>Data Upload</h2><p>For the MySQL back-end, use phpMyAdmin to upload the data:</p><ul><ol>Log in to phpMyAdmin</ol><ol>Select the <code>rate</code> table</ol><ol>Click the <code>import</code> tab</ol><ol>Select the file that has the comma delimited values (CSV)</ol><ol>Set the number of lines to skip to 1</ol><ol>Select CSV radio button</ol><ol>Set the delimiter to &#8220;,&#8221;</ol><ol>Check the <code>replace data with file</code> box</ol><ol>Click Go</ol></ul><p>Upon successful import, a message diplaying the number of values imported, for example:<code><br /> Import has been successfully finished, 1578 queries executed.</code></p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/11/updating-the-rate-sheet-in-the-cogexo-rating-engine/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Migrating Data Between DB2 Servers</title><link>http://newpush.com/2010/10/migrating-data-between-db2-servers/</link> <comments>http://newpush.com/2010/10/migrating-data-between-db2-servers/#comments</comments> <pubDate>Fri, 29 Oct 2010 06:32:02 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Business Intelligence]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Cognos 10]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Mac OS X]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[DB2 9.7]]></category><guid isPermaLink="false">http://newpush.com/?p=815</guid> <description><![CDATA[DB2 Support for Data Migration When it is time to upgrade from DB2 on Intel to DB2 on Power for example, taking a backup/restore approach isn&#8217;t possible as DB2&#8242;s backups are platform dependent. The solution is to use a DB2 &#8230; <a href="http://newpush.com/2010/10/migrating-data-between-db2-servers/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>DB2 Support for Data Migration</h1><p>When it is time to upgrade from DB2 on Intel to DB2 on Power for example, taking a backup/restore approach isn&#8217;t possible as DB2&#8242;s backups are platform dependent.  The solution is to use a DB2 command called <code>db2move</code>.</p><h2>Basics of db2move</h2><p>db2move allows to export data from DB2 at different levels of granularity.  It also has a very simple syntax to allow exporting all of the data and structure of a database.</p><h2>Exmaple of db2move</h2><p><code><br /> su - db2inst1<br /> mkdir /tmp/db2export<br /> cd /tmp/db2export<br /> db2move sample export<br /> </code><br /> Where <code>db2inst1</code> is the db2 instance owner, <code>/tmp/db2export</code> is where the DB2 data and structures are being exported, and <code>sample</code> is the database name.</p><p>For more DB2 Support hints, please visit our <a href="http://newpush.com/category/tech/db2/">DB2</a> category.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/10/migrating-data-between-db2-servers/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Planning for Storage, Server, and  Network Infrastructure</title><link>http://newpush.com/2010/10/planning-for-storage-server-and-network-infrastructure/</link> <comments>http://newpush.com/2010/10/planning-for-storage-server-and-network-infrastructure/#comments</comments> <pubDate>Thu, 28 Oct 2010 03:23:03 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Collaboration]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Dedicated Servers]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[NetApp]]></category> <category><![CDATA[OpenBSD]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Infrastructure]]></category> <category><![CDATA[Servers]]></category> <category><![CDATA[storage]]></category><guid isPermaLink="false">http://newpush.com/?p=775</guid> <description><![CDATA[Questions to ask when planning storage and server infrastructure Storage Requirements What our their current storage environment? (What technology do we use? NetApp, EMC, HP, Hitachi, Compellant?) What is our current amount of usable storage? What is our current data &#8230; <a href="http://newpush.com/2010/10/planning-for-storage-server-and-network-infrastructure/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>Questions to ask when planning storage and server infrastructure</h1><h2>Storage Requirements</h2><ul><li>What our their current storage environment? (What technology do we use?  NetApp, EMC, HP, Hitachi, Compellant?)</li><li>What is our current amount of usable storage?</li><li>What is our current data in GB / TB?  How much of that data is deemed critical as opposed to 2nd tier, or even archivable?</li><li>What growth increase are we seeing from year to year?  (25%?  30%? 40%? More?)</li><li>Is this our largest variable IT cost within our overall budget?</li></ul><h2>Server Infrastructure</h2><ul><li>How many servers do we have within our overall Infrastructure environment?</li><li>What percentage is comprised of Power, Linux or “Wintel”?</li><li>Do we have a vendor standard? (HP, Dell, IBM?)</li><li>What is our overall server utilization (7%?  10%? 20%?  50%?  More?)</li><li>Do we utilize virtualization in our server infrastructure environment?</li><li>If so, what percentage of our environment is virtualized?</li><li>What version / type of virtualization do we use?</li><li>Are we looking to do a server consolidation project to help us save on additional software maintenance and energy costs?</li></ul><h2>Network Infrastructure</h2><ul><li>Do we have (primarily) our own data center or do we store all of our equipment at a co-location / managed services location?  (and if so, whom?)</li><li>What is our current network environment (Cisco?  Avaya?)</li><li>Do we standardize on a vendor?</li><li>How old / new is their network environment?</li><li>What kind of connectivity do they have?  (T1?  T3?  DS?)</li></ul><h2>Security Solutions</h2><ul><li>Do we have a set standard for our security environment?</li><li>Do we do quarterly security assessments?  (PCI and/or FFIEC Assessments?) (Who do we use?)</li><li>Are there areas we need to improve?</li></ul><h2>Software Maintenance</h2><p>Do we have a goto partner we standardize on for software and hardware maintenance contracts?</p><h2>Projects</h2><ul><li>What are there next three primary projects?</li><li>What is our IT  budget?</li><li>What is our Calendar year?  Jan – Dec?  July – June?  Etc.</li></ul><p>For more information about planning for storage, servers, and network infrastructure, look at our <a href="http://newpush.com/category/services/data-warehouse/">data warehouse</a> pages.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/10/planning-for-storage-server-and-network-infrastructure/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>NetApp downgrade firmware</title><link>http://newpush.com/2010/10/netapp-downgrade-firmware/</link> <comments>http://newpush.com/2010/10/netapp-downgrade-firmware/#comments</comments> <pubDate>Tue, 26 Oct 2010 06:30:45 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Mac OS X]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[NetApp]]></category> <category><![CDATA[Windows]]></category><guid isPermaLink="false">http://newpush.com/?p=768</guid> <description><![CDATA[Downgrading firmware on a NetApp SAN If you have just reclaimed a shelf from a NetApp SAN that you would like to use with an older head, you will notice that the drives are not recognized. This is due the &#8230; <a href="http://newpush.com/2010/10/netapp-downgrade-firmware/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>Downgrading firmware on a NetApp SAN</h1><p>If you have just reclaimed a shelf from a NetApp SAN that you would like to use with an older head, you will notice that the drives are not recognized.  This is due the the fact that DataOntap upgrades the drives automatically when you plug them in to an updated shelf, but it won&#8217;t downgrade or even recognize correctly drives that come from an higher level revision.</p><p>Downgrading drives while keeping the contents is actually impossible.</p><h2>Actually downgrating the firmware on NetApp SAN drives</h2><p>Chances are that you don&#8217;t really need to downgrade the firmware on the drives, and you can just skip to the next section.</p><p>If you are sure you need to downgrade the drives, here are the basic steps:</p><ul><li>Get a linux box, with a qlogic HBA, and cables that can attach to the shelf that has the drives to downgrade</li><li>Make sure only the drives that you want to downgrade are in the shelf</li><li>Make sure the proper disk qualification package is on the filer (if not, download the Disk Qualification Package as a zip file from: http://now.netapp.com/NOW/download/tools/diskqual/ and extract it to the /etc directory of the NetApp)</li><li>Download all current disk firmware from http://now.netapp.com/NOW/download/tools/diskfw/</li><li>Get the right firmware for your disk (the new you just downloaded, or an old one, if you need to downgrade) &#8212; the old firmware is already on the root volume of the netapp</li><li>Use the proper firmware upgrade tool from your manufacturer to flash the firmware from the Linux box</li></ul><h2>Wiping labels on NetApp SAN drives</h2><p>If you simply can&#8217;t get the old filer head to recognize the drives that had new labels, the only viable solution to get the drives to work is to reconnect the shelf to the old filer head that was running a newer firmware.</p><h3>Erasing labels on NetApp SAN drives</h3><ul><li>Boot into maintenance mode (CTRL+C at boot and then Option 5)</li><li>list the drives: <code>label summary</code></li><li>erase the labels: <code>label wipe 4.23</code> where 4.23 is the drive number to wipe</li><li>exit maintenance mode: <code>halt</code></li></ul><p>Chances are that this will still not allow the older filer to see the drives properly.  The next step always works: zero the drives.</p><h3>Zeroing spares on NetApp filer</h3><ul><li>Boot into maintenance mode (CTRL+C at boot and then Option 5)</li><li>list the drives: <code>label summary</code></li><li>force the drives to become spares: <code>label makespare 4.23</code> where 4.23 is the drive number</li><li>exit maintenance mode and boot: <code><br /> > halt<br /> ok boot<br /> </code></li><li>zero the spare drives: <code>drive zero spares</code></li><li>remove the shelf or the drives from the new filer, and you can now put them back into the old filer, as they will be recognized just fine.</li></ul><p>For more information about our SAN support, look at <a href="http://newpush.com/category/tech/netapp/">NetApp SAN</a>.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/10/netapp-downgrade-firmware/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>NetApp route add default gateway</title><link>http://newpush.com/2010/10/netapp-route-add-default-gateway/</link> <comments>http://newpush.com/2010/10/netapp-route-add-default-gateway/#comments</comments> <pubDate>Mon, 25 Oct 2010 04:40:07 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[AIX]]></category> <category><![CDATA[Cloud Computing]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Domino]]></category> <category><![CDATA[Hosting Support]]></category> <category><![CDATA[Linux]]></category> <category><![CDATA[Mac OS X]]></category> <category><![CDATA[Managed Hosting]]></category> <category><![CDATA[NetApp]]></category> <category><![CDATA[OpenBSD]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[NetApp SAN]]></category><guid isPermaLink="false">http://newpush.com/?p=751</guid> <description><![CDATA[NetApp SAN default gateway setup DataOntap is a FreeBSD based operating system built by NetApp. However, most of the command line interface commands differ from the usual FreeBSD commands. When a new NetApp installation is performed, or a NetApp migration &#8230; <a href="http://newpush.com/2010/10/netapp-route-add-default-gateway/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>NetApp SAN default gateway setup</h1><p>DataOntap is a FreeBSD based operating system built by NetApp.  However, most of the command line interface commands differ from the usual FreeBSD commands.  When a new NetApp installation is performed, or a NetApp migration is needed, typically the IP address needs to be changed, as well as the default gateway.  The first step before changing the network configuraiton is to check if the current configuration, and capture it in case you need to back out of the migration.  The following paragraphs show how to check existing configuration, and how to set the new gateway. <a href="http://newpush.com/2010/10/netapp-route-add-default-gateway/fas6000-series/" rel="attachment wp-att-753"><img src="http://newpush.com/wp-content/uploads/2010/10/fas6000-series.jpg?9d7bd4" alt="NetApp SAN" title="NetApp FAS6000 SAN" width="226" height="137" class="alignright size-full wp-image-753" /></a></p><h2>Show NetApp SAN network config</h2><p>To print the current network config, run:<code><br /> ifconfig -a<br /> </code><br /> To set a new network IP, run:<code><br /> ifconfig e0 192.168.1.2 netmask 255.255.255.0<br /> </code><br /> Where <code>e0</code> is your network interface name, and <code>192.168.1.2</code> is the new IP of the NetApp.</p><h2>Show NetApp SAN route config</h2><p>To print the current routes, run:<code><br /> route -ns<br /> </code></p><h2>Setup NetApp SAN default route</h2><h3>Delete NetApp SAN current default route</h3><p><code>route delete default</code></p><h3>Add NetApp SAN new default route</h3><p><code>route add 0.0.0.0 IP_OF_DEFAULT_GW 1</code><br /> For example, if the fedault gateway is 192.168.1.1:<br /> <code>route add 0.0.0.0 192.168.1.1 1</code><br /> For more information about our SAN support, look at <a href="http://newpush.com/category/tech/netapp/">NetApp SAN</a>.</p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/10/netapp-route-add-default-gateway/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Understanding Business Intelligence</title><link>http://newpush.com/2010/10/understanding-business-intelligence/</link> <comments>http://newpush.com/2010/10/understanding-business-intelligence/#comments</comments> <pubDate>Sun, 24 Oct 2010 02:50:23 +0000</pubDate> <dc:creator>Balazs</dc:creator> <category><![CDATA[Business Intelligence]]></category> <category><![CDATA[Cognos 10]]></category> <category><![CDATA[Data Warehouse]]></category> <category><![CDATA[DB2]]></category> <category><![CDATA[Cognos]]></category> <category><![CDATA[IBM]]></category> <category><![CDATA[IBM Smart Analytic System]]></category> <category><![CDATA[InfoWarehouse]]></category><guid isPermaLink="false">http://newpush.com/?p=733</guid> <description><![CDATA[What is Business Intelligence? From the thread &#8220;My Quest for Understanding Business Intelligence&#8221; this comment was posted by Leslie Dudley: Business Intelligence Background A little off topic perhaps, but as an IT business intelligence worker who was interviewing during the &#8230; <a href="http://newpush.com/2010/10/understanding-business-intelligence/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h1>What is Business Intelligence?</h1><p>From the thread &#8220;<a rel=nofollow href="http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&#038;discussionID=20953097&#038;gid=40057&#038;commentID=25066661&#038;trk=view_disc">My Quest for Understanding Business Intelligence</a>&#8221; this comment was posted by <a rel=nofollow href="http://www.linkedin.com/in/lesliedudley">Leslie Dudley</a>:</p><h2>Business Intelligence Background</h2><blockquote><p>A little off topic perhaps, but as an IT business intelligence worker who was interviewing during the economic downturn, I have a slightly different perspective. First, I found myself to be fortunate to be in one of the few growth fields. One of the reasons that the large consulting firms have been investing and focusing on the Business Intelligence field is because it was the first area to show growth activity during the most recent recession.</p></blockquote><h3>Business Intelligence and Technology</h3><blockquote><p>My other slightly off topic point is that the resurgence of interest in Business Intelligence technology is not a fad but the inevitable result of the major shift in media consumption in our culture. In BI IT we are the beneficiaries of the change in how our society consumes media. As a result of both a cultural shift and the recession, media spend moved from traditional to digital. The effect has been the rapidly growing influx of big data that makes it possible to measure the impact of the new media marketing &#8211; digital advertising, email, search, social media, site metrics, engagement.</p></blockquote><h3>Business Intelligence and Culture</h3><blockquote><p>The cultural shift has changed the context of business intelligence. No longer can spreadsheets and MS Access databases meet the needs of the business to identify actionable insights from data. The challenge of handling the pedabytes of data being generated by multiple sources is one that IT data warehousing workers are uniquely qualified to handle. The growth of business intelligence is not a fad, nor a recognition of IT, it is the ripple effect of the disruptive innovation going in technology, digital media and culture at large.</p></blockquote><h2>Business Intelligence in Context</h2><blockquote><p>I do agree that business intelligence is a business process. And I do agree that technology workers are being called on to meet the challenges of BI. But I don&#8217;t see a &#8216;BI Movement&#8217;. I see a broad cultural shift in the way we consume data and media.</p><p>Technologists with experience in handling and making sense of big data are rising to the challenge, and many others are trying to get on board a growth industry. Yes, many people want to learn more about the technology for managing and analyzing big data from disparate sources. It is at this point in time a growth field.</p><p>But the impetus is not BI technology: the movement changing the face and players in BI is not BI technology. We are downstream from more significant cultural shifts being played out by the success of disruptive innovations &#8211; google, search analytics, site analytics, ad-serving, social media, entertainment and news delivery. To get an idea of where our industry is heading look forward &#8211; to the semantic web.</p><p>Our role as workers with knowledge of handling and analyzing disparate, big data will grow and the opportunities will be in understanding semantic data, unstructured data and relationships. Marketing is moving ahead quickly now due to being nimble, fast and flush. Academia is lumbering forward with complex concepts, ontologies and methodologies. We are feeling the early rumblings of what will happen when the two begin intersecting.</p></blockquote><p>Posted on <a rel=nofollow href="http://linkedin.com">LinkedIn</a> by <a rel=nofollow href="http://www.linkedin.com/in/lesliedudley">Leslie Dudley</a>, member of the Business Intelligence Professionals group.   More articles on <a href="/category/services/business-intelligence/">Business Intelligence</a>&#8230;</p><p><a href="http://newpush.com/2010/10/understanding-business-intelligence/isas-innovation_530x150/" rel="attachment wp-att-738"><img src="http://newpush.com/wp-content/uploads/2010/10/isas-innovation_530x150.jpg?9d7bd4" alt="Business Intelligence with IBM Smart Analytic Systems" title="IBM Smart Analytic Systems" width="530" height="150" class="alignnone size-full wp-image-738" /></a></p> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/10/understanding-business-intelligence/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Installing Informix IDS 11.x on Mac OS X</title><link>http://newpush.com/2010/09/installing-informix-ids-11-x-on-mac-os-x/</link> <comments>http://newpush.com/2010/09/installing-informix-ids-11-x-on-mac-os-x/#comments</comments> <pubDate>Mon, 20 Sep 2010 06:31:52 +0000</pubDate> <dc:creator>Pete</dc:creator> <category><![CDATA[DB2]]></category> <category><![CDATA[Java]]></category> <category><![CDATA[Mac OS X]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[IBM Informix]]></category> <category><![CDATA[Informix]]></category> <category><![CDATA[Snow Leopard]]></category><guid isPermaLink="false">http://newpush.com/?p=670</guid> <description><![CDATA[Problem Installing IDS 11 on Mac OS X Solution After installing the server, update the sqlhosts file and replace the default host name by * so that the server listens on all IPs. The sqlhosts file may be names sqlhosts.ol_server_name, &#8230; <a href="http://newpush.com/2010/09/installing-informix-ids-11-x-on-mac-os-x/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h4>Problem</h4><p>Installing IDS 11 on Mac OS X</p><h4>Solution</h4><p>After installing the server, update the <code>sqlhosts</code> file and replace the default host name by <code>*</code> so that the server listens on all IPs.   The <code>sqlhosts</code> file may be names <code>sqlhosts.ol_server_name</code>, and its contents would look like:<br /> <code><br /> ol_server_name onsoctcp * ol_server_name<br /> dr_server_name drsoctcp * dr_server_name<br /> </code></p><h4>References</h4><p>When IDS 11 is officially released, more information will be published here.  For now, the following links have pointers:</p><ul><li><a href="http://practicallyagile.com/2010/01/installing-informix-on-a-mac/">http://practicallyagile.com/2010/01/installing-informix-on-a-mac/</a></li><li><a href="http://www.xmission.com/~dbaresrc/Intro_IDS_on_Mac_v3.pdf">http://www.xmission.com/~dbaresrc/Intro_IDS_on_Mac_v3.pdf</a></li><li><a href="http://www.ibm.com/developerworks/downloads/im/ids/dev.html?S_TACT=105AGX28&#038;S_CMP=DLMAIN">http://www.ibm.com/developerworks/downloads/im/ids/dev.html?S_TACT=105AGX28&#038;S_CMP=DLMAIN</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://newpush.com/2010/09/installing-informix-ids-11-x-on-mac-os-x/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: newpush.com @ 2012-02-09 23:00:09 by W3 Total Cache -->
