WAMP server switch MySQL to MariaDB

别来无恙 提交于 2019-12-06 22:01:07

问题


How can I switch the database from MySQL to MariaDB in WAMP 3.1.0?

I'm looking for it, but I can not find it.


回答1:


From the image you show it looks like both MySQL and MariaDB are already running!

NOTE: Thats a bit memory hungry!

Simple test to see if both MySQL and MariaDB are running. Launch phpMyAdmin and look at the login screen. If both are running you should see a Server Choise dropdown under the Username and Password fields. In there you will see 2 options like below.

To pick MySQL or MariaDB, right click on the wampmanager icon in the system tray and you should see this this menu

Just click on either MySQL or MariaDB to Enable or Disable either or both database servers. If there is a green tick beside the database server name, like above against MySQL, then that database server is configured to run, and if no tick exists, that server is not configured to run.

Alternatively, just look at the services.msc snap-in to see if the databse server is a) installed and b) running (started)

Small note WAMPServer is now at V3.1.2, the update can be found here This contains a fix that if I remember correctly, contains a relevant fix. This is the WAMPServer backup repo, but it is a lot easier to navigate than SourceForge and is often more up to date than SourceForge as Oto does not have to jump through all the SourceForge loops to keep it up to date.

Also note: that MariaDB and MySQL cannot both run on the same port i.e. 3306. So by default MySQL runs on 3306 and MariaDB runs on 3307. When you come to write PHP code you will have to specify port 3307 on your database connection code to make the connection to MariaDB if you are going to run both at the same time.

Alternatively, if you want to use just MariaDB, Turn off MySQL and then switch MariaDB to use port 3306. There are menu items that make it quite easy if you look for them.



来源:https://stackoverflow.com/questions/47813733/wamp-server-switch-mysql-to-mariadb

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!