域账号更改密码之后代理需要重新配置
在使用域账号的时候,如果需要配置账户和密码,那么最好记录下来,否则将来找不到就很尴尬了。
我遇到的问题是,因为在另外一台电脑配置了域账号,用来联网,提供网络给visual studio
1.Firefox
这个代理的账号需要附加域名
2.Chrome
3.NuGet代理
C:\Users\clu\AppData\Roaming\NuGet\NuGet.Config 这个地方配置的代理不需要指定账号和密码
4.npm代理
【应该是无需配置代理,会自动使用ie的代理。某一个ip连不上的时候,会自动切换到其他的ip】
C:\Users\clu\.npmrc 这个地方配置的代理似乎需要指定账号和密码
PS C:\Users\clu\Desktop> npm install --save-dev jasmine
npm WARN registry Unexpected warning for https://registry.npmjs.org/: Miscellaneous Warning ETIMEDOUT: request to https://registry.npmjs.org/jasmine failed, reason: connect ETIMEDOUT 104.18.96.96:443
npm WARN registry Using stale package data from https://registry.npmjs.org/ due to a request error during revalidation.
npm WARN Desktop No description
npm WARN Desktop No repository field.
npm WARN Desktop No license field.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
+ jasmine@3.1.0
updated 1 package in 273.624s
5.git代理
在windows credential manager中修改
6.可以检查用户目录下的所有配置文件
.git-credentials
7.windows service中使用了代理,最后一列logon as
8.清空credential manager中所有相关的账户和密码
9.TortoiseSvn可能有配置
svn代理设置无效?
可以直接去后台修改C:\Users\clu\.subversion文件夹下的servers文件,这个是全局的配置
但是TortoiseSvn中的 设置是关联到C:\Users\clu\AppData\Roaming\Subversion下的servers文件
The Security System detected an authentication error for the server LDAP/SASYGSHADC01.asnet.xxx.net/asnet.xxx.net@ASNET.xxx.NET. The failure code from authentication protocol Kerberos was "The user account has been automatically locked because too many invalid logon attempts or password change attempts have been requested.
(0xc0000234)".
eventlog对应的source是LSA(LSASrv)
Use the Account Lockout tools (http://www.microsoft.com/en-us/download/details.aspx?id=18465) to identify the source of the lockouts.
Once you have found the machines, disconnect them from the network and monitor if account lockouts still occur.
More information:
Account Lockout Tools
http://technet.microsoft.com/en-us/library/cc738772(WS.10).aspx
作者:Chuck Lu GitHub |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
2015-06-11 Task的使用