admin管理员组文章数量:1425668
Is it a good idea to create a password and make your password secure for your Wordpress database when uploading the database to a third-party web host (going live instead of hosting on localhost) instead of root and no password? :
Change
u. root p. 'no password'
to
u. username p. password
Does it make your database more secure and still accessible to your new third-party host?
Is it a good idea to create a password and make your password secure for your Wordpress database when uploading the database to a third-party web host (going live instead of hosting on localhost) instead of root and no password? :
Change
u. root p. 'no password'
to
u. username p. password
Does it make your database more secure and still accessible to your new third-party host?
Share Improve this question asked May 28, 2019 at 13:51 WestWest 211 silver badge6 bronze badges 1 |1 Answer
Reset to default 2The short answer is yes. Having a secure username and password is paramount to keeping your site secure.
本文标签: mysqlChanging root password in PHPMyAdmin for Wordpress Database when going live
版权声明:本文标题:mysql - Changing root password in PHPMyAdmin for Wordpress Database when going live 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745456636a2659132.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
mysql -u root -h yoursite
to connect to your database and create tables, modify data, or just delete everything, anybody would be able to do it – Tom J Nowell ♦ Commented May 28, 2019 at 15:33