<?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>Yusuf Ozturk &#187; Hosting &amp; IIS7</title>
	<atom:link href="http://www.yusufozturk.info/category/iis7/feed" rel="self" type="application/rss+xml" />
	<link>http://www.yusufozturk.info</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 30 Jan 2012 20:26:40 +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>How to dump and import MySQL database via command line?</title>
		<link>http://www.yusufozturk.info/iis7/how-to-dump-and-import-mysql-database-via-command-line.html</link>
		<comments>http://www.yusufozturk.info/iis7/how-to-dump-and-import-mysql-database-via-command-line.html#comments</comments>
		<pubDate>Tue, 27 Dec 2011 07:43:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[mysql database dump]]></category>
		<category><![CDATA[mysql database import]]></category>
		<category><![CDATA[mysql database restore]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3849</guid>
		<description><![CDATA[If you need to move your MySQL database from one server to another, you can use the following codes. Dump: mysqldump -u root -pPASSWORD DatabaseName &#62; dbbackup.sql Import: mysql -u root -pPASSWORD DatabaseName &#60; dbbackup.sql You can do this process live.]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/how-to-dump-and-import-mysql-database-via-command-line.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to drop all tables of the MySQL database?</title>
		<link>http://www.yusufozturk.info/iis7/how-to-drop-all-tables-of-the-mysql-database.html</link>
		<comments>http://www.yusufozturk.info/iis7/how-to-drop-all-tables-of-the-mysql-database.html#comments</comments>
		<pubDate>Tue, 27 Dec 2011 07:15:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[mysql drop all tables]]></category>
		<category><![CDATA[mysql drop database]]></category>
		<category><![CDATA[mysql drop tables]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3840</guid>
		<description><![CDATA[There is no quick way to drop all tables of a MySQL database. You can just drop the database instead. But if you just want to drop all tables, you can use following codes. mysql -u root -pPASSWORD DatabaseName -e &#34;show tables&#34; &#124; grep -v Tables_in &#124; grep -v &#34;+&#34; &#124; \gawk '{print &#34;drop table [...]]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/how-to-drop-all-tables-of-the-mysql-database.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to show arp table on Fortigate?</title>
		<link>http://www.yusufozturk.info/iis7/how-to-show-arp-table-on-fortigate.html</link>
		<comments>http://www.yusufozturk.info/iis7/how-to-show-arp-table-on-fortigate.html#comments</comments>
		<pubDate>Mon, 26 Dec 2011 13:59:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[fortigate arp table]]></category>
		<category><![CDATA[fortigate show arp]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3837</guid>
		<description><![CDATA[If you want to see arp table of Fortigate, 1. Login to Fortigate via SSH. 2. Go into VDOM (if you have) config VDOM edit CustomerVDOM01 3. Use the following command to see arp table. get system arp Have fun!]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/how-to-show-arp-table-on-fortigate.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error: Host &#8216;localhost&#8217; is not allowed to connect to this MySQL server</title>
		<link>http://www.yusufozturk.info/windows-server/error-host-localhost-is-not-allowed-to-connect-to-this-mysql-server.html</link>
		<comments>http://www.yusufozturk.info/windows-server/error-host-localhost-is-not-allowed-to-connect-to-this-mysql-server.html#comments</comments>
		<pubDate>Tue, 25 Oct 2011 09:53:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[localhost is not allowed]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql root connection]]></category>
		<category><![CDATA[mysql root problem]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3753</guid>
		<description><![CDATA[You may get this error when you try to access MySQL server on Windows. Host &#8216;localhost&#8217; is not allowed to connect to this MySQL server. Host &#8217;127.0.0.1&#8242; is not allowed to connect to this MySQL server. Solution: 1. Stop MySQL service (from services.msc) 2. Create a text file in C:\ called &#8220;init.txt&#8221;. Paste the following [...]]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/windows-server/error-host-localhost-is-not-allowed-to-connect-to-this-mysql-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing PHP 5.3 and MySQL on Windows Server 8</title>
		<link>http://www.yusufozturk.info/iis7/installing-php-5-3-and-mysql-on-windows-server-8.html</link>
		<comments>http://www.yusufozturk.info/iis7/installing-php-5-3-and-mysql-on-windows-server-8.html#comments</comments>
		<pubDate>Sun, 25 Sep 2011 16:13:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[mysql on iis8]]></category>
		<category><![CDATA[php on iis8]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3671</guid>
		<description><![CDATA[You can use WebPI 3.0 for installing PHP 5.3 and MySQL on Windows Server 8. 1. You can choose PHP 5.3.8 and URL Rewrite from WebPI. 2. Installation completed without problem. 3. I also choose MySQL for database support. 4. Installation completed without problem. WebPI doesn&#8217;t work to install IIS on Windows 8 but you [...]]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/installing-php-5-3-and-mysql-on-windows-server-8.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 8 için tavsiye edilen IIS8 konfigurasyonu</title>
		<link>http://www.yusufozturk.info/iis7/iis8-recommended-configuration-for-windows-server-8.html</link>
		<comments>http://www.yusufozturk.info/iis7/iis8-recommended-configuration-for-windows-server-8.html#comments</comments>
		<pubDate>Sun, 25 Sep 2011 15:24:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[iis8]]></category>
		<category><![CDATA[iis8 on windows 8]]></category>
		<category><![CDATA[windows server 8]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3649</guid>
		<description><![CDATA[I&#8217;ll show you how to install IIS8 recommended configuration on Windows Server 8. 1. Go to Server Manager, click &#8220;Manage&#8221; and click &#8220;Add Roles and Features&#8221;. 2. Select &#8220;Role-based or Feature-based installation&#8221; 3. Choose your server or server pool. 4. Choose &#8220;Web Server (IIS)&#8221;. 5. Click to frameworks if they are not installed. 6. Skip [...]]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/iis8-recommended-configuration-for-windows-server-8.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parallels Plesk Panel 10 Surumleri ve Komponentleri</title>
		<link>http://www.yusufozturk.info/iis7/parallels-plesk-panel-10-releases-and-components.html</link>
		<comments>http://www.yusufozturk.info/iis7/parallels-plesk-panel-10-releases-and-components.html#comments</comments>
		<pubDate>Sat, 04 Jun 2011 08:35:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[parallels plesk panel 10 components]]></category>
		<category><![CDATA[parallels small business panel components]]></category>
		<category><![CDATA[plesk 10 components]]></category>
		<category><![CDATA[plesk 10 components list]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3225</guid>
		<description><![CDATA[Merhaba, Aşağıda Parallels Plesk Panel 10 sürüm ve komponent bilgilerini bulabilirsiniz. parallels_installer.exe --show-all-releases panel PANEL_10_2_0_WIN (Parallels Plesk Panel 10.2.0) panel PANEL_10_1_1_WIN (Parallels Plesk Panel 10.1.1) panel PANEL_10_1_0_WIN (Parallels Plesk Panel 10.1.0) panel PANEL_10_0_1_WIN (Parallels Plesk Panel 10.0.1) panel PANEL_10_0_0_WIN (Parallels Plesk Panel 10.0.0) ppsmbe PPSMBE_10_0_0_WIN (Parallels Small Business Panel 10.0) ppsmbe PPSMBE_10_1_0_WIN (Parallels Small Business [...]]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/parallels-plesk-panel-10-releases-and-components.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Juniper SSG20 üzerinde NAT tanımı yapma</title>
		<link>http://www.yusufozturk.info/iis7/juniper-ssg20-uzerinde-nat-tanimi-yapma.html</link>
		<comments>http://www.yusufozturk.info/iis7/juniper-ssg20-uzerinde-nat-tanimi-yapma.html#comments</comments>
		<pubDate>Mon, 30 May 2011 10:28:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[juniper nat tanımlama]]></category>
		<category><![CDATA[juniper ssg nat]]></category>
		<category><![CDATA[juniper ssg20]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3220</guid>
		<description><![CDATA[Merhaba, Juniper SSG20 üzerinde NAT tanımı yapabilmek için öncelikle; Network > Interfaces > List altına girdikten sonra, Untrusted network&#8217;e gelip &#8220;Edit&#8221; linkine tıklıyoruz. Sonrasında yukarıda görülen MIP kısmına geçiş yapınız. Network > Interfaces > Edit > MIP (List) Son olarak eklemiş olduğunuz MIP için Untrust&#8217;tan Trust&#8217;a &#8220;Policy&#8221; tanımlayarak, işlemi tamamlıyoruz.]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/juniper-ssg20-uzerinde-nat-tanimi-yapma.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 and SQL Server 2008 R2 Licensing on Hyper-V</title>
		<link>http://www.yusufozturk.info/iis7/sql-server-2008-and-sql-server-2008-r2-licensing.html</link>
		<comments>http://www.yusufozturk.info/iis7/sql-server-2008-and-sql-server-2008-r2-licensing.html#comments</comments>
		<pubDate>Sun, 29 May 2011 22:09:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[sql licensing]]></category>
		<category><![CDATA[sql r2 licensing]]></category>
		<category><![CDATA[sql server 2008 r2 licensing]]></category>
		<category><![CDATA[sql server licensing]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3210</guid>
		<description><![CDATA[SQL Server 2008 R2 Licensing: “If you license all of the physical processors on the server (one license per physical processor), you may run unlimited instances of the SQL Server software in the following number of OSEs (either physical or virtual):” SQL Server 2008 R2 Datacenter -&#62; Unlimited SQL Server 2008 R2 Enterprise -&#62; Up [...]]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/sql-server-2008-and-sql-server-2008-r2-licensing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replikasyon problemi sonrasında MySQL replikasyonunu yeniden başlatmak</title>
		<link>http://www.yusufozturk.info/iis7/restarting-mysql-replication-after-a-replication-issue.html</link>
		<comments>http://www.yusufozturk.info/iis7/restarting-mysql-replication-after-a-replication-issue.html#comments</comments>
		<pubDate>Tue, 03 May 2011 19:10:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting & IIS7]]></category>
		<category><![CDATA[mysql master slave replication]]></category>
		<category><![CDATA[mysql replication]]></category>
		<category><![CDATA[mysql replication issue]]></category>

		<guid isPermaLink="false">http://www.yusufozturk.info/?p=3070</guid>
		<description><![CDATA[If you face with a MySQL replication issue, you should restart it with command line. First of all, stop MySQL services and replicate latest MySQL data files. After that, you can start services again. Go to Slave and execute: mysql&#62; STOP SLAVE; Query OK, 0 rows affected &#40;0.00 sec&#41; &#160; mysql&#62; FLUSH TABLES WITH READ [...]]]></description>
		<wfw:commentRss>http://www.yusufozturk.info/iis7/restarting-mysql-replication-after-a-replication-issue.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

