How can I upgrade the MySQL version included in XAMPP?
up vote
7
down vote
favorite
I Want to upgrade xampp mysql from 5.1 to 5.6.10
I installed mysql server to mysql path in xampp path
but didn't work for me .
do you have any idea or any way to upgrade mysql in xampp ?
Best Regards
Ali
mysql xampp
add a comment |
up vote
7
down vote
favorite
I Want to upgrade xampp mysql from 5.1 to 5.6.10
I installed mysql server to mysql path in xampp path
but didn't work for me .
do you have any idea or any way to upgrade mysql in xampp ?
Best Regards
Ali
mysql xampp
isn't possible ?
– Ali Fattahi
Mar 15 '13 at 9:23
Seems like more of a database administrator question than a super user question
– Kolob Canyon
Jul 2 '16 at 23:16
add a comment |
up vote
7
down vote
favorite
up vote
7
down vote
favorite
I Want to upgrade xampp mysql from 5.1 to 5.6.10
I installed mysql server to mysql path in xampp path
but didn't work for me .
do you have any idea or any way to upgrade mysql in xampp ?
Best Regards
Ali
mysql xampp
I Want to upgrade xampp mysql from 5.1 to 5.6.10
I installed mysql server to mysql path in xampp path
but didn't work for me .
do you have any idea or any way to upgrade mysql in xampp ?
Best Regards
Ali
mysql xampp
mysql xampp
edited Mar 14 '13 at 19:21
Breakthrough
31.3k992136
31.3k992136
asked Mar 14 '13 at 18:43
Ali Fattahi
36112
36112
isn't possible ?
– Ali Fattahi
Mar 15 '13 at 9:23
Seems like more of a database administrator question than a super user question
– Kolob Canyon
Jul 2 '16 at 23:16
add a comment |
isn't possible ?
– Ali Fattahi
Mar 15 '13 at 9:23
Seems like more of a database administrator question than a super user question
– Kolob Canyon
Jul 2 '16 at 23:16
isn't possible ?
– Ali Fattahi
Mar 15 '13 at 9:23
isn't possible ?
– Ali Fattahi
Mar 15 '13 at 9:23
Seems like more of a database administrator question than a super user question
– Kolob Canyon
Jul 2 '16 at 23:16
Seems like more of a database administrator question than a super user question
– Kolob Canyon
Jul 2 '16 at 23:16
add a comment |
4 Answers
4
active
oldest
votes
up vote
6
down vote
I have found the perfect way of doing it without any side effects and also works perfectly with the xampp control panel...
Before you begin, make sure you backup your databases to files and export all users to a file.
Make sure to stop mysql, but there is no need to uninstall the service.
Step 1: Download the new version of MySQL install version or zip (install version preferred since it is considerably smaller)
Step 2: Install MySQL to C:TEMP. Install only the MySQL server
Step 3: Do not run advance options. Do not let it install a service. No configuration is required.
Step 4: Go to C:TEMP, look for installation and copy the following folders "bin, include, lib, share, support-files". be absolutely certain not to copy the data folder.
Once copied, go to your xampp folder, rename mysql folder to mysql_old. create new mysql folder then paste the contents that were copied
Step 5: Go to mysql_old and copy the data folder and paste it into your new mysql folder as well
Step 6: Go to the bin folder within mysql that is located within xampp and create a blank my.ini file.
If you are upgrading to version 5.6.11 which is what I did, then all you have to do is write a few commands which I have at the bottom of this instruction
step 7: Click start next to MySQL on the xampp control panel and it should start normally assuming to you followed to instructions properly.
Once done, you can uninstall the mysql package that you had installed to C:TEMP.
Any questions or problems, message me or post back!
BY THE WAY, the key is having a proper my.ini file
here is mine:
[client]
port=3306
socket="C:/xampp/tmp/mysql.sock"
[mysqld]
port= 3306
socket = "C:/xampp/tmp/mysql.sock"
pid_file = mysql.pid
skip-federated
explicit_defaults_for_timestamp
basedir="C:/xampp/mysql"
datadir="C:/xampp/mysql/data"
tmpdir = "C:/xampp/tmp"
log-output = FILE
log-error = mysql_error.log
general-log
general_log_file = mysql_general.log
slow-query-log
slow_query_log_file = mysql_slow.log
default-time-zone = -5:00
long_query_time = 2
plugin_dir = "C:/xampp/mysql/lib/plugin"
server-id = 2
#ft_stopword_file = "C:/xampp/mysql/bin/mysql_ft_stopword_file.ini"
ft_min_word_len = 3
ft_max_word_len = 50
character-sets-dir = "C:/xampp/mysql/share/charsets"
character-set-server = utf8
collation-server = utf8_unicode_ci
innodb_ft_max_token_size = 50
innodb_ft_min_token_size = 3
innodb_ft_enable_stopword = off
key_buffer_size = 8M
query_cache_type = 1
query_cache_size = 4M
query_cache_limit = 4M
default-storage-engine = InnoDB
[mysql]
default-character-set=utf8
didn't work for me :/
– anonymous
Jul 22 '15 at 9:59
Warning This solution with InnoDB is a complete mistake and may cause data loss.
– SaidbakR
Oct 20 '16 at 0:33
add a comment |
up vote
3
down vote
I tried @Seul Shahkee 's solution, works fine but in my case I also copied over the my.ini file from the old bin folder over to the new mysql folder. Some configuration variables are no longer supported though it seems, so I simply commented them out and it seems to work.. so far..
No 100% guarantee though..
Download latest MySQL but download the zip file not the MSI (installer).
Unzip the zip file to a location.
Shutdown Mysql process (no need to remove service) from XAMPP control panel.
Go to XAMPP folder, rename mysql folder to mysql_old
Copy the new unzipped mysql folder to XAMPP folder, in it delete the data folder.
Copy over the data folder from the mysql_old to the new mysql folder.
Copy over the my.ini file under mysql_old/bin to mysql/bin.
Remove (comment out) parameter table_cache = 64 from my.ini file. Note depending on version there may be other parameters you may need to comment out, and you may need to set new parameters to make up for the deprecated ones.
Copy over other ini and executable files from mysql_old root folder to mysql (XAMPP ini files,
my-huge.ini, my-small.ini, etc..).Run mysql process from XAMPP control panel. Should work. (You may need to kill XAMPP first).
(OPTIONAL) Run
mysql/bin/mysql_upgrade.exe -u USERNAME -p
to update tables in the local databases that may have problems due to the version change.
thanks. It worked from 5.6 to 5.7. I've had to execute the command you say then restart myslq from xampp panel
– Ivan Ferrer Villa
Feb 15 at 12:47
add a comment |
up vote
0
down vote
What I've done was that
- Removing xampp mysql service and stopping it
- installing mysql server from dev.mysql.com/downloads/installer
- adding users root & pma without password (doing this while installing will be easiest)
I have a fully functional phpmyadmin now :D
add a comment |
up vote
0
down vote
I followed this guide and got it to work.
However I came to realize that there seems to be no mysql community server 8.0.13 (the latest as of this answer posting) zip file in 32-bit which is all that XAMPP can run; As he states at the bottom.
Make sure you have installed the 32-bit version of MySQL. The MySQL 64-bit version is not compatible with the XAMPP Control Panel.
XAMPP - Replacing MariaDB with MySQL
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
6
down vote
I have found the perfect way of doing it without any side effects and also works perfectly with the xampp control panel...
Before you begin, make sure you backup your databases to files and export all users to a file.
Make sure to stop mysql, but there is no need to uninstall the service.
Step 1: Download the new version of MySQL install version or zip (install version preferred since it is considerably smaller)
Step 2: Install MySQL to C:TEMP. Install only the MySQL server
Step 3: Do not run advance options. Do not let it install a service. No configuration is required.
Step 4: Go to C:TEMP, look for installation and copy the following folders "bin, include, lib, share, support-files". be absolutely certain not to copy the data folder.
Once copied, go to your xampp folder, rename mysql folder to mysql_old. create new mysql folder then paste the contents that were copied
Step 5: Go to mysql_old and copy the data folder and paste it into your new mysql folder as well
Step 6: Go to the bin folder within mysql that is located within xampp and create a blank my.ini file.
If you are upgrading to version 5.6.11 which is what I did, then all you have to do is write a few commands which I have at the bottom of this instruction
step 7: Click start next to MySQL on the xampp control panel and it should start normally assuming to you followed to instructions properly.
Once done, you can uninstall the mysql package that you had installed to C:TEMP.
Any questions or problems, message me or post back!
BY THE WAY, the key is having a proper my.ini file
here is mine:
[client]
port=3306
socket="C:/xampp/tmp/mysql.sock"
[mysqld]
port= 3306
socket = "C:/xampp/tmp/mysql.sock"
pid_file = mysql.pid
skip-federated
explicit_defaults_for_timestamp
basedir="C:/xampp/mysql"
datadir="C:/xampp/mysql/data"
tmpdir = "C:/xampp/tmp"
log-output = FILE
log-error = mysql_error.log
general-log
general_log_file = mysql_general.log
slow-query-log
slow_query_log_file = mysql_slow.log
default-time-zone = -5:00
long_query_time = 2
plugin_dir = "C:/xampp/mysql/lib/plugin"
server-id = 2
#ft_stopword_file = "C:/xampp/mysql/bin/mysql_ft_stopword_file.ini"
ft_min_word_len = 3
ft_max_word_len = 50
character-sets-dir = "C:/xampp/mysql/share/charsets"
character-set-server = utf8
collation-server = utf8_unicode_ci
innodb_ft_max_token_size = 50
innodb_ft_min_token_size = 3
innodb_ft_enable_stopword = off
key_buffer_size = 8M
query_cache_type = 1
query_cache_size = 4M
query_cache_limit = 4M
default-storage-engine = InnoDB
[mysql]
default-character-set=utf8
didn't work for me :/
– anonymous
Jul 22 '15 at 9:59
Warning This solution with InnoDB is a complete mistake and may cause data loss.
– SaidbakR
Oct 20 '16 at 0:33
add a comment |
up vote
6
down vote
I have found the perfect way of doing it without any side effects and also works perfectly with the xampp control panel...
Before you begin, make sure you backup your databases to files and export all users to a file.
Make sure to stop mysql, but there is no need to uninstall the service.
Step 1: Download the new version of MySQL install version or zip (install version preferred since it is considerably smaller)
Step 2: Install MySQL to C:TEMP. Install only the MySQL server
Step 3: Do not run advance options. Do not let it install a service. No configuration is required.
Step 4: Go to C:TEMP, look for installation and copy the following folders "bin, include, lib, share, support-files". be absolutely certain not to copy the data folder.
Once copied, go to your xampp folder, rename mysql folder to mysql_old. create new mysql folder then paste the contents that were copied
Step 5: Go to mysql_old and copy the data folder and paste it into your new mysql folder as well
Step 6: Go to the bin folder within mysql that is located within xampp and create a blank my.ini file.
If you are upgrading to version 5.6.11 which is what I did, then all you have to do is write a few commands which I have at the bottom of this instruction
step 7: Click start next to MySQL on the xampp control panel and it should start normally assuming to you followed to instructions properly.
Once done, you can uninstall the mysql package that you had installed to C:TEMP.
Any questions or problems, message me or post back!
BY THE WAY, the key is having a proper my.ini file
here is mine:
[client]
port=3306
socket="C:/xampp/tmp/mysql.sock"
[mysqld]
port= 3306
socket = "C:/xampp/tmp/mysql.sock"
pid_file = mysql.pid
skip-federated
explicit_defaults_for_timestamp
basedir="C:/xampp/mysql"
datadir="C:/xampp/mysql/data"
tmpdir = "C:/xampp/tmp"
log-output = FILE
log-error = mysql_error.log
general-log
general_log_file = mysql_general.log
slow-query-log
slow_query_log_file = mysql_slow.log
default-time-zone = -5:00
long_query_time = 2
plugin_dir = "C:/xampp/mysql/lib/plugin"
server-id = 2
#ft_stopword_file = "C:/xampp/mysql/bin/mysql_ft_stopword_file.ini"
ft_min_word_len = 3
ft_max_word_len = 50
character-sets-dir = "C:/xampp/mysql/share/charsets"
character-set-server = utf8
collation-server = utf8_unicode_ci
innodb_ft_max_token_size = 50
innodb_ft_min_token_size = 3
innodb_ft_enable_stopword = off
key_buffer_size = 8M
query_cache_type = 1
query_cache_size = 4M
query_cache_limit = 4M
default-storage-engine = InnoDB
[mysql]
default-character-set=utf8
didn't work for me :/
– anonymous
Jul 22 '15 at 9:59
Warning This solution with InnoDB is a complete mistake and may cause data loss.
– SaidbakR
Oct 20 '16 at 0:33
add a comment |
up vote
6
down vote
up vote
6
down vote
I have found the perfect way of doing it without any side effects and also works perfectly with the xampp control panel...
Before you begin, make sure you backup your databases to files and export all users to a file.
Make sure to stop mysql, but there is no need to uninstall the service.
Step 1: Download the new version of MySQL install version or zip (install version preferred since it is considerably smaller)
Step 2: Install MySQL to C:TEMP. Install only the MySQL server
Step 3: Do not run advance options. Do not let it install a service. No configuration is required.
Step 4: Go to C:TEMP, look for installation and copy the following folders "bin, include, lib, share, support-files". be absolutely certain not to copy the data folder.
Once copied, go to your xampp folder, rename mysql folder to mysql_old. create new mysql folder then paste the contents that were copied
Step 5: Go to mysql_old and copy the data folder and paste it into your new mysql folder as well
Step 6: Go to the bin folder within mysql that is located within xampp and create a blank my.ini file.
If you are upgrading to version 5.6.11 which is what I did, then all you have to do is write a few commands which I have at the bottom of this instruction
step 7: Click start next to MySQL on the xampp control panel and it should start normally assuming to you followed to instructions properly.
Once done, you can uninstall the mysql package that you had installed to C:TEMP.
Any questions or problems, message me or post back!
BY THE WAY, the key is having a proper my.ini file
here is mine:
[client]
port=3306
socket="C:/xampp/tmp/mysql.sock"
[mysqld]
port= 3306
socket = "C:/xampp/tmp/mysql.sock"
pid_file = mysql.pid
skip-federated
explicit_defaults_for_timestamp
basedir="C:/xampp/mysql"
datadir="C:/xampp/mysql/data"
tmpdir = "C:/xampp/tmp"
log-output = FILE
log-error = mysql_error.log
general-log
general_log_file = mysql_general.log
slow-query-log
slow_query_log_file = mysql_slow.log
default-time-zone = -5:00
long_query_time = 2
plugin_dir = "C:/xampp/mysql/lib/plugin"
server-id = 2
#ft_stopword_file = "C:/xampp/mysql/bin/mysql_ft_stopword_file.ini"
ft_min_word_len = 3
ft_max_word_len = 50
character-sets-dir = "C:/xampp/mysql/share/charsets"
character-set-server = utf8
collation-server = utf8_unicode_ci
innodb_ft_max_token_size = 50
innodb_ft_min_token_size = 3
innodb_ft_enable_stopword = off
key_buffer_size = 8M
query_cache_type = 1
query_cache_size = 4M
query_cache_limit = 4M
default-storage-engine = InnoDB
[mysql]
default-character-set=utf8
I have found the perfect way of doing it without any side effects and also works perfectly with the xampp control panel...
Before you begin, make sure you backup your databases to files and export all users to a file.
Make sure to stop mysql, but there is no need to uninstall the service.
Step 1: Download the new version of MySQL install version or zip (install version preferred since it is considerably smaller)
Step 2: Install MySQL to C:TEMP. Install only the MySQL server
Step 3: Do not run advance options. Do not let it install a service. No configuration is required.
Step 4: Go to C:TEMP, look for installation and copy the following folders "bin, include, lib, share, support-files". be absolutely certain not to copy the data folder.
Once copied, go to your xampp folder, rename mysql folder to mysql_old. create new mysql folder then paste the contents that were copied
Step 5: Go to mysql_old and copy the data folder and paste it into your new mysql folder as well
Step 6: Go to the bin folder within mysql that is located within xampp and create a blank my.ini file.
If you are upgrading to version 5.6.11 which is what I did, then all you have to do is write a few commands which I have at the bottom of this instruction
step 7: Click start next to MySQL on the xampp control panel and it should start normally assuming to you followed to instructions properly.
Once done, you can uninstall the mysql package that you had installed to C:TEMP.
Any questions or problems, message me or post back!
BY THE WAY, the key is having a proper my.ini file
here is mine:
[client]
port=3306
socket="C:/xampp/tmp/mysql.sock"
[mysqld]
port= 3306
socket = "C:/xampp/tmp/mysql.sock"
pid_file = mysql.pid
skip-federated
explicit_defaults_for_timestamp
basedir="C:/xampp/mysql"
datadir="C:/xampp/mysql/data"
tmpdir = "C:/xampp/tmp"
log-output = FILE
log-error = mysql_error.log
general-log
general_log_file = mysql_general.log
slow-query-log
slow_query_log_file = mysql_slow.log
default-time-zone = -5:00
long_query_time = 2
plugin_dir = "C:/xampp/mysql/lib/plugin"
server-id = 2
#ft_stopword_file = "C:/xampp/mysql/bin/mysql_ft_stopword_file.ini"
ft_min_word_len = 3
ft_max_word_len = 50
character-sets-dir = "C:/xampp/mysql/share/charsets"
character-set-server = utf8
collation-server = utf8_unicode_ci
innodb_ft_max_token_size = 50
innodb_ft_min_token_size = 3
innodb_ft_enable_stopword = off
key_buffer_size = 8M
query_cache_type = 1
query_cache_size = 4M
query_cache_limit = 4M
default-storage-engine = InnoDB
[mysql]
default-character-set=utf8
edited May 10 '16 at 17:48
ManuelJE
12516
12516
answered May 31 '13 at 15:33
Seul Shahkee
6113
6113
didn't work for me :/
– anonymous
Jul 22 '15 at 9:59
Warning This solution with InnoDB is a complete mistake and may cause data loss.
– SaidbakR
Oct 20 '16 at 0:33
add a comment |
didn't work for me :/
– anonymous
Jul 22 '15 at 9:59
Warning This solution with InnoDB is a complete mistake and may cause data loss.
– SaidbakR
Oct 20 '16 at 0:33
didn't work for me :/
– anonymous
Jul 22 '15 at 9:59
didn't work for me :/
– anonymous
Jul 22 '15 at 9:59
Warning This solution with InnoDB is a complete mistake and may cause data loss.
– SaidbakR
Oct 20 '16 at 0:33
Warning This solution with InnoDB is a complete mistake and may cause data loss.
– SaidbakR
Oct 20 '16 at 0:33
add a comment |
up vote
3
down vote
I tried @Seul Shahkee 's solution, works fine but in my case I also copied over the my.ini file from the old bin folder over to the new mysql folder. Some configuration variables are no longer supported though it seems, so I simply commented them out and it seems to work.. so far..
No 100% guarantee though..
Download latest MySQL but download the zip file not the MSI (installer).
Unzip the zip file to a location.
Shutdown Mysql process (no need to remove service) from XAMPP control panel.
Go to XAMPP folder, rename mysql folder to mysql_old
Copy the new unzipped mysql folder to XAMPP folder, in it delete the data folder.
Copy over the data folder from the mysql_old to the new mysql folder.
Copy over the my.ini file under mysql_old/bin to mysql/bin.
Remove (comment out) parameter table_cache = 64 from my.ini file. Note depending on version there may be other parameters you may need to comment out, and you may need to set new parameters to make up for the deprecated ones.
Copy over other ini and executable files from mysql_old root folder to mysql (XAMPP ini files,
my-huge.ini, my-small.ini, etc..).Run mysql process from XAMPP control panel. Should work. (You may need to kill XAMPP first).
(OPTIONAL) Run
mysql/bin/mysql_upgrade.exe -u USERNAME -p
to update tables in the local databases that may have problems due to the version change.
thanks. It worked from 5.6 to 5.7. I've had to execute the command you say then restart myslq from xampp panel
– Ivan Ferrer Villa
Feb 15 at 12:47
add a comment |
up vote
3
down vote
I tried @Seul Shahkee 's solution, works fine but in my case I also copied over the my.ini file from the old bin folder over to the new mysql folder. Some configuration variables are no longer supported though it seems, so I simply commented them out and it seems to work.. so far..
No 100% guarantee though..
Download latest MySQL but download the zip file not the MSI (installer).
Unzip the zip file to a location.
Shutdown Mysql process (no need to remove service) from XAMPP control panel.
Go to XAMPP folder, rename mysql folder to mysql_old
Copy the new unzipped mysql folder to XAMPP folder, in it delete the data folder.
Copy over the data folder from the mysql_old to the new mysql folder.
Copy over the my.ini file under mysql_old/bin to mysql/bin.
Remove (comment out) parameter table_cache = 64 from my.ini file. Note depending on version there may be other parameters you may need to comment out, and you may need to set new parameters to make up for the deprecated ones.
Copy over other ini and executable files from mysql_old root folder to mysql (XAMPP ini files,
my-huge.ini, my-small.ini, etc..).Run mysql process from XAMPP control panel. Should work. (You may need to kill XAMPP first).
(OPTIONAL) Run
mysql/bin/mysql_upgrade.exe -u USERNAME -p
to update tables in the local databases that may have problems due to the version change.
thanks. It worked from 5.6 to 5.7. I've had to execute the command you say then restart myslq from xampp panel
– Ivan Ferrer Villa
Feb 15 at 12:47
add a comment |
up vote
3
down vote
up vote
3
down vote
I tried @Seul Shahkee 's solution, works fine but in my case I also copied over the my.ini file from the old bin folder over to the new mysql folder. Some configuration variables are no longer supported though it seems, so I simply commented them out and it seems to work.. so far..
No 100% guarantee though..
Download latest MySQL but download the zip file not the MSI (installer).
Unzip the zip file to a location.
Shutdown Mysql process (no need to remove service) from XAMPP control panel.
Go to XAMPP folder, rename mysql folder to mysql_old
Copy the new unzipped mysql folder to XAMPP folder, in it delete the data folder.
Copy over the data folder from the mysql_old to the new mysql folder.
Copy over the my.ini file under mysql_old/bin to mysql/bin.
Remove (comment out) parameter table_cache = 64 from my.ini file. Note depending on version there may be other parameters you may need to comment out, and you may need to set new parameters to make up for the deprecated ones.
Copy over other ini and executable files from mysql_old root folder to mysql (XAMPP ini files,
my-huge.ini, my-small.ini, etc..).Run mysql process from XAMPP control panel. Should work. (You may need to kill XAMPP first).
(OPTIONAL) Run
mysql/bin/mysql_upgrade.exe -u USERNAME -p
to update tables in the local databases that may have problems due to the version change.
I tried @Seul Shahkee 's solution, works fine but in my case I also copied over the my.ini file from the old bin folder over to the new mysql folder. Some configuration variables are no longer supported though it seems, so I simply commented them out and it seems to work.. so far..
No 100% guarantee though..
Download latest MySQL but download the zip file not the MSI (installer).
Unzip the zip file to a location.
Shutdown Mysql process (no need to remove service) from XAMPP control panel.
Go to XAMPP folder, rename mysql folder to mysql_old
Copy the new unzipped mysql folder to XAMPP folder, in it delete the data folder.
Copy over the data folder from the mysql_old to the new mysql folder.
Copy over the my.ini file under mysql_old/bin to mysql/bin.
Remove (comment out) parameter table_cache = 64 from my.ini file. Note depending on version there may be other parameters you may need to comment out, and you may need to set new parameters to make up for the deprecated ones.
Copy over other ini and executable files from mysql_old root folder to mysql (XAMPP ini files,
my-huge.ini, my-small.ini, etc..).Run mysql process from XAMPP control panel. Should work. (You may need to kill XAMPP first).
(OPTIONAL) Run
mysql/bin/mysql_upgrade.exe -u USERNAME -p
to update tables in the local databases that may have problems due to the version change.
edited Apr 18 '16 at 16:00
Yanosh Kunsh
34
34
answered Jan 4 '15 at 22:20
schwarz
312
312
thanks. It worked from 5.6 to 5.7. I've had to execute the command you say then restart myslq from xampp panel
– Ivan Ferrer Villa
Feb 15 at 12:47
add a comment |
thanks. It worked from 5.6 to 5.7. I've had to execute the command you say then restart myslq from xampp panel
– Ivan Ferrer Villa
Feb 15 at 12:47
thanks. It worked from 5.6 to 5.7. I've had to execute the command you say then restart myslq from xampp panel
– Ivan Ferrer Villa
Feb 15 at 12:47
thanks. It worked from 5.6 to 5.7. I've had to execute the command you say then restart myslq from xampp panel
– Ivan Ferrer Villa
Feb 15 at 12:47
add a comment |
up vote
0
down vote
What I've done was that
- Removing xampp mysql service and stopping it
- installing mysql server from dev.mysql.com/downloads/installer
- adding users root & pma without password (doing this while installing will be easiest)
I have a fully functional phpmyadmin now :D
add a comment |
up vote
0
down vote
What I've done was that
- Removing xampp mysql service and stopping it
- installing mysql server from dev.mysql.com/downloads/installer
- adding users root & pma without password (doing this while installing will be easiest)
I have a fully functional phpmyadmin now :D
add a comment |
up vote
0
down vote
up vote
0
down vote
What I've done was that
- Removing xampp mysql service and stopping it
- installing mysql server from dev.mysql.com/downloads/installer
- adding users root & pma without password (doing this while installing will be easiest)
I have a fully functional phpmyadmin now :D
What I've done was that
- Removing xampp mysql service and stopping it
- installing mysql server from dev.mysql.com/downloads/installer
- adding users root & pma without password (doing this while installing will be easiest)
I have a fully functional phpmyadmin now :D
answered Mar 6 at 7:06
Mahdi Rafatjah
372215
372215
add a comment |
add a comment |
up vote
0
down vote
I followed this guide and got it to work.
However I came to realize that there seems to be no mysql community server 8.0.13 (the latest as of this answer posting) zip file in 32-bit which is all that XAMPP can run; As he states at the bottom.
Make sure you have installed the 32-bit version of MySQL. The MySQL 64-bit version is not compatible with the XAMPP Control Panel.
XAMPP - Replacing MariaDB with MySQL
add a comment |
up vote
0
down vote
I followed this guide and got it to work.
However I came to realize that there seems to be no mysql community server 8.0.13 (the latest as of this answer posting) zip file in 32-bit which is all that XAMPP can run; As he states at the bottom.
Make sure you have installed the 32-bit version of MySQL. The MySQL 64-bit version is not compatible with the XAMPP Control Panel.
XAMPP - Replacing MariaDB with MySQL
add a comment |
up vote
0
down vote
up vote
0
down vote
I followed this guide and got it to work.
However I came to realize that there seems to be no mysql community server 8.0.13 (the latest as of this answer posting) zip file in 32-bit which is all that XAMPP can run; As he states at the bottom.
Make sure you have installed the 32-bit version of MySQL. The MySQL 64-bit version is not compatible with the XAMPP Control Panel.
XAMPP - Replacing MariaDB with MySQL
I followed this guide and got it to work.
However I came to realize that there seems to be no mysql community server 8.0.13 (the latest as of this answer posting) zip file in 32-bit which is all that XAMPP can run; As he states at the bottom.
Make sure you have installed the 32-bit version of MySQL. The MySQL 64-bit version is not compatible with the XAMPP Control Panel.
XAMPP - Replacing MariaDB with MySQL
answered Nov 21 at 7:52
DDeathlonger
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f566013%2fhow-can-i-upgrade-the-mysql-version-included-in-xampp%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
isn't possible ?
– Ali Fattahi
Mar 15 '13 at 9:23
Seems like more of a database administrator question than a super user question
– Kolob Canyon
Jul 2 '16 at 23:16