<?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>MySQL &#8211; Technical Digit</title>
	<atom:link href="https://technicaldigit.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>https://technicaldigit.com</link>
	<description>We Make Your Digital Dreams True</description>
	<lastBuildDate>Tue, 14 Sep 2021 08:52:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.20</generator>

<image>
	<url>https://technicaldigit.com/wp-content/uploads/2020/05/cropped-tdlogo_150-2-32x32.png</url>
	<title>MySQL &#8211; Technical Digit</title>
	<link>https://technicaldigit.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Install Java, Tomcat, MySQL, phpMyAdmin on Ubuntu 20.04 in GCP/AWS Intance</title>
		<link>https://technicaldigit.com/install-java-tomcat-mysql-on-ubuntu-aws/</link>
					<comments>https://technicaldigit.com/install-java-tomcat-mysql-on-ubuntu-aws/#respond</comments>
		
		<dc:creator><![CDATA[Technical Digit]]></dc:creator>
		<pubDate>Fri, 22 May 2020 07:47:59 +0000</pubDate>
				<category><![CDATA[Koha]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[Tomcat]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[koha]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[open jdk]]></category>
		<category><![CDATA[openjdk11]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[tomcat]]></category>
		<category><![CDATA[tomcat8]]></category>
		<guid isPermaLink="false">http://technicaldigit.com/?p=193</guid>

					<description><![CDATA[Before you deploy any Web Application on your Ubuntu Server, You have to install Java , Tomcat Server, MySql Database, phpMyAdmin etc. First of all open Terminal on GCP Ubuntu Instance OR connect your AWS Ubuntu Instance in Putty Software through SSH. Login as root and update &#62; sudo su &#62; apt-get update Install JAVA (OpenJDK) Run below command to install OpenJDK 11 &#62; sudo [&#8230;]]]></description>
		
					<wfw:commentRss>https://technicaldigit.com/install-java-tomcat-mysql-on-ubuntu-aws/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Install phpMyAdmin on Ubuntu</title>
		<link>https://technicaldigit.com/install-phpmyadmin-on-ubuntu/</link>
					<comments>https://technicaldigit.com/install-phpmyadmin-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[Technical Digit]]></dc:creator>
		<pubDate>Sat, 16 Mar 2019 06:18:00 +0000</pubDate>
				<category><![CDATA[Koha]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false"></guid>

					<description><![CDATA[After installing MySql/MariaDB Database Server, You can easily install phpMyAdmin on Ubuntu Machine.Follow the steps below:1.&#160;Update the package index and upgrade the system packages to the latest versions:&#160; &#160; &#160;&#62;&#160;sudo apt update&#160; &#160; &#160;&#62;&#160;sudo apt upgrade&#160; (optional)2.&#160;Install the phpMyAdmin package&#160; &#160; &#160;&#62;&#160;sudo apt install phpmyadmin3. Choose apache2 by pressing Space Key and then Enter on Keyboard, when a popup screen appears.4.&#160;Next, you will be asked [&#8230;]]]></description>
		
					<wfw:commentRss>https://technicaldigit.com/install-phpmyadmin-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Reset Password in MySQL &#124; How to fix Access denied for user &#8216;root&#8217;@&#8217;localhost&#8217;</title>
		<link>https://technicaldigit.com/reset-password-in-mysql/</link>
					<comments>https://technicaldigit.com/reset-password-in-mysql/#respond</comments>
		
		<dc:creator><![CDATA[Technical Digit]]></dc:creator>
		<pubDate>Sat, 16 Mar 2019 05:59:00 +0000</pubDate>
				<category><![CDATA[Koha]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<guid isPermaLink="false"></guid>

					<description><![CDATA[Set/Reset Password in MySQL use mysql; SET PASSWORD FOR &#8216;root&#8217;@&#8217;localhost&#8217; = PASSWORD(&#8216;newpassword&#8217;); OR ALTER USER &#8216;root&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;newpassword&#8217;; OR UPDATE mysql.user SET authentication_string = PASSWORD(&#8216;newpassword&#8217;), password_expired = &#8216;N&#8217; WHERE User = &#8216;koha_library&#8217; AND Host = &#8216;localhost&#8217;; flush privileges; Mysql(Ubuntu): How to fix Access denied for user &#8216;root&#8217;@&#8217;localhost&#8217; sudo mysql -u root use mysql; update user set plugin=&#8217;mysql_native_password&#8217; where User=&#8217;root&#8217;; flush privileges; Koha auto_increment bug [&#8230;]]]></description>
		
					<wfw:commentRss>https://technicaldigit.com/reset-password-in-mysql/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Uninstall MySQL from Windows 7/8/10 Completely</title>
		<link>https://technicaldigit.com/how-to-uninstall-mysql-completely-from-windows/</link>
					<comments>https://technicaldigit.com/how-to-uninstall-mysql-completely-from-windows/#respond</comments>
		
		<dc:creator><![CDATA[Technical Digit]]></dc:creator>
		<pubDate>Mon, 16 Jul 2018 19:19:00 +0000</pubDate>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Windows]]></category>
		<guid isPermaLink="false">http://technicaldigit.com/index.php/2018/07/17/how-to-uninstall-mysql-completely-from-windows/</guid>

					<description><![CDATA[Follow the steps to uninstall MySQL Completely from Windows: NOTE: This method will remove/clean all MySQL databases and instances, so keep backup before going through this process, to save your existing databases. 1. First, Run Command Prompt as Administrator and execute the following command to STOP and REMOVE MySQL service. &#62; Net stop MySQL &#62; Sc delete MySQL 2. Now Go to Control Panel &#62;&#62; [&#8230;]]]></description>
		
					<wfw:commentRss>https://technicaldigit.com/how-to-uninstall-mysql-completely-from-windows/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>MySQL-Table is marked as crashed and should be repaired</title>
		<link>https://technicaldigit.com/mysql-table-is-marked-as-crashed-and-should-be-repaired/</link>
					<comments>https://technicaldigit.com/mysql-table-is-marked-as-crashed-and-should-be-repaired/#respond</comments>
		
		<dc:creator><![CDATA[Technical Digit]]></dc:creator>
		<pubDate>Thu, 07 Sep 2017 11:13:00 +0000</pubDate>
				<category><![CDATA[MySQL]]></category>
		<guid isPermaLink="false">http://technicaldigit.com/index.php/2017/09/07/mysql-table-is-marked-as-crashed-and-should-be-repaired/</guid>

					<description><![CDATA[You can use the command to repair individual tables in MySQL Database. &#62; REPAIR TABLE &#60;table_name&#62; ; Example: REPAIR TABLE EMPLOYEES; (there must be ample space for the mysql files)]]></description>
		
					<wfw:commentRss>https://technicaldigit.com/mysql-table-is-marked-as-crashed-and-should-be-repaired/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Page Caching using disk: enhanced 
Minified using disk

Served from: technicaldigit.com @ 2026-08-28 12:06:55 by W3 Total Cache
-->