<?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>Kevin deLeon &#124; Web Design and Development &#124; New Orleans, LA &#187; web</title>
	<atom:link href="http://www.kevin-deleon.com/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevin-deleon.com</link>
	<description></description>
	<lastBuildDate>Thu, 02 Feb 2012 04:07:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Tutorial: Installing Bugzilla on Fedora 11 &amp; CentOS 5</title>
		<link>http://www.kevin-deleon.com/2010/07/tutorial-installing-bugzilla-on-fedora-11-centos-5/</link>
		<comments>http://www.kevin-deleon.com/2010/07/tutorial-installing-bugzilla-on-fedora-11-centos-5/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 18:31:09 +0000</pubDate>
		<dc:creator>Kevin deLeon</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.kevin-deleon.com/?p=111</guid>
		<description><![CDATA[So a buddy of mine, Charlie Glisan, was having issues installing Bugzilla on Fedora 11 and CentOS 5 a while back. After hours of strife, and finally getting the software up and running, he decided he would write detailed instructions on how to accomplish the install. He doesn&#8217;t have a blog himself and thought that [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.kevin-deleon.com/wp-content/uploads/2010/07/bugzilla-fly1.jpg" alt="Installing Bugzilla" /></p>
<p>So a buddy of mine, <a href="http://www.linkedin.com/pub/charles-glisan/">Charlie Glisan</a>, was having issues installing Bugzilla on Fedora 11 and CentOS 5 a while back. After hours of strife, and finally getting the software up and running,  he decided he would write detailed instructions on how to accomplish the install.  He doesn&#8217;t have a blog himself and thought that it might be helpful to others out there that are trying to accomplish the same goal to have the instructions available, so he asked if I would like to post the instructions on my blog. <span id="more-111"></span></p>
<p>I am always a fan of finding helpful information out on the interwebs, so I am posting his instructions, verbatim, in hopes that they are helpful to a few struggling souls.  If you have any questions, or find errors, please post them in the comments below and we will try to get to them as quickly as possible.</p>
<h3>Installing Bugzilla on Fedora 11 &amp; CentOS 5</h3>
<p>Log in as root or su:</p>
<pre><code>
$ su
(enter root password)
</code></pre>
<p>For CentOS only, add the EPEL repository (which contains Bugzilla):</p>
<pre><code>
$ rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm
</code></pre>
<p>Install Bugzilla:</p>
<pre><code>
$ yum install bugzilla
</code></pre>
<p>Install MySQL:</p>
<pre><code>
$ yum install mysql-server
</code></pre>
<p>Install Apache:</p>
<pre><code>
$ yum install httpd
</code></pre>
<p>Start the the MySQL service:</p>
<pre><code>
$ /etc/init.d/mysqld start
</code></pre>
<p>Set password for the root user in MySQL:</p>
<pre><code>
$ mysqladmin -u root password {password}
</code></pre>
<p>Log into MySQL:</p>
<pre><code>
$ mysql -u root -p
</code></pre>
<p>Create &#8216;bugs&#8217; user in MySQL:</p>
<pre><code>
mysql&gt; CREATE USER 'bugs'@'localhost' IDENTIFIED BY '{password}';
</code></pre>
<p>Create &#8216;bugs&#8217; database in MySQL:</p>
<pre><code>
mysql&gt; CREATE DATABASE bugs;
</code></pre>
<p>Grant privileges to &#8216;bugs&#8217; user:</p>
<pre><code>
mysql&gt; GRANT ALL ON bugs.* TO 'bugs'@'localhost';
</code></pre>
<p>Run checksetup.pl to check modules and to create a new copy of localconfig:</p>
<pre><code>
$ /usr/share/bugzilla/./checksetup.pl
</code></pre>
<p>Edit your copy of localconfg &#8211; change $db_pass to the password you entered for the MySQL user &#8216;bugs&#8217; earlier:</p>
<pre><code>
$ gedit /etc/bugzilla/localconfig
</code></pre>
<p>$db_pass = &#8216;{password}&#8217;;</p>
<p>Run checksetup.pl again to finish setting up Bugzilla:</p>
<pre><code>
$ /usr/share/bugzilla/./checksetup.pl
</code></pre>
<p>When prompted to do so specify the Bugzilla administrator&#8217;s email address, name, and password.</p>
<p>Start apache:</p>
<pre><code>
$ /etc/init.d/httpd start
</code></pre>
<p>Go to http://localhost/bugzilla/ in a browser and behold.</p>
<p>If, upon a reboot, mysqld and/or httpd are not running, you can add them to the list of services that run at startup:</p>
<pre><code>
$ ntsysv (Or $ /usr/sbin/ntsysv on CentOS)
</code></pre>
<p>Arrow up or down to find mysqld and/or httpd.  Hit the space key to select/deselect the service.  When done, hit Tab to get to the Ok or Cancel buttons.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevin-deleon.com/2010/07/tutorial-installing-bugzilla-on-fedora-11-centos-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Twitter-iffic?</title>
		<link>http://www.kevin-deleon.com/2008/02/twitter-iffic/</link>
		<comments>http://www.kevin-deleon.com/2008/02/twitter-iffic/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 16:32:32 +0000</pubDate>
		<dc:creator>Kevin deLeon</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.kevin-deleon.com/?p=99</guid>
		<description><![CDATA[Well. I joined Twitter, and so far I like it. It’s actually quite an interesting concept really. At first, Twitter seemed like another lame 2.0 app that to me really had no reason to exist. I mean who in their right mind wants everyone to know what they are doing at any given second, and [...]]]></description>
			<content:encoded><![CDATA[<p>Well. I joined <a href="http://twitter.com/kevindeleon">Twitter</a>, and so far I like it. It’s actually quite an interesting concept really.</p>
<p>At first, Twitter seemed like another lame 2.0 app that to me really had no reason to exist. I mean who in their right mind wants everyone to know what they are doing at any given second, and on top of that, you actually have to be narcissistic enough to think anyone actually cares. Well, I was right, but I was also very wrong.<span id="more-99"></span></p>
<p>Twitter is quite the growing phenomenon, and it’s hard to explain. I guess it really isn’t any different than IM’ng, blogging, or social networking when you get down to it, but Twitter is quicker. It allows you to jot down a quick note, and everyone you are friends with can see it at the same time, almost instantly…And that’s what we are all looking for in this Web 2.0 world right? Instant information. Twitter forces you to be concise (140 characters or less), and for some, including myself, that can be hard to do.</p>
<p>As for features, Twitter is pretty streamline, and to the point. Phone, and IM integration is very nice, and the ability to make things private (for friends only) or public is also nice for those who are a bit protective about their goings on. A bit of advice…If you don’t have unlimited texting on your phone…just say “NO!!” to the Phone option.</p>
<p>As for uses, there are more and more springing up all the time. Businesses are using it to keep up with what their employees are doing, news agencies are using it, etc… As for me, I just use it as a quicker form of IM’ing, mini-blogging, link passing, and for comic relief. The people I tend to follow are wise asses ;)</p>
<p>Twitter also seems to be quite the ‘Equalizer,’ so to speak. What I mean by that is, I am following quite a few people I highly respect in the industry, and while I have never met these people, I feel like if we meet in person, I won’t feel like I have never met them. Odd really…but true. <a href="http://www.w3conversions.com">Stephanie Sullivan of W3Conversions</a>, does a better job of explaining this than I do <a href="http://communitymx.com/blog/index.cfm?newsid=902&#038;blogger=15">over at her blog</a>, and also has a pretty cool new users tutorial that goes along with it.</p>
<p>Well, that’s about it really. While I don’t think Twitter is a huge Godsend of an application…it is pretty cool. I definitely will continue using it, and if you want to follow me (I have no idea why…but I am pretty damn funny!), http://twitter.com/kdeleon</p>
<p>Happy Twittering…(That’s for <a href="http://abraham.dizandat.com/">Abraham</a>&#8230;he HATES it when I turn things into verbs).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevin-deleon.com/2008/02/twitter-iffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

