<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>CentOS | www.kabosu.info</title>
	<atom:link href="https://www.kabosu.info/tag/centos/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kabosu.info</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 15 May 2010 12:57:44 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">178840153</site>	<item>
		<title>CentOS5.5 リリース</title>
		<link>https://www.kabosu.info/2010/05/centos5-5-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/</link>
					<comments>https://www.kabosu.info/2010/05/centos5-5-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/#comments</comments>
		
		<dc:creator><![CDATA[shinn]]></dc:creator>
		<pubDate>Sat, 15 May 2010 12:54:20 +0000</pubDate>
				<category><![CDATA[OS]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.kabosu.info/?p=310</guid>

					<description><![CDATA[<p>CentOS5.5がリリースされました。 ReleaseNotes http://wiki.centos.org/Manuals/ReleaseNotes/CentOS5.5 いろいろと、アップデートされているようですね...</p>
The post <a href="https://www.kabosu.info/2010/05/centos5-5-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/">CentOS5.5 リリース</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></description>
										<content:encoded><![CDATA[<p>CentOS5.5がリリースされました。</p>
<p><b>ReleaseNotes</b><br />
<a href="http://wiki.centos.org/Manuals/ReleaseNotes/CentOS5.5" target="_blank">http://wiki.centos.org/Manuals/ReleaseNotes/CentOS5.5</a></p>
<p>いろいろと、アップデートされているようですねー。<br />
テスト環境のCentOS5.4をアップデートしてみましたが、今のところ問題は無いようです。</p>The post <a href="https://www.kabosu.info/2010/05/centos5-5-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/">CentOS5.5 リリース</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kabosu.info/2010/05/centos5-5-%e3%83%aa%e3%83%aa%e3%83%bc%e3%82%b9/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">310</post-id>	</item>
		<item>
		<title>CentOS5 : PHP5.2.11 インストール</title>
		<link>https://www.kabosu.info/2010/02/centos-php5-2-11/</link>
					<comments>https://www.kabosu.info/2010/02/centos-php5-2-11/#respond</comments>
		
		<dc:creator><![CDATA[shinn]]></dc:creator>
		<pubDate>Mon, 01 Feb 2010 15:38:40 +0000</pubDate>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.kabosu.info/?p=275</guid>

					<description><![CDATA[<p>remiは、PHP5.3系になってしまったので、PHP5.2系をインストールしたい場合 Utter Ramblings のリポジトリを追加してインストールする。 リポジトリの追加方法 GPG-KEYインポート リポジトリ...</p>
The post <a href="https://www.kabosu.info/2010/02/centos-php5-2-11/">CentOS5 : PHP5.2.11 インストール</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></description>
										<content:encoded><![CDATA[<p>remiは、PHP5.3系になってしまったので、PHP5.2系をインストールしたい場合<br />
Utter Ramblings のリポジトリを追加してインストールする。</p>
<p><strong>リポジトリの追加方法</strong><br />
GPG-KEYインポート</p>
<pre class="brush: bash; title: ; notranslate">rpm --import http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka</pre>
<p>リポジトリを追加</p>
<pre class="brush: bash; title: ; notranslate">vi /etc/yum.repos.d/utterramblings.repo
-------------------------------------------------
&#x5B;utterramblings]
name=Jason’s Utter Ramblings Repo
baseurl=http://www.jasonlitka.com/media/EL$releasever/$basearch/
enabled=0
gpgcheck=1
gpgkey=http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka
-------------------------------------------------
&#x5B;:wq]←保存
</pre>
<p>yumで追加したリポジトリを有効にしてphpをアップデートし、httpdを再起動。</p>
<pre class="brush: bash; title: ; notranslate">yum -y --enablerepo=utterramblings update php*
/etc/rc.d/init.d/httpd restart</pre>The post <a href="https://www.kabosu.info/2010/02/centos-php5-2-11/">CentOS5 : PHP5.2.11 インストール</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kabosu.info/2010/02/centos-php5-2-11/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">275</post-id>	</item>
		<item>
		<title>Twitter クローン構築 &#8211; その1</title>
		<link>https://www.kabosu.info/2009/01/twitter-%e3%82%af%e3%83%ad%e3%83%bc%e3%83%b3%e6%a7%8b%e7%af%89-%e3%81%9d%e3%81%ae1/</link>
					<comments>https://www.kabosu.info/2009/01/twitter-%e3%82%af%e3%83%ad%e3%83%bc%e3%83%b3%e6%a7%8b%e7%af%89-%e3%81%9d%e3%81%ae1/#comments</comments>
		
		<dc:creator><![CDATA[shinn]]></dc:creator>
		<pubDate>Tue, 20 Jan 2009 07:11:53 +0000</pubDate>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[オープンソース]]></category>
		<guid isPermaLink="false">https://www.kabosu.info/?p=184</guid>

					<description><![CDATA[<p>巷では、Twitterがそれなりに流行っているらしいです。 Twitterとは、ブログとチャットを足して2で割ったようなサービスとのことですが、今回は、そのTwitterクローンサービスをGPLのOSSで、社内、イントラ...</p>
The post <a href="https://www.kabosu.info/2009/01/twitter-%e3%82%af%e3%83%ad%e3%83%bc%e3%83%b3%e6%a7%8b%e7%af%89-%e3%81%9d%e3%81%ae1/">Twitter クローン構築 – その1</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></description>
										<content:encoded><![CDATA[<p>巷では、<a rel="sexylightbox" href="http://twitter.com/?TB_iframe=true&amp;height=600&amp;width=800">Twitter</a>がそれなりに流行っているらしいです。<br />
Twitterとは、ブログとチャットを足して2で割ったようなサービスとのことですが、今回は、そのTwitterクローンサービスをGPLのOSSで、社内、イントラ向けに構築してみましょう。<br />
また、Jabberサーバも同時に構築し、イントラメッセンジャーとTwitter クローンサービスを連携させます。<br />
外部から遮断されたイントラ限定サービスとすることで、本家Twitterとは少し違った用途にも使えるかもしれません。</p>
<p><a href="http://ja.wikipedia.org/wiki/Twitter" target="_blank">Wikipedia &#8211; Twitter</a><br />
<a href="http://ja.wikipedia.org/wiki/Jabber" target="_blank">Wikipedia &#8211; Jabber</a></p>
<p>イントラメッセンジャーサーバとしてGPLのXMPPサーバ「<a rel="sexylightbox" href="http://www.ejabberd.im/?TB_iframe=true&amp;height=600&amp;width=800">ejabberd</a>」と、<br />
同じくGPLで、TwitterクローンのOSS「<a rel="sexylightbox" href="http://sites.google.com/site/shovelx/about/?TB_iframe=true&amp;height=600&amp;width=800">しゃべる</a>」をCentOS5に導入してみます。<br />
構築方法は、また後日書きます。</p>The post <a href="https://www.kabosu.info/2009/01/twitter-%e3%82%af%e3%83%ad%e3%83%bc%e3%83%b3%e6%a7%8b%e7%af%89-%e3%81%9d%e3%81%ae1/">Twitter クローン構築 – その1</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kabosu.info/2009/01/twitter-%e3%82%af%e3%83%ad%e3%83%bc%e3%83%b3%e6%a7%8b%e7%af%89-%e3%81%9d%e3%81%ae1/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">184</post-id>	</item>
		<item>
		<title>CentOS5 phpMyAdminのインストール</title>
		<link>https://www.kabosu.info/2009/01/centos5-phpmyadmin%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/</link>
					<comments>https://www.kabosu.info/2009/01/centos5-phpmyadmin%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/#respond</comments>
		
		<dc:creator><![CDATA[shinn]]></dc:creator>
		<pubDate>Mon, 19 Jan 2009 04:17:38 +0000</pubDate>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.kabosu.info/?p=166</guid>

					<description><![CDATA[<p>CentOS5にPHP5.2.8とMySQL5.1.30 上記記事からのつづき。 phpMyAdminのインストールと基本設定のメモ書きです。 php-mcrypt と svnからチェックアウトするためにsubversi...</p>
The post <a href="https://www.kabosu.info/2009/01/centos5-phpmyadmin%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/">CentOS5 phpMyAdminのインストール</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></description>
										<content:encoded><![CDATA[<p><a title="1つ古い記事" href="../2009/01/centos5%e3%81%abphp528%e3%81%a8mysql5130/">CentOS5にPHP5.2.8とMySQL5.1.30</a></p>
<p>上記記事からのつづき。</p>
<p>phpMyAdminのインストールと基本設定のメモ書きです。</p>
<p>php-mcrypt と svnからチェックアウトするためにsubversionをインストール。<br />
expectは、mkpasswdコマンドで使用。</p>
<blockquote><p><code>yum -y --enablerepo=remi,epel,rpmforge install php-mcrypt<br />
yum -y install subversion<br />
yum -y install expect</code></p></blockquote>
<p>phpMyAdminのstableをsvnよりチェックアウトして任意のディレクトリに移動</p>
<blockquote><p><code>svn checkout https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/tags/STABLE/phpMyAdmin phpmyadmin<br />
mv phpmyadmin/ /var/www/</code></p></blockquote>
<p><span id="more-166"></span></p>
<p>基本設定</p>
<blockquote><p><code>cp /var/www/phpmyadmin/config.sample.inc.php /var/www/phpmyadmin/config.inc.php<br />
chmod 660 /var/www/phpmyadmin/config.inc.php</p>
<p>mkpasswd -l 46　←　ランダムな文字列を作成<br />
nuozapo7Lvdaruqb0,mgenheptmhwlnbhfrGiyoysjabis</p>
<p>vi /var/www/phpmyadmin/config.inc.php<br />
------------------------------------------------------<br />
$cfg['blowfish_secret'] = 'nuozapo7Lvdaruqb0,mgenheptmhwlnbhfrGiyoysjabis';<br />
$cfg['Lang']     = 'ja-utf-8';<br />
------------------------------------------------------</p>
<p>chown -R root.apache /var/www/phpmyadmin/</p>
<p>vi /etc/httpd/conf.d/phpmyadmin.conf<br />
------------------------------------------------------<br />
Alias /phpmyadmin /var/www/phpmyadmin<br />
Order deny,allow<br />
Deny from all<br />
Allow from 127.0.0.1<br />
Allow from 192.168.1</p>
<p>------------------------------------------------------</p>
<p>/etc/rc.d/init.d/httpd restart</code></p></blockquote>The post <a href="https://www.kabosu.info/2009/01/centos5-phpmyadmin%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/">CentOS5 phpMyAdminのインストール</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kabosu.info/2009/01/centos5-phpmyadmin%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">166</post-id>	</item>
		<item>
		<title>CentOS5にPHP5.2.8とMySQL5.1.30</title>
		<link>https://www.kabosu.info/2009/01/centos5%e3%81%abphp528%e3%81%a8mysql5130/</link>
					<comments>https://www.kabosu.info/2009/01/centos5%e3%81%abphp528%e3%81%a8mysql5130/#comments</comments>
		
		<dc:creator><![CDATA[shinn]]></dc:creator>
		<pubDate>Mon, 19 Jan 2009 03:54:53 +0000</pubDate>
				<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>
		<guid isPermaLink="false">https://www.kabosu.info/?p=144</guid>

					<description><![CDATA[<p>※Remiは、PHP5.3系になりました。PHP5.2系をインストールする場合は、以下をご覧ください。 CentOS5 : PHP5.2.11 インストール phpMyAdminの最新stable版が、PHP5.1.6で...</p>
The post <a href="https://www.kabosu.info/2009/01/centos5%e3%81%abphp528%e3%81%a8mysql5130/">CentOS5にPHP5.2.8とMySQL5.1.30</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></description>
										<content:encoded><![CDATA[<p><span style="color: #ff0000;">※Remiは、PHP5.3系になりました。PHP5.2系をインストールする場合は、以下をご覧ください。</span><br />
<a href="https://www.kabosu.info/2010/02/centos-php5-2-11/">CentOS5 : PHP5.2.11 インストール</a><br />
<br />
phpMyAdminの最新stable版が、PHP5.1.6で動作しない。。。</p>
<p>ソースからインストールだと、パッケージ管理が面倒くさくなるので、</p>
<p>Les RPM de Remi</p>
<p>Fedora Extra Package for Enterprise Linux  (epel)</p>
<p>DAG (rpmforge)</p>
<p>上記、リポジトリを追加して yumで、PHPと、ついでにMySQLもアップデートする事にした。</p>
<p><span id="more-144"></span></p>
<p><strong>リポジトリの追加</strong><br />
GPG-KEYのインポート。</p>
<blockquote><p><code>rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi<br />
rpm --import http://ftp.riken.jp/pub/Linux/fedora/epel/RPM-GPG-KEY-EPEL<br />
rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt</code></p></blockquote>
<p>32bit , 64bit 確認</p>
<blockquote><p><code>uname -i<br />
i386 or x86_64</code></p></blockquote>
<p>32bit(i386)の場合</p>
<blockquote><p><code>wget http://rpms.famillecollet.com/el5.i386/remi-release-5-4.el5.remi.noarch.rpm<br />
wget http://ftp.riken.jp/pub/Linux/fedora/epel/5/i386/epel-release-5-2.noarch.rpm<br />
wget http://dag.wieers.com/rpm/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.i386.rpm<br />
rpm -Uvh remi-release-5-4.el5.remi.noarch.rpm epel-release-5-2.noarch.rpm rpmforge-release-0.3.6-1.el5.rf.i386.rpm</code></p></blockquote>
<p>64bit(x86_64)の場合</p>
<blockquote><p><code>wget http://rpms.famillecollet.com/el5.x86_64/remi-release-5-4.el5.remi.noarch.rpm<br />
wget http://ftp.riken.jp/pub/Linux/fedora/epel/5/x86_64/epel-release-5-2.noarch.rpm<br />
wget http://dag.wieers.com/rpm/packages/rpmforge-release/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm<br />
rpm -Uvh remi-release-5-4.el5.remi.noarch.rpm epel-release-5-2.noarch.rpm rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm</code></p></blockquote>
<p>追加したリポジトリはデフォルトで無効とする。</p>
<blockquote><p><code>vi /etc/yum.repos.d/epel.repo<br />
-------------------------------------------------<br />
[epel]<br />
enabled=1<br />
↓<br />
enabled=0<br />
-------------------------------------------------</code></p></blockquote>
<p>php , mysqlのアップデートを実行しhttpdとmysqldを再起動。</p>
<blockquote><p><code>yum -y --enablerepo=remi,epel,rpmforge update php* mysql*<br />
/etc/rc.d/init.d/httpd restart<br />
/etc/rc.d/init.d/mysqld restart</code></p></blockquote>
<p><a href="../2009/01/centos5-phpmyadmin%e3%81%ae%e3%82%a4%e3%83%b3%e3%82%b9%e3%83%88%e3%83%bc%e3%83%ab/">CentOS5 phpMyAdminのインストール に続く<br />
</a></p>The post <a href="https://www.kabosu.info/2009/01/centos5%e3%81%abphp528%e3%81%a8mysql5130/">CentOS5にPHP5.2.8とMySQL5.1.30</a> first appeared on <a href="https://www.kabosu.info">www.kabosu.info</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kabosu.info/2009/01/centos5%e3%81%abphp528%e3%81%a8mysql5130/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">144</post-id>	</item>
	</channel>
</rss>
