参考 https://www.cnblogs.com/nobodyzhou/p/6145030.html
所以用各种平面提取算法后,得到的平面方程, 注意此处的平面方程abcd已经是归一化了。 a x b y c z d 0 ax by cz d 0 axbyczd0 此时的原点到该平面点的投影点为 C P ( − a d , − b d , − c …
1、查看配置文件地址
mysql --help|grep my.cnf 2、编辑/etc/my.cnf配置文件
vim /etc/my.cnf增加跳过密码配置
[mysqld]
skip-grant-tables 3、重启mysql
service mysqld restart4、修改密码
use mysql;
update user set authentication_string where userroot;
FLUSH pr…