Fix for ERROR 1006 (HY000) Cant create database (errno: 2123132) in MySQL
February 28, 2022 · 2 min read
Once MySQL is installed on macOS or Linux machines, You tried to create a database using the below command in the terminal or MySQL client for the first time For example, create a database using the below command. create database employeedb It throws a below error ERROR 1006 (HY000) Can’t create database ‘db_name’ (errno: 2123132) Let’s see the fix and solution for this error. Probable causes for this issue is...