Linux systems use mysql encountered problems Summary

1. Tip containing capital letters table does not exist

Cause: #linux to strictly case-sensitive, the windows are not case sensitive

The solution: increase the my.cnf file (eg: sudo vi / etc / mysql / my.cnf)

lower_case_table_names = 1 (1: case-insensitive, 0: Case)

Reference Links: https://www.cnblogs.com/gne-hwz/p/10220179.html

2. After you have finished modifying the my.cnf configuration file, using the service mysql restart, suggesting rejected send messages ....

Solution: sudo service mysql stop / start

Reference Links: https://segmentfault.com/q/1010000011676119

 

Published 100 original articles · won praise 47 · views 210 000 +

Guess you like

Origin blog.csdn.net/sl1990129/article/details/103389307