在为windows客户端做监控的过程中,Nagios报 “NSClient - ERROR: Invalid password”的错误,status为UNKOWN,这错误说的是NSClient的密码不可用。在用check_nt的时候用上参数-s password,而这个password是被监控windows主机安装NSClient过程中,所设置的密码,若没有设
原创 2023-07-25 16:04:18
338阅读
在EC2上开了一个新的Virtual Hosting, 修改ROOT 密码发现"Authentication token manipulation error"原来是没有/etc/shadow 用pwconv  添加了一下.reference: http://linux.chinaunix.net/bbs/viewthread.php?tid=894618
转载 精选 2009-12-09 14:24:09
1108阅读
# 解决 "Error]node-mgr's mysql user/password error!" 问题的步骤 作为一名经验丰富的开发者,我将指导你如何解决 "Error]node-mgr's mysql user/password error!" 这个问题。下面是整个解决问题的流程,以表格的形式展示每个步骤所需的操作,并提供相应的代码示例。 | 步骤 | 操作 | 代码示例 | 说明 |
原创 2023-07-21 07:28:03
591阅读
在配置JMX远程访问的时候,设置jmxremote.password文件权限,修改该文件时添加写权限,chmod +w jmxremote.password ,放开角色信息那俩行的注释,保存,再使用chmod 0400 jmxremote.password这样就是它正确的权限设置jmxremote.password 在jdk/jre/lib/management/下,jmxremote.passw
转载 2019-10-31 10:23:00
907阅读
2评论
# 如何重置MySQL的root密码 ## 概述 在MySQL中,root用户是拥有最高权限的用户,因此设置和维护root用户的密码非常重要。但有时候我们可能会忘记root密码,或者需要将其重置为一个新的密码。本文将向你介绍如何重置MySQL的root密码。 ## 流程图 ```mermaid stateDiagram [*] --> 输入旧密码 输入旧密码 --> 修改密
原创 2023-08-25 09:55:23
489阅读
Windows下部署MySQL遇到的问题执行命令mysql -u root -p,然后不论是否输入密码都进不去,信息如下C:\Windows\system32>mysql -u root -pEnter password: *****ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: Y
原创 2022-11-07 18:31:29
1061阅读
linux上操作如下:[root@localhost mysql]# mysqladmin -h 127.0.0.1 -u root p
原创 2023-04-26 18:39:25
359阅读
ERROR 1819 (HY000): Your password does not satisfy the current
原创 2019-06-04 15:54:35
2717阅读
(error) ERR Client sent AUTH, but no password is set因为你没有设置密码config set requirepass “密码”这样就ok啦
转载 2021-08-12 13:49:22
861阅读
 ORA-28001: the password has expired (DBD ERROR: OCISessionBegin)  问题描述:当登陆em时使用sys帐号登陆进去后,数据库实例提示ORA-28001: the password has expired (DBD ERROR: OCISessionBegin)    解决办法如下: &n
原创 2012-07-05 17:02:02
3662阅读
linux环境下,mysql安装完后,经常出现如上问题;连接不上mysql 错误描述: Mysql中添加用户之后可能出现登录时提示ERROR 1045 (28000): Access denied for user的错误.删除user.user中值为NULL的,或更新NULL为test 1)delete from user where user is...
原创 2021-07-12 10:05:09
314阅读
前端时间mysql 的管理工具navicat 还能用而今天突然不能用localhost 登录,查阅多方资料均为解决。试了n中百度上的方
1.Go to /etc/phpmyadmin/config.inc.php and open it your favorite editor.2.Search for below line of code//$cfg['Servers'][$i]['AllowNoPassword'] = TRUE...
转载 2015-10-18 21:21:00
214阅读
2评论
数据库安装后执行命令ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.
原创 2018-08-10 14:21:26
2136阅读
原文直通车,支持原创,人人有责!一.问题情况(Windows环境):二.解决办法: 将mysql的配置文件my-default.ini修改为my.ini(),打开my.ini文件在[mysqld]这个条目下加入 skip-grant-tables 保存退出后重启mysql,并且重新安装mysql.  操作如下图所示:这时候在cmd里面输入mysql -u root -p就可以不用密码登录了
转载 2021-07-09 14:35:23
293阅读
linux环境下,mysqlan错误描述: Mysql中添加用户之后可能出现登录时提示ERROR 1045 (28000): Access denied for user的错误.删除user.user中值为NULL的,或更新NULL为test 1)delete from user where user is NULL 2)update user set user=‘test‘ where
转载 2021-07-12 10:04:46
495阅读
Linux安装mysql之后,首次登陆遇到的问题 解决方法: 打开/etc/my.cnf配置文件,在mysql的后面加入一句话:skip-grant-tables 然后重启mysql服务,输入mysql,就能进入MySQL程序了。
转载 2020-11-18 22:15:00
316阅读
2评论
set password for 'username'@'host' = password('123456')或mysql> set password for root@localhost = password('123456'); mysql -u root -p123456
转载 2020-02-25 20:52:00
105阅读
2评论
error 1045 (28000): access denied for user 'root'@'localhost' (using password: yes /etc/init.d/mysqld stop mysqld_safe --user=mysql --skip-grant-table ...
转载 2021-10-05 15:07:00
296阅读
2评论
开发项目,队友把密码忘了,又得重置,一路上遇到了N多Bug,linux环境下my.conf找不到,用了# whereis my回复的也是空。注意区分my.conf与my.cnf如果找到了my.conf,推荐看这篇博文:https://.cnblogs.com/gumuzi/p/5711495.html首先bug有两个:ERROR 1045 (28000): Access denied for...
原创 2022-02-03 11:37:22
119阅读
  • 1
  • 2
  • 3
  • 4
  • 5