虚拟机里的MariaDB忘记密码了,连接不上,只能重置MariaDB的密码,步骤参考网络 [root@localhost ~]# mysql -uroot -p Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) [root@localhost ~]# mysql -uroot -p Enter password: ERROR 1045 (28000…
cd usr/local/mysql/mysql5.6/bin [root@iZ2ze6yx6b47rdx0vccs5iZ bin]# service mysql-libs-5.1.73-8.el6_8.x86_64 startmysql-libs-5.1.73-8.el6_8.x86_64: unrecognized service[root@iZ2ze6yx6b47rdx0vccs5iZ bin]# service mysql startmysql: unrecognized service…
工作中我们会使用到各种各样的文档,其中,PPT起着不可或缺的作用.一份PPT文档里可能包含重要商业计划.企业运营资料或者公司管理资料等.因此,在竞争环境里,企业重要资料的保密工作就显得尤为重要,而对于重要资料我们可以选择添加密码的形式来进行文档保护.本文将介绍如何通过C#来给PPT添加密码,当然你也可以根据需要来修改密码或者解除密码.下面将对三种操作方法进行具体讲述. 所用工具:Free Spire.Presentation for. NET 3.3 (社区版) Visual Studio 20…
1://免密码登陆 找到mysql配置文件:my.cnf, 在[mysqld]模块添加:skip-grant-tables 保存退出: 2://使配置生效 重启mysql服务: service mysqld restart: 3://将旧密码置空 mysql -u root -p //提示输入密码时直接敲回车. //选择数据库 use mysql //将密码置空 update user set authentication_string = '' where user = 'root…