<?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>Etiket &#187; MySQL &#187; Ahmet Bolu</title>
	<atom:link href="https://ahmetbolu.com/etiket/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>https://ahmetbolu.com/etiket/mysql/</link>
	<description>Web Hizmetleri » Ahmet Bolu</description>
	<lastBuildDate>Sat, 28 May 2022 13:06:28 +0000</lastBuildDate>
	<language>tr</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://ahmetbolu.com/wp-content/uploads/2015/08/cropped-favicon-ahmetbolu-ipad-32x32.png</url>
	<title>Etiket &#187; MySQL &#187; Ahmet Bolu</title>
	<link>https://ahmetbolu.com/etiket/mysql/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Veritabanı MariaDB 10.3 Sürümüne Güncelleme &#8211; Centos 7</title>
		<link>https://ahmetbolu.com/veritabani-mariadb-10-3-surumune-guncelleme/</link>
					<comments>https://ahmetbolu.com/veritabani-mariadb-10-3-surumune-guncelleme/#respond</comments>
		
		<dc:creator><![CDATA[Ahmet Bolu]]></dc:creator>
		<pubDate>Tue, 09 Jun 2020 19:32:37 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Nasıl Yapılır]]></category>
		<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[MySQL]]></category>
		<guid isPermaLink="false">https://www.ahmetbolu.com/?p=1130</guid>

					<description><![CDATA[<p>CentOS / RHEL 7 ve Debian Sistemlerinde varsayılan olarak gelen eski sürüm MariaDB 5.5&#8217;ten MariaDB 10.3&#8217;e Yükseltme işlemini adım adım güncelleme / yükseltme işlemlerini yapıyoruz. Burada sunucunuzda MariaDB 5.x kurulu (tahminen 5.5 nadiren 5.1 ) olduğunu ve sizin linux sistemlerde belli bir teknik altyapıya sahip olduğunuzu varsayıyoruz. İşlem adımlarını sırayle ve dikkatle uygulayınız. Olası aksi &#8230;</p>
<p>Sonrası <a href="https://ahmetbolu.com/veritabani-mariadb-10-3-surumune-guncelleme/">Veritabanı MariaDB 10.3 Sürümüne Güncelleme &#8211; Centos 7</a> <a href="https://ahmetbolu.com">Ahmet Bolu</a> ilk ortaya çıktı.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" class="alignnone size-full wp-image-1128" src="https://ahmetbolu.com/wp-content/uploads/2020/06/mariadb-mysql-guncelleme.jpg" alt="mariadb-mysql-guncelleme" width="1920" height="1080" srcset="https://ahmetbolu.com/wp-content/uploads/2020/06/mariadb-mysql-guncelleme.jpg 1920w, https://ahmetbolu.com/wp-content/uploads/2020/06/mariadb-mysql-guncelleme-569x320.jpg 569w, https://ahmetbolu.com/wp-content/uploads/2020/06/mariadb-mysql-guncelleme-1067x600.jpg 1067w, https://ahmetbolu.com/wp-content/uploads/2020/06/mariadb-mysql-guncelleme-284x160.jpg 284w, https://ahmetbolu.com/wp-content/uploads/2020/06/mariadb-mysql-guncelleme-768x432.jpg 768w, https://ahmetbolu.com/wp-content/uploads/2020/06/mariadb-mysql-guncelleme-1536x864.jpg 1536w" sizes="(max-width: 1920px) 100vw, 1920px" /></p>
<p>CentOS / RHEL 7 ve Debian Sistemlerinde varsayılan olarak gelen eski sürüm MariaDB 5.5&#8217;ten MariaDB 10.3&#8217;e Yükseltme işlemini adım adım güncelleme / yükseltme işlemlerini yapıyoruz.</p>
<blockquote><p>Burada sunucunuzda MariaDB 5.x kurulu (tahminen 5.5 nadiren 5.1 ) olduğunu ve sizin linux sistemlerde belli bir teknik altyapıya sahip olduğunuzu varsayıyoruz. İşlem adımlarını sırayle ve dikkatle uygulayınız. Olası aksi bir durumda sorumluluk size aittir.</p></blockquote>
<p>İlk olarak  <strong>SSH</strong> ile sunucumuza giriş yapalım ve sunucuda yüklü mysql veritabanı sürümünü <strong>mysql -V</strong> komutu ile öğrenelim</p>
<pre><code class="language-bash"># ssh root@sunucu-ip-adresi</code></pre>
<pre><code class="language-bash">[root@bs]~# mysql -V
mysql  Ver 14.14 Distrib 5.1.73, for redhat-linux-gnu (x86_64) using readline 5.1</code></pre>
<p>İşlemlere başlamadan önce bekleyen güncellemeleri yapmak iyi bir alışkanlık ve aşağıdaki komutu uygulayalım.</p>
<pre><code class="language-bash">[root@bs]~# yum update</code></pre>
<p>Olası bir durum için sunucumuzdaki tüm veritabanlarını yedeklemek için aşağıdaki komutu kullanalım.</p>
<pre><code class="language-bash">[root@bs]~# MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysqldump -u admin --all-databases --routines --triggers &gt; /tmp/all-databases.sql</code></pre>
<p>Yukarıdaki komut çalışmaz hata verirse alternatif olarak aşağıdaki komut ile veritabanları dizinini yedekleme amacı ile farklı  bir klasöre kopyalayalım.</p>
<pre><code class="language-bash">[root@bs]~# cp -a /var/lib/mysql/ /var/lib/mysql_backup</code></pre>
<p>MariaDB servisini durduralım.</p>
<pre><code class="language-bash">[root@bs]~# service mariadb stop</code></pre>
<p>Şimdi mariadb-bench gibi ek paketleri kaldıralım.</p>
<pre><code class="language-bash">[root@bs]~# rpm -e mariadb-bench</code></pre>
<p>&nbsp;</p>
<p>Sunucudaki favori editörünüz ile MariaDB deposunu güncelleyelim. (vi ya da nano kullanabilirsiniz)</p>
<pre><code class="language-bash">[root@bs]~# vi /etc/yum.repos.d/maria10-3.repo</code></pre>
<p>Açılan pencerede veri varsa silelim yoksa aşağıdaki kodları ekleyelim ve dosyayı kayıt edip çıkalım.</p>
<pre><code class="language-bash">[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.3/centos7-amd64
gpgkey = https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck = 1</code></pre>
<p>&nbsp;</p>
<p>Aşağıdaki komutu uygulayarak maridb yükseltme işlemini başlatalım.</p>
<pre><code class="language-bash">[root@bs]~# yum -y upgrade maria*</code></pre>
<pre><code class="language-bash">=============================================================================================================================================
 Package                            Arch                       Version                                     Repository                   Size
=============================================================================================================================================
Installing:
 MariaDB-client                     x86_64                     10.3.10-1.el7.centos                        mariadb                      53 M
     replacing  mariadb.x86_64 1:5.5.60-1.el7_5
 MariaDB-compat                     x86_64                     10.3.10-1.el7.centos                        mariadb                     2.8 M
     replacing  mariadb-libs.x86_64 1:5.5.60-1.el7_5
 MariaDB-server                     x86_64                     10.3.10-1.el7.centos                        mariadb                     123 M
     replacing  mariadb-server.x86_64 1:5.5.60-1.el7_5
Installing for dependencies:
 MariaDB-common                     x86_64                     10.3.10-1.el7.centos                        mariadb                     157 k
 
Transaction Summary
=============================================================================================================================================
</code></pre>
<p>Yukarıdaki mesaj içeriğine benzer bir ekran göreceksiniz. İşlemlerin tamamlanmasını bekliyoruz.</p>
<p>&nbsp;</p>
<p>Veritabanı tablolarını yeni versiyona göre uyarlayalım.</p>
<pre><code class="language-bash">[root@bs]~# MYSQL_PWD=`cat /etc/psa/.psa.shadow` mysql_upgrade -uadmin</code></pre>
<p>Şimdi çalışan MariaDB servisini aşağıdaki komut ile yeniden başlatalım.</p>
<pre><code class="language-bash">[root@bs]~# systemctl restart mariadb</code></pre>
<p>En son olarak MariaDB son versiyonunu kontrol edelim:</p>
<pre><code class="language-bash">[root@bs ~]# mysql -V
mysql  Ver 15.1 Distrib 10.3.23-MariaDB, for Linux (x86_64) using readline 5.1</code></pre>
<p>&nbsp;</p>
<p>Veritabanı sunucumuzun MariaDB 5.1, MariaDB 5.5 ten MariaDB 10.3 sürümüne yükseltme işlemi başarı ile gerçekleşmiştir.</p>
<p>&nbsp;</p>
<p>Sonrası <a href="https://ahmetbolu.com/veritabani-mariadb-10-3-surumune-guncelleme/">Veritabanı MariaDB 10.3 Sürümüne Güncelleme &#8211; Centos 7</a> <a href="https://ahmetbolu.com">Ahmet Bolu</a> ilk ortaya çıktı.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ahmetbolu.com/veritabani-mariadb-10-3-surumune-guncelleme/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Wamp server ile localhost kurulumu</title>
		<link>https://ahmetbolu.com/wamp-server-ile-localhost-kurulumu/</link>
					<comments>https://ahmetbolu.com/wamp-server-ile-localhost-kurulumu/#respond</comments>
		
		<dc:creator><![CDATA[Ahmet Bolu]]></dc:creator>
		<pubDate>Mon, 27 May 2013 10:29:42 +0000</pubDate>
				<category><![CDATA[Nasıl Yapılır]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Yazılım]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[localhost]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sanal sunucu]]></category>
		<category><![CDATA[wamp]]></category>
		<category><![CDATA[wampserver]]></category>
		<category><![CDATA[windsows]]></category>
		<guid isPermaLink="false">http://localhost/wordpress/index.php/2013/05/27/wamp-server-ile-localhost-kurulumu/</guid>

					<description><![CDATA[<p>WAMP, Windows işletim sistemi üzerinde Apache, MySQL ve PHP kurulumunu bir arada sunan bir tümleşik sistem yazılımıdır. Kurulumları otomatik yaptığı gibi açık kaynak olarak geliştirilen bu sistemin düzenlenmesi de mümkündür. WAMP ismi; Windows, Apache, MySQL, PHP platformlarının baş harflerinden gelmektedir. Linux&#8217;ta kullanılabilen LAMP&#8217;in Windows alternatifi olarak da adlandırılabilir.</p>
<p>Sonrası <a href="https://ahmetbolu.com/wamp-server-ile-localhost-kurulumu/">Wamp server ile localhost kurulumu</a> <a href="https://ahmetbolu.com">Ahmet Bolu</a> ilk ortaya çıktı.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-426" src="https://ahmetbolu.com/wp-content/uploads/2013/05/wamserver-e1443711030565.jpg" alt="wamserver" width="660" height="330" srcset="https://ahmetbolu.com/wp-content/uploads/2013/05/wamserver-e1443711030565.jpg 660w, https://ahmetbolu.com/wp-content/uploads/2013/05/wamserver-e1443711030565-640x320.jpg 640w, https://ahmetbolu.com/wp-content/uploads/2013/05/wamserver-e1443711030565-320x160.jpg 320w" sizes="auto, (max-width: 660px) 100vw, 660px" /></p>
<p>WAMP, Windows işletim sistemi üzerinde Apache, MySQL ve PHP kurulumunu bir arada sunan bir tümleşik sistem yazılımıdır. Kurulumları otomatik yaptığı gibi açık kaynak olarak geliştirilen bu sistemin düzenlenmesi de mümkündür.</p>
<p><strong>WAMP</strong> ismi; <strong>W</strong>indows, <strong>A</strong>pache, <strong>M</strong>ySQL, <strong>P</strong>HP platformlarının baş harflerinden gelmektedir.</p>
<p>Linux&#8217;ta kullanılabilen LAMP&#8217;in Windows alternatifi olarak da adlandırılabilir.</p>
<p><span id="more-78"></span></p>
<div class="su-youtube su-u-responsive-media-yes"><iframe loading="lazy" width="600" height="400" src="https://www.youtube.com/embed/bV1gf7C7MPs?" frameborder="0" allowfullscreen allow="autoplay; encrypted-media; picture-in-picture" title=""></iframe></div>
<p>Sonrası <a href="https://ahmetbolu.com/wamp-server-ile-localhost-kurulumu/">Wamp server ile localhost kurulumu</a> <a href="https://ahmetbolu.com">Ahmet Bolu</a> ilk ortaya çıktı.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ahmetbolu.com/wamp-server-ile-localhost-kurulumu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
