Allow all remote connections, MySQL

前端 未结 7 1388
予麋鹿
予麋鹿 2020-11-28 01:34

I had been using SQL Server and am now using MySQL for a project. With SQL Server, our developers can connect to the remote database on their local machines if they know the

相关标签:
7条回答
  • 2020-11-28 02:34
    GRANT ALL ON *.* to user@'%' IDENTIFIED BY 'password'; 
    

    Will allow a specific user to log on from anywhere.

    It's bad because it removes some security control, i.e. if an account is compromised.

    0 讨论(0)
提交回复
热议问题