LDAP介绍

LDAP概述

  LDAP是轻量目录访问协议,(LDAP, Lightweight Directory Access Protocol)LDAP是用于访问目录服务(特别是基于X.500的目录服务),LDAP在TCP/IP或其他面向连接的传输服务上运行。LDAP是IETF标准的跟踪协议。
LDAP是目录非关系型的,不存储BLOB,读写是非对称的,读方便,写麻烦,适合于查询搜索。LDAP不支持数据库的事务和回滚机制。
LDAP支持负载的查询过滤器,使用树状结构,类似于互联网域名、公司组织结构、文件的目录结构等。

LDAP优势

  1. 读写效率高:可以将LDAP看作是对读操作进行优化的一种"树状数据库",在读写比例大于7:1时,LDAP性能表现很好,比较适合身份认证。
  2. 开放的标准协议:不同于SQL数据库,LDAP客户端是跨平台的,对几乎所有的程序语言都是标准的API接口。
  3. 强认证方式:具有很高的安全级别,在国际化方面,LDAP使用UTF-8编码存储各种语言的字符。
  4. OpenLDAP实现开源:开源软件OpenLDAP包括了很多新功能,最轻便且消耗系统资源最少,可以基于OpenLDAP进行开发新功能。
  5. 灵活添加数据类型:LDAP根据schema的内容定义各种属性之间的从属关系以及匹配模式。在关系型数据库中若要为用户添加一个属性,需要在表中增加一个字段,如果已有的数据表中增加一个字段,需要更改表的结构,变更比较困难。而LDAP只需要在schema中加入新的属性,属性的增加不会影响性能。
  6. 树状结构的数据存储:LDAP底层是B/B+树数据结构,整棵树的任何一个分支都可以单独放在一个服务器中进行分布式管理,这不仅有利于做服务器的负载均衡,也便于跨地域的服务器部署。在查询负载大或者企业在不同区域都设有分公司时进行部署突出优势。

LDAP的主要应用场景

  1. 机器认证
  2. 用户认证
  3. 用户/系统组
  4. 地址簿
  5. 组织代表
  6. 资产追踪
  7. 电话信息存储
  8. 用户资源管理
  9. 电子邮件地址查询
  10. 应用配置存储

LDAP工作方式

  LDAP是无状态客户端-服务器的工作模式,一台或多台包含了由目录信息树组成数据的LDAP服务器。客户端连接到服务器并询问一个问题,服务器以一个答案或者指针(客户端可以获取其他信息的指针,通常是另一个LDAP服务器)进行响应。无论客户端连接了哪一台LDAP服务器,都是看到的相同目录视图。

LDAP基本术语

Directory 目录

  Directory 目录是用于存放信息的单元,基于域的命名。

Entry条目

  Entry是目录管理的对象,是LDAP最基本的单元,类似于数据库中的每一条record记录。对LDAP的增删改查都是以Entry为基本单元进行操作的。
每个Entry都有一个唯一的标识(DN,Distinguished Name),DN在语法上是由多个相对的标识名注册,之间由逗号隔开,如du:cn=Manager,dc=hadoop,dc=apache,dc=org,通过这种层次型语法结构,可以很方便表示出条目在LDAP目录树中的位置。

Attribute属性

  每个条目都有很多的Attribute属性,比如个人信息类有姓名、地址、邮箱等属性,每个属性都有名称以及对应的值,每个属性值可以是单个,也可以是多个。一些常见的属性如下:

属性 别名 说明
cn common name 通常指一个对象的名称
dn distinguished name 唯一标识名,类似于绝对路径,每个对象都有一个唯一标识名,如cn=Manager,dc=hadoop,dc=apache,dc=org
rdn relative distinguished name 相对标识名,类似于相对路径,如cn=Manager
dc domain component 通常指定一个域名,比如org.apache.hadoop写成dc=hadoop,dc=apache,dc=org
ou organizationl unit 指定一个组织单元的名称,如ou=groups
sn sur name 通常指一个人的姓氏,比如sn:Chen

AttributeType属性类型

  每个属性多有唯一的属性类型,属性类型是约定属性值的数据格式以及语法类型,属性类型约定属性值可以有多少个并约定属性查询时的匹配规则、排序、大小写等规则。

ObjectClass对象类

  ObjectClass对象类是属性的集合,可以将多个属性封装成一个对象,比如人员信息这个对象类,包含了姓名,地址,电话等属性,学生是人员信息的继承类,除了上面的几个属性,还可以有额外的学校、年级、班级等属性。
通过对象类可以方便的定义条目Entry类型,每个条目可以继承多个对象类,从而获得多个属性。

Schema模式

  对象类、属性类型、语法分别约定了条目、属性、值,这些构成了模式,模式中的每个元素都有唯一的oid编号。

LDIF:LDAP Interchange Format

  在RFC2849中定义的标准,用于规范LDAP的配置和目录内容等详细信息的保存,我们一般可以使用.ldif结尾的文件进行LDAP相关配置和目录内容的增删改查。

LDAP目录树

LDAP中,目录条目以分层的树状结构排列。

传统指定方式

  传统意义上,这种结构反映的是地理或者组织边界,代表国家的条目是在树的顶部显示,在国家下面是代表州和国家组织的条目。在他们下面可能是代表组织单位、人员、打印机、文档条目。
在这里插入图片描述

网络指定方式

  LDAP的树状结构也可以是基于网络域名来排列,这种命名方式因为DNS定位服务目录而流行。
在这里插入图片描述

LDAP常用命令介绍

常用参数说明

  • -f:-f file.ldif,从文件file.ldif中读取操作。
  • -x:简单认证。
  • -D:-D binddn,绑定DN。
  • -H:-H URI,通过LDAP统一的资源标识符。
  • -h:-h host,LDAP服务器的ip或者hostname。
  • -W:提示绑定密码,即不在命令上写密码,如ldapadd -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -W
  • -w:-w passwd,需要在命令上指定密码进行简单认证,如ldapadd -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w 123456
  • -p:-p port,LDAP服务器的端口。
  • -v:显示运行详情。

ldapadd命令

为LDAP服务器增加或修改条目Entry。
如:ldapadd -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -W -f init.ldif

ldapdelete命令

从LDAP服务器删除条目Entry。
如:ldapdelete -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w 123456 -h 172.0.0.1 "uid=hdfstest,ou=hadoop,dc=apache,dc=org"

ldapmodify命令

为LDAP服务器增加或修改条目Entry。可以使用.ldif文件
如:ldapmodify -a -H ldap://172.0.0.1:389 -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w 123456 -f modifybarbara.ldif

ldapmodrdn命令

修改条目名称,重命名。即修改dn。
如:ldapmodrdn -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w123456 "uid=hdfstest,ou=hadoop,dc=apache,dc=org" "uid=hivetest"

ldapsearch命令

从LDAP服务器中搜索条目。
如:ldapsearch -x -h 172.0.0.1 -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w 123456

ldappasswd命令

为LDAP服务器更改密码。

  • -S:交互式提示用户输入新密码
  • -s password:指定新密码,明文的,不建议使用
  • -a oldpasswd :指定旧密码,自动生成新密码
  • -A :提示输入旧密码,自动生成新密码

1)-S 交互式提示用户输入新密
ldappasswd -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w123456 -h172.0.0.1 "cn=guolitao,ou=mysql,ou=研发中心,dc=hadoop,dc=apache,dc=org" -S
2)-s 指定新密码,明文的,不建议使用
ldappasswd -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w123456 -h172.0.0.1 "uid=zhan_z,ou=运维部,ou=研发中心,dc=hadoop,dc=apache,dc=org" -s 123456
3)-a 指定旧密码,自动随机生成新密码
ldappasswd -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w123456 -h172.0.0.1 "uid=zhan_z,ou=运维部,ou=研发中心,dc=hadoop,dc=apache,dc=org" -a 123456
4)-A 提示输入旧密码,自动随机生成新密码
ldappasswd -x -D "cn=Manager,dc=hadoop,dc=apache,dc=org" -w123456 -h172.0.0.1 "uid=zhan_z,ou=运维部,ou=研发中心,dc=hadoop,dc=apache,dc=org" -A

附录:LDAP命令参数详解

ldapadd命令

$ ldapadd --help

Add or modify entries from an LDAP serverusage: ldapadd [options]The list of desired operations are read from stdin or from the filespecified by "-f file".
Add or modify options:-a         add values (default)-c         continuous operation mode (do not stop on errors)-E [!]ext=extparam    modify extensions (! indicate s criticality)-f file    read operations from `file'-M         enable Manage DSA IT control (-MM to make critical)-P version protocol version (default: 3)-S file    write skipped modifications to `file'
Common options:-d level   set LDAP debugging level to `level'-D binddn  bind DN-e [!]<ext>[=<extparam>] general extensions (! indicates criticality)[!]assert=<filter>     (RFC 4528; a RFC 4515 Filter string)[!]authzid=<authzid>   (RFC 4370; "dn:<dn>" or "u:<user>")[!]chaining[=<resolveBehavior>[/<continuationBehavior>]]one of "chainingPreferred", "chainingRequired","referralsPreferred", "referralsRequired"[!]manageDSAit         (RFC 3296)[!]noopppolicy[!]postread[=<attrs>]  (RFC 4527; comma-separated attr list)[!]preread[=<attrs>]   (RFC 4527; comma-separated attr list)[!]relax[!]sessiontrackingabandon, cancel, ignore (SIGINT sends abandon/cancel,or ignores response; if critical, doesn't wait for SIGINT.not really controls)-h host    LDAP server-H URI     LDAP Uniform Resource Identifier(s)-I         use SASL Interactive mode-n         show what would be done but don't actually do it-N         do not use reverse DNS to canonicalize SASL host name-O props   SASL security properties-o <opt>[=<optparam>] general optionsnettimeout=<timeout> (in seconds, or "none" or "max")ldif-wrap=<width> (in columns, or "no" for no wrapping)-p port    port on LDAP server-Q         use SASL Quiet mode-R realm   SASL realm-U authcid SASL authentication identity-v         run in verbose mode (diagnostics to standard output)-V         print version info (-VV only)-w passwd  bind password (for simple authentication)-W         prompt for bind password-x         Simple authentication-X authzid SASL authorization identity ("dn:<dn>" or "u:<user>")-y file    Read password from file-Y mech    SASL mechanism-Z         Start TLS request (-ZZ to require successful response)

ldapdelete命令

$ ldapdelete --help

Delete entries from an LDAP serverusage: ldapdelete [options] [dn]...dn: list of DNs to delete. If not given, it will be readed from stdinor from the file specified with "-f file".
Delete Options:-c         continuous operation mode (do not stop on errors)-f file    read operations from `file'-M         enable Manage DSA IT control (-MM to make critical)-P version protocol version (default: 3)-r         delete recursively
Common options:-d level   set LDAP debugging level to `level'-D binddn  bind DN-e [!]<ext>[=<extparam>] general extensions (! indicates criticality)[!]assert=<filter>     (RFC 4528; a RFC 4515 Filter string)[!]authzid=<authzid>   (RFC 4370; "dn:<dn>" or "u:<user>")[!]chaining[=<resolveBehavior>[/<continuationBehavior>]]one of "chainingPreferred", "chainingRequired","referralsPreferred", "referralsRequired"[!]manageDSAit         (RFC 3296)[!]noopppolicy[!]postread[=<attrs>]  (RFC 4527; comma-separated attr list)[!]preread[=<attrs>]   (RFC 4527; comma-separated attr list)[!]relax[!]sessiontrackingabandon, cancel, ignore (SIGINT sends abandon/cancel,or ignores response; if critical, doesn't wait for SIGINT.not really controls)-h host    LDAP server-H URI     LDAP Uniform Resource Identifier(s)-I         use SASL Interactive mode-n         show what would be done but don't actually do it-N         do not use reverse DNS to canonicalize SASL host name-O props   SASL security properties-o <opt>[=<optparam>] general optionsnettimeout=<timeout> (in seconds, or "none" or "max")ldif-wrap=<width> (in columns, or "no" for no wrapping)-p port    port on LDAP server-Q         use SASL Quiet mode-R realm   SASL realm-U authcid SASL authentication identity-v         run in verbose mode (diagnostics to standard output)-V         print version info (-VV only)-w passwd  bind password (for simple authentication)-W         prompt for bind password-x         Simple authentication-X authzid SASL authorization identity ("dn:<dn>" or "u:<user>")-y file    Read password from file-Y mech    SASL mechanism-Z         Start TLS request (-ZZ to require successful response)

ldapmodify命令

$ ldapmodify --help

Add or modify entries from an LDAP serverusage: ldapmodify [options]The list of desired operations are read from stdin or from the filespecified by "-f file".
Add or modify options:-a         add values (default is to replace)-c         continuous operation mode (do not stop on errors)-E [!]ext=extparam    modify extensions (! indicate s criticality)-f file    read operations from `file'-M         enable Manage DSA IT control (-MM to make critical)-P version protocol version (default: 3)-S file    write skipped modifications to `file'
Common options:-d level   set LDAP debugging level to `level'-D binddn  bind DN-e [!]<ext>[=<extparam>] general extensions (! indicates criticality)[!]assert=<filter>     (RFC 4528; a RFC 4515 Filter string)[!]authzid=<authzid>   (RFC 4370; "dn:<dn>" or "u:<user>")[!]chaining[=<resolveBehavior>[/<continuationBehavior>]]one of "chainingPreferred", "chainingRequired","referralsPreferred", "referralsRequired"[!]manageDSAit         (RFC 3296)[!]noopppolicy[!]postread[=<attrs>]  (RFC 4527; comma-separated attr list)[!]preread[=<attrs>]   (RFC 4527; comma-separated attr list)[!]relax[!]sessiontrackingabandon, cancel, ignore (SIGINT sends abandon/cancel,or ignores response; if critical, doesn't wait for SIGINT.not really controls)-h host    LDAP server-H URI     LDAP Uniform Resource Identifier(s)-I         use SASL Interactive mode-n         show what would be done but don't actually do it-N         do not use reverse DNS to canonicalize SASL host name-O props   SASL security properties-o <opt>[=<optparam>] general optionsnettimeout=<timeout> (in seconds, or "none" or "max")ldif-wrap=<width> (in columns, or "no" for no wrapping)-p port    port on LDAP server-Q         use SASL Quiet mode-R realm   SASL realm-U authcid SASL authentication identity-v         run in verbose mode (diagnostics to standard output)-V         print version info (-VV only)-w passwd  bind password (for simple authentication)-W         prompt for bind password-x         Simple authentication-X authzid SASL authorization identity ("dn:<dn>" or "u:<user>")-y file    Read password from file-Y mech    SASL mechanism-Z         Start TLS request (-ZZ to require successful response)

ldapmodrdn命令

$ ldapmodrdn --help

Rename LDAP entriesusage: ldapmodrdn [options] [dn rdn]dn rdn: If given, rdn will replace the RDN of the entry specified by DNIf not given, the list of modifications is read from stdin orfrom the file specified by "-f file" (see man page).
Rename options:-c         continuous operation mode (do not stop on errors)-f file    read operations from `file'-M         enable Manage DSA IT control (-MM to make critical)-P version protocol version (default: 3)-r             remove old RDN-s newsup  new superior entry
Common options:-d level   set LDAP debugging level to `level'-D binddn  bind DN-e [!]<ext>[=<extparam>] general extensions (! indicates criticality)[!]assert=<filter>     (RFC 4528; a RFC 4515 Filter string)[!]authzid=<authzid>   (RFC 4370; "dn:<dn>" or "u:<user>")[!]chaining[=<resolveBehavior>[/<continuationBehavior>]]one of "chainingPreferred", "chainingRequired","referralsPreferred", "referralsRequired"[!]manageDSAit         (RFC 3296)[!]noopppolicy[!]postread[=<attrs>]  (RFC 4527; comma-separated attr list)[!]preread[=<attrs>]   (RFC 4527; comma-separated attr list)[!]relax[!]sessiontrackingabandon, cancel, ignore (SIGINT sends abandon/cancel,or ignores response; if critical, doesn't wait for SIGINT.not really controls)-h host    LDAP server-H URI     LDAP Uniform Resource Identifier(s)-I         use SASL Interactive mode-n         show what would be done but don't actually do it-N         do not use reverse DNS to canonicalize SASL host name-O props   SASL security properties-o <opt>[=<optparam>] general optionsnettimeout=<timeout> (in seconds, or "none" or "max")ldif-wrap=<width> (in columns, or "no" for no wrapping)-p port    port on LDAP server-Q         use SASL Quiet mode-R realm   SASL realm-U authcid SASL authentication identity-v         run in verbose mode (diagnostics to standard output)-V         print version info (-VV only)-w passwd  bind password (for simple authentication)-W         prompt for bind password-x         Simple authentication-X authzid SASL authorization identity ("dn:<dn>" or "u:<user>")-y file    Read password from file-Y mech    SASL mechanism-Z         Start TLS request (-ZZ to require successful response)

ldapsearch命令

$ ldapsearch -help

usage: ldapsearch [options] [filter [attributes...]]Search options:-a deref   one of never (default), always, search, or find-A         retrieve attribute names only (no values)-b basedn  base dn for search-c         continuous operation mode (do not stop on errors)-E [!]<ext>[=<extparam>] search extensions (! indicates criticality)[!]domainScope              (domain scope)!dontUseCopy                (Don't Use Copy)[!]mv=<filter>              (RFC 3876 matched values filter)[!]pr=<size>[/prompt|noprompt] (RFC 2696 paged results/prompt)[!]sss=[-]<attr[:OID]>[/[-]<attr[:OID]>...](RFC 2891 server side sorting)[!]subentries[=true|false]  (RFC 3672 subentries)[!]sync=ro[/<cookie>]       (RFC 4533 LDAP Sync refreshOnly)rp[/<cookie>][/<slimit>] (refreshAndPersist)[!]vlv=<before>/<after>(/<offset>/<count>|:<value>)(ldapv3-vlv-09 virtual list views)[!]deref=derefAttr:attr[,...][;derefAttr:attr[,...][;...]][!]<oid>[=:<b64value>] (generic control; no response handling)-f file    read operations from `file'-F prefix  URL prefix for files (default: file:///tmp/)-l limit   time limit (in seconds, or "none" or "max") for search-L         print responses in LDIFv1 format-LL        print responses in LDIF format without comments-LLL       print responses in LDIF format without commentsand version-M         enable Manage DSA IT control (-MM to make critical)-P version protocol version (default: 3)-s scope   one of base, one, sub or children (search scope)-S attr    sort the results by attribute `attr'-t         write binary values to files in temporary directory-tt        write all values to files in temporary directory-T path    write files to directory specified by path (default: /tmp)-u         include User Friendly entry names in the output-z limit   size limit (in entries, or "none" or "max") for search
Common options:-d level   set LDAP debugging level to `level'-D binddn  bind DN-e [!]<ext>[=<extparam>] general extensions (! indicates criticality)[!]assert=<filter>     (RFC 4528; a RFC 4515 Filter string)[!]authzid=<authzid>   (RFC 4370; "dn:<dn>" or "u:<user>")[!]chaining[=<resolveBehavior>[/<continuationBehavior>]]one of "chainingPreferred", "chainingRequired","referralsPreferred", "referralsRequired"[!]manageDSAit         (RFC 3296)[!]noopppolicy[!]postread[=<attrs>]  (RFC 4527; comma-separated attr list)[!]preread[=<attrs>]   (RFC 4527; comma-separated attr list)[!]relax[!]sessiontrackingabandon, cancel, ignore (SIGINT sends abandon/cancel,or ignores response; if critical, doesn't wait for SIGINT.not really controls)-h host    LDAP server-H URI     LDAP Uniform Resource Identifier(s)-I         use SASL Interactive mode-n         show what would be done but don't actually do it-N         do not use reverse DNS to canonicalize SASL host name-O props   SASL security properties-o <opt>[=<optparam>] general optionsnettimeout=<timeout> (in seconds, or "none" or "max")ldif-wrap=<width> (in columns, or "no" for no wrapping)-p port    port on LDAP server-Q         use SASL Quiet mode-R realm   SASL realm-U authcid SASL authentication identity-v         run in verbose mode (diagnostics to standard output)-V         print version info (-VV only)-w passwd  bind password (for simple authentication)-W         prompt for bind password-x         Simple authentication-X authzid SASL authorization identity ("dn:<dn>" or "u:<user>")-y file    Read password from file-Y mech    SASL mechanism-Z         Start TLS request (-ZZ to require successful response)

ldappasswd命令

$ ldappasswd --help

Change password of an LDAP userusage: ldappasswd [options] [user]user: the authentication identity, commonly a DN
Password change options:-a secret  old password-A         prompt for old password-t file    read file for old password-s secret  new password-S         prompt for new password-T file    read file for new password
Common options:-d level   set LDAP debugging level to `level'-D binddn  bind DN-e [!]<ext>[=<extparam>] general extensions (! indicates criticality)[!]assert=<filter>     (RFC 4528; a RFC 4515 Filter string)[!]authzid=<authzid>   (RFC 4370; "dn:<dn>" or "u:<user>")[!]chaining[=<resolveBehavior>[/<continuationBehavior>]]one of "chainingPreferred", "chainingRequired","referralsPreferred", "referralsRequired"[!]manageDSAit         (RFC 3296)[!]noopppolicy[!]postread[=<attrs>]  (RFC 4527; comma-separated attr list)[!]preread[=<attrs>]   (RFC 4527; comma-separated attr list)[!]relax[!]sessiontrackingabandon, cancel, ignore (SIGINT sends abandon/cancel,or ignores response; if critical, doesn't wait for SIGINT.not really controls)-h host    LDAP server-H URI     LDAP Uniform Resource Identifier(s)-I         use SASL Interactive mode-n         show what would be done but don't actually do it-N         do not use reverse DNS to canonicalize SASL host name-O props   SASL security properties-o <opt>[=<optparam>] general optionsnettimeout=<timeout> (in seconds, or "none" or "max")ldif-wrap=<width> (in columns, or "no" for no wrapping)-p port    port on LDAP server-Q         use SASL Quiet mode-R realm   SASL realm-U authcid SASL authentication identity-v         run in verbose mode (diagnostics to standard output)-V         print version info (-VV only)-w passwd  bind password (for simple authentication)-W         prompt for bind password-x         Simple authentication-X authzid SASL authorization identity ("dn:<dn>" or "u:<user>")-y file    Read password from file-Y mech    SASL mechanism-Z         Start TLS request (-ZZ to require successful response)

ldapwhoami命令

$ ldapwhoami --help

Issue LDAP Who am I? operation to request user's authzidusage: ldapwhoami [options]
Common options:-d level   set LDAP debugging level to `level'-D binddn  bind DN-e [!]<ext>[=<extparam>] general extensions (! indicates criticality)[!]assert=<filter>     (RFC 4528; a RFC 4515 Filter string)[!]authzid=<authzid>   (RFC 4370; "dn:<dn>" or "u:<user>")[!]chaining[=<resolveBehavior>[/<continuationBehavior>]]one of "chainingPreferred", "chainingRequired","referralsPreferred", "referralsRequired"[!]manageDSAit         (RFC 3296)[!]noopppolicy[!]postread[=<attrs>]  (RFC 4527; comma-separated attr list)[!]preread[=<attrs>]   (RFC 4527; comma-separated attr list)[!]relax[!]sessiontrackingabandon, cancel, ignore (SIGINT sends abandon/cancel,or ignores response; if critical, doesn't wait for SIGINT.not really controls)-h host    LDAP server-H URI     LDAP Uniform Resource Identifier(s)-I         use SASL Interactive mode-n         show what would be done but don't actually do it-N         do not use reverse DNS to canonicalize SASL host name-O props   SASL security properties-o <opt>[=<optparam>] general optionsnettimeout=<timeout> (in seconds, or "none" or "max")ldif-wrap=<width> (in columns, or "no" for no wrapping)-p port    port on LDAP server-Q         use SASL Quiet mode-R realm   SASL realm-U authcid SASL authentication identity-v         run in verbose mode (diagnostics to standard output)-V         print version info (-VV only)-w passwd  bind password (for simple authentication)-W         prompt for bind password-x         Simple authentication-X authzid SASL authorization identity ("dn:<dn>" or "u:<user>")-y file    Read password from file-Y mech    SASL mechanism-Z         Start TLS request (-ZZ to require successful response)

参考
openldap文档

查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. sublime JS Format js格式化工具

    打开 sublime 包控制器## ctrl+shift+p 或者 点击菜单栏的“Preferences”-->"Package Control"打开包下载器 输入 install package,回车。安装 JS Format js格式化工具 输入 JS Format 弹出插件选项,回车。即可安装 快捷键是 ctrl+shift+f 整理收集了我自己…...

    2024/4/20 18:19:13
  2. C#中MessageBox.Show的用法

    收藏下,用时看看即可,原文地址:http://blog.sina.com.cn/s/blog_65209e220100s2zt.htmlMessageBox.Show (String) 显示具有指定文本的消息框。 由 .NET Compact Framework 支持。 MessageBox.Show (IWin32Window, String) 在指定对象的前面显示具有指定文本的消息框。 Messa…...

    2024/4/21 9:00:29
  3. LDAP常遇问题

    服务器数据初始化 [root@station3 nks]# service ldap statusslapd (pid 5840) 正在运行...[root@station3 nks]# service ldap stop停止 slapd: [确定]将系统账户转移到openldap中[root@mail openldap]# vi /usr/share/openlda…...

    2024/4/21 9:00:28
  4. Highlights of 22nd annual Screen Actors Guild Awards

    preview:Guild:/ɡɪld/n.协会,行会;同业公会Ensemble :[ɑnsɑmbl]n.全体;总效果;全套服装;全套家具;合奏组adv. 同时Oscar-nominated: 奥斯卡提名的entitled:adj.有资格的;给与名称的v. 给…权利;给…定书名;授…以荣誉(entitle的过去分词)simultaneously [saɪ…...

    2024/4/21 9:00:27
  5. 综合应用WPF/WCF/WF/LINQ之三十五:解决CheckListBox控件中选择项丢失的问题

    (本文要感谢Microsoft公司的Neil Ni的帮助。)  其实这个是Microsoft在设计上的一个考虑。由于这些界面元素主要目的是呈现(对我这个控件来说,取值通过属性CheckedValues,如果您试图遍历这些子控件,可能会发现一些子控件甚至都没有加入Visual Tree),如果ListBox里面It…...

    2024/4/21 9:00:26
  6. JavaScript的三种代码书写格式

    在这里我将 JavaScript 的类与 Java(本人主要是做Java开发的) 的类做一个比较,以便大家能够更好的理解。1. 在没有接触 JS 的面向对象编程之前,写JS的函数都是像下面这样写的:function test(){var v1 = "test";var v2 = "value";if(v1=="test"…...

    2024/4/21 9:00:25
  7. LDAP基础:5:使用ldapadd进行数据增加

    在前面的文章中学习到了如何搭建openldap服务,以及如何从客户端进行访问,同时最基础的ldap的概念和树形结构的常见构成方式也多少有些涉及,在这个基础之上,就可以开始使用LDAP了。这篇文章来介绍一下如何创建相关的信息。 创建内容 这里我们将会聚焦于下图灰色部分的创建,…...

    2024/4/21 9:00:24
  8. 魔兽世界单机版(模拟器)入门介绍--Starting off with WoW Emulation. 翻译

    背景:从06年玩魔兽到现在也13年了。5.48的时候在国外读研、时间特别多,在艾苏恩的“魔兽夜店”lm公会(永远记得这段快乐的时光),围攻奥格达到了我的顶峰(带团),回国后找工作6.X没玩。从7.x就开始咸鱼,H都没通。现在也得结婚成家了。以后更加咸鱼了,指不定哪天就AFK。…...

    2024/4/26 20:59:40
  9. js格式化时间

    1.JS格式化时间方法格式一: 2018-1-29-10:34:49var curr_time = new Date(); Myformatter(curr_time);function myformatter(date){ var strDate = date.getFullYear()+"-"; strDate += date.getMonth()+1+"-"; …...

    2024/4/25 14:16:50
  10. C#中ChecklistBox的部分用法

    一、绑定数据 1.直接绑定,如图所示。在属性中找到Items属性,添加集合,每行为一个结果。2.代码绑定checkedListBox1.Items.Add(string); 二、获取数据 1.所有值checkedListBox1.Items 2.获取选中值 private List<string> GetCheckedItems(CheckedListBox clb){List<…...

    2024/4/20 10:57:10
  11. MessageBox()的参数用法总结

    1、MessageBox.Show("hello","world!",MessageBoxButtons.OKCancel,MessageBoxIcon.Error); 我想在按了 “是”之后 做一些工作,怎么知道我按的是 “是 ”还是“取消”怎么写代码?if (MessageBox.Show("hello", "world!", MessageBo…...

    2024/4/21 9:00:21
  12. JS的书写格式

    JS的书写格式与CSS相同:分为行内JS、内部JS和外部JS三种 1.行内JS 直接在body语句中写:<input type="button" value="点击有惊喜" οnclick="javascript:alert(哈哈哈)" />2.内部JS<!DOCTYPE html> <html lang="en"&…...

    2024/4/21 9:00:19
  13. 一个CheckedListBox操作类

    using System;using System.Collections.Generic;using System.Text;using System.Windows.Forms;namespace WindowsApplication1...{ class CheckListBox ...{ /**//// <summary> /// 选择所有的选项 /// </summary> /// <…...

    2024/4/21 9:00:20
  14. ldap命令初试

    ldap是企业基础设施,我对其配置一直很感兴趣。 今天读了一篇网上的“陈云川的OPENLDAP系列",对其有了基本的认识,结合公司的ldap,尝试了一下: ldapsearch -h 192.168.1.10 -D "uid=enlaizhou,ou=People,dc=example,dc=com" -W -b "ou=People,dc=example…...

    2024/4/23 7:49:23
  15. 移植性问题の[windows编程]error C2664: “MessageBoxW”: 不能将参数 2 从“char *”转......

    执行 MessageBox(NULL,Temp,"Application Error",MB_ICONSTOP); 时出现以下错误: error C2664: “MessageBoxW”: 不能将参数 2 从“char *”转换为“LPCWSTR” 其中定义: char* Temp=new char[200]; 请问怎么改啊?因为你的程序在UNICODE(宽字节)字符集下运行,…...

    2024/4/21 9:00:17
  16. QTP测试.NET控件CheckedListBox

    对于.NET的CheckedListBox控件,我们可以适当封装,让其可以支持设置CheckListBox中指定Index的某一项的勾选状态的功能,以及支持设置CheckListBox中指定内容的某一项的勾选状态的功能,具体的实现代码如下所示: 设置CheckListBox中指定Index的某一项的勾选状态 Function Che…...

    2024/4/21 9:00:15
  17. CentOS 上使用squidguard 配置ldapsearch會遇到syntax error

    如果你使用Centos自帶的squidguard包,那么你在配置使用ldap auth時就會遇到這個問題. 因為默認安裝的時候squidguard是不帶ldap支持的!!!如果你沒注意到這一點,而只看到log中的syntax error,你就會浪費大量的時間,因為不管你怎麼調整你的ldap search語句都不會正確. 如何確認是…...

    2024/4/21 9:00:14
  18. js文件格式

    //操作处理 var handler = {//绑定事件bindEvent: function () {},//跳转档案toDaPage : function(e) {var url = document_url + e;window.open(url);},queryHandler: function () {listPage.queryPage();//调用默认查询分页封装方法},//查看位置信息location: function(jd, w…...

    2024/4/20 18:19:20
  19. C# WinForm中CheckedListBox控件的数据绑定及DisplayMember与ValueMember获取问题

    WinForm下的CheckListBox与asp.net下的CheckBoxList不一样,绑定与设置也没有那简单.web下只要设置DataSource,Value和Text即可,而且在获取文本的value时也很方便. 但WinForm下就没有那么方便了,但如果要实现有Text和Value也不难.我也是参照着网上资料自己写了一个.绑定时也还是…...

    2024/4/20 18:19:20
  20. centos7安装ldap

    yum安装第一步,安装依赖和软件yum install -y openldap-servers openldap-clients cp /usr/share/openldap-servers/DB_CONFIG.example /var/lib/ldap/DB_CONFIG chown ldap. /var/lib/ldap/DB_CONFIG systemctl enable slapd systemctl start slapd第二步,使用 slappasswd 命…...

    2024/4/20 18:19:18

最新文章

  1. vue2 点击预览本地 word excle pdf 文件

    安装 考虑到三个包加一起的话会比较大&#xff0c;所以拆成了三个包&#xff0c;需要哪个自行安装即可。 //docx文档预览组件 npm install vue-office/docx//excel文档预览组件 npm install vue-office/excel//pdf文档预览组件 npm install vue-office/pdf npm i --save vue…...

    2024/4/30 16:06:42
  2. 梯度消失和梯度爆炸的一些处理方法

    在这里是记录一下梯度消失或梯度爆炸的一些处理技巧。全当学习总结了如有错误还请留言&#xff0c;在此感激不尽。 权重和梯度的更新公式如下&#xff1a; w w − η ⋅ ∇ w w w - \eta \cdot \nabla w ww−η⋅∇w 个人通俗的理解梯度消失就是网络模型在反向求导的时候出…...

    2024/3/20 10:50:27
  3. 使用阿里云试用Elasticsearch学习:1.3 基础入门——搜索-最基本的工具

    现在&#xff0c;我们已经学会了如何使用 Elasticsearch 作为一个简单的 NoSQL 风格的分布式文档存储系统。我们可以将一个 JSON 文档扔到 Elasticsearch 里&#xff0c;然后根据 ID 检索。但 Elasticsearch 真正强大之处在于可以从无规律的数据中找出有意义的信息——从“大数…...

    2024/4/29 8:49:20
  4. 24 个Intellij IDEA好用插件

    24 个Intellij IDEA好用插件 一. 安装插件 Codota 代码智能提示插件 只要打出首字母就能联想出一整条语句&#xff0c;这也太智能了&#xff0c;还显示了每条语句使用频率。 原因是它学习了我的项目代码&#xff0c;总结出了我的代码偏好。 Key Promoter X 快捷键提示插件 …...

    2024/4/29 10:47:13
  5. 【外汇早评】美通胀数据走低,美元调整

    原标题:【外汇早评】美通胀数据走低,美元调整昨日美国方面公布了新一期的核心PCE物价指数数据,同比增长1.6%,低于前值和预期值的1.7%,距离美联储的通胀目标2%继续走低,通胀压力较低,且此前美国一季度GDP初值中的消费部分下滑明显,因此市场对美联储后续更可能降息的政策…...

    2024/4/29 23:16:47
  6. 【原油贵金属周评】原油多头拥挤,价格调整

    原标题:【原油贵金属周评】原油多头拥挤,价格调整本周国际劳动节,我们喜迎四天假期,但是整个金融市场确实流动性充沛,大事频发,各个商品波动剧烈。美国方面,在本周四凌晨公布5月份的利率决议和新闻发布会,维持联邦基金利率在2.25%-2.50%不变,符合市场预期。同时美联储…...

    2024/4/29 6:03:24
  7. 【外汇周评】靓丽非农不及疲软通胀影响

    原标题:【外汇周评】靓丽非农不及疲软通胀影响在刚结束的周五,美国方面公布了新一期的非农就业数据,大幅好于前值和预期,新增就业重新回到20万以上。具体数据: 美国4月非农就业人口变动 26.3万人,预期 19万人,前值 19.6万人。 美国4月失业率 3.6%,预期 3.8%,前值 3…...

    2024/4/29 2:29:43
  8. 【原油贵金属早评】库存继续增加,油价收跌

    原标题:【原油贵金属早评】库存继续增加,油价收跌周三清晨公布美国当周API原油库存数据,上周原油库存增加281万桶至4.692亿桶,增幅超过预期的74.4万桶。且有消息人士称,沙特阿美据悉将于6月向亚洲炼油厂额外出售更多原油,印度炼油商预计将每日获得至多20万桶的额外原油供…...

    2024/4/29 14:21:50
  9. 【外汇早评】日本央行会议纪要不改日元强势

    原标题:【外汇早评】日本央行会议纪要不改日元强势近两日日元大幅走强与近期市场风险情绪上升,避险资金回流日元有关,也与前一段时间的美日贸易谈判给日本缓冲期,日本方面对汇率问题也避免继续贬值有关。虽然今日早间日本央行公布的利率会议纪要仍然是支持宽松政策,但这符…...

    2024/4/27 17:58:04
  10. 【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响

    原标题:【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响近日伊朗局势升温,导致市场担忧影响原油供给,油价试图反弹。此时OPEC表态稳定市场。据消息人士透露,沙特6月石油出口料将低于700万桶/日,沙特已经收到石油消费国提出的6月份扩大出口的“适度要求”,沙特将满…...

    2024/4/27 14:22:49
  11. 【外汇早评】美欲与伊朗重谈协议

    原标题:【外汇早评】美欲与伊朗重谈协议美国对伊朗的制裁遭到伊朗的抗议,昨日伊朗方面提出将部分退出伊核协议。而此行为又遭到欧洲方面对伊朗的谴责和警告,伊朗外长昨日回应称,欧洲国家履行它们的义务,伊核协议就能保证存续。据传闻伊朗的导弹已经对准了以色列和美国的航…...

    2024/4/28 1:28:33
  12. 【原油贵金属早评】波动率飙升,市场情绪动荡

    原标题:【原油贵金属早评】波动率飙升,市场情绪动荡因中美贸易谈判不安情绪影响,金融市场各资产品种出现明显的波动。随着美国与中方开启第十一轮谈判之际,美国按照既定计划向中国2000亿商品征收25%的关税,市场情绪有所平复,已经开始接受这一事实。虽然波动率-恐慌指数VI…...

    2024/4/30 9:43:09
  13. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

    原标题:【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试美国和伊朗的局势继续升温,市场风险情绪上升,避险黄金有向上突破阻力的迹象。原油方面稍显平稳,近期美国和OPEC加大供给及市场需求回落的影响,伊朗局势并未推升油价走强。近期中美贸易谈判摩擦再度升级,美国对中…...

    2024/4/27 17:59:30
  14. 【原油贵金属早评】市场情绪继续恶化,黄金上破

    原标题:【原油贵金属早评】市场情绪继续恶化,黄金上破周初中国针对于美国加征关税的进行的反制措施引发市场情绪的大幅波动,人民币汇率出现大幅的贬值动能,金融市场受到非常明显的冲击。尤其是波动率起来之后,对于股市的表现尤其不安。隔夜美国股市出现明显的下行走势,这…...

    2024/4/25 18:39:16
  15. 【外汇早评】美伊僵持,风险情绪继续升温

    原标题:【外汇早评】美伊僵持,风险情绪继续升温昨日沙特两艘油轮再次发生爆炸事件,导致波斯湾局势进一步恶化,市场担忧美伊可能会出现摩擦生火,避险品种获得支撑,黄金和日元大幅走强。美指受中美贸易问题影响而在低位震荡。继5月12日,四艘商船在阿联酋领海附近的阿曼湾、…...

    2024/4/28 1:34:08
  16. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

    原标题:【原油贵金属早评】贸易冲突导致需求低迷,油价弱势近日虽然伊朗局势升温,中东地区几起油船被袭击事件影响,但油价并未走高,而是出于调整结构中。由于市场预期局势失控的可能性较低,而中美贸易问题导致的全球经济衰退风险更大,需求会持续低迷,因此油价调整压力较…...

    2024/4/26 19:03:37
  17. 氧生福地 玩美北湖(上)——为时光守候两千年

    原标题:氧生福地 玩美北湖(上)——为时光守候两千年一次说走就走的旅行,只有一张高铁票的距离~ 所以,湖南郴州,我来了~ 从广州南站出发,一个半小时就到达郴州西站了。在动车上,同时改票的南风兄和我居然被分到了一个车厢,所以一路非常愉快地聊了过来。 挺好,最起…...

    2024/4/29 20:46:55
  18. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

    原标题:氧生福地 玩美北湖(中)——永春梯田里的美与鲜一觉醒来,因为大家太爱“美”照,在柳毅山庄去寻找龙女而错过了早餐时间。近十点,向导坏坏还是带着饥肠辘辘的我们去吃郴州最富有盛名的“鱼头粉”。说这是“十二分推荐”,到郴州必吃的美食之一。 哇塞!那个味美香甜…...

    2024/4/25 18:39:14
  19. 氧生福地 玩美北湖(下)——奔跑吧骚年!

    原标题:氧生福地 玩美北湖(下)——奔跑吧骚年!让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 啊……啊……啊 两…...

    2024/4/26 23:04:58
  20. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

    原标题:扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!扒开伪装医用面膜,翻六倍价格宰客!当行业里的某一品项火爆了,就会有很多商家蹭热度,装逼忽悠,最近火爆朋友圈的医用面膜,被沾上了污点,到底怎么回事呢? “比普通面膜安全、效果好!痘痘、痘印、敏感肌都能用…...

    2024/4/27 23:24:42
  21. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

    原标题:「发现」铁皮石斛仙草之神奇功效用于医用面膜丽彦妆铁皮石斛医用面膜|石斛多糖无菌修护补水贴19大优势: 1、铁皮石斛:自唐宋以来,一直被列为皇室贡品,铁皮石斛生于海拔1600米的悬崖峭壁之上,繁殖力差,产量极低,所以古代仅供皇室、贵族享用 2、铁皮石斛自古民间…...

    2024/4/28 5:48:52
  22. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

    原标题:丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者【公司简介】 广州华彬企业隶属香港华彬集团有限公司,专注美业21年,其旗下品牌: 「圣茵美」私密荷尔蒙抗衰,产后修复 「圣仪轩」私密荷尔蒙抗衰,产后修复 「花茵莳」私密荷尔蒙抗衰,产后修复 「丽彦妆」专注医学护…...

    2024/4/30 9:42:22
  23. 广州械字号面膜生产厂家OEM/ODM4项须知!

    原标题:广州械字号面膜生产厂家OEM/ODM4项须知!广州械字号面膜生产厂家OEM/ODM流程及注意事项解读: 械字号医用面膜,其实在我国并没有严格的定义,通常我们说的医美面膜指的应该是一种「医用敷料」,也就是说,医用面膜其实算作「医疗器械」的一种,又称「医用冷敷贴」。 …...

    2024/4/30 9:43:22
  24. 械字号医用眼膜缓解用眼过度到底有无作用?

    原标题:械字号医用眼膜缓解用眼过度到底有无作用?医用眼膜/械字号眼膜/医用冷敷眼贴 凝胶层为亲水高分子材料,含70%以上的水分。体表皮肤温度传导到本产品的凝胶层,热量被凝胶内水分子吸收,通过水分的蒸发带走大量的热量,可迅速地降低体表皮肤局部温度,减轻局部皮肤的灼…...

    2024/4/30 9:42:49
  25. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

    解析如下&#xff1a;1、长按电脑电源键直至关机&#xff0c;然后再按一次电源健重启电脑&#xff0c;按F8健进入安全模式2、安全模式下进入Windows系统桌面后&#xff0c;按住“winR”打开运行窗口&#xff0c;输入“services.msc”打开服务设置3、在服务界面&#xff0c;选中…...

    2022/11/19 21:17:18
  26. 错误使用 reshape要执行 RESHAPE,请勿更改元素数目。

    %读入6幅图像&#xff08;每一幅图像的大小是564*564&#xff09; f1 imread(WashingtonDC_Band1_564.tif); subplot(3,2,1),imshow(f1); f2 imread(WashingtonDC_Band2_564.tif); subplot(3,2,2),imshow(f2); f3 imread(WashingtonDC_Band3_564.tif); subplot(3,2,3),imsho…...

    2022/11/19 21:17:16
  27. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

    win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”问题的解决方法在win7系统关机时如果有升级系统的或者其他需要会直接进入一个 等待界面&#xff0c;在等待界面中我们需要等待操作结束才能关机&#xff0c;虽然这比较麻烦&#xff0c;但是对系统进行配置和升级…...

    2022/11/19 21:17:15
  28. 台式电脑显示配置100%请勿关闭计算机,“准备配置windows 请勿关闭计算机”的解决方法...

    有不少用户在重装Win7系统或更新系统后会遇到“准备配置windows&#xff0c;请勿关闭计算机”的提示&#xff0c;要过很久才能进入系统&#xff0c;有的用户甚至几个小时也无法进入&#xff0c;下面就教大家这个问题的解决方法。第一种方法&#xff1a;我们首先在左下角的“开始…...

    2022/11/19 21:17:14
  29. win7 正在配置 请勿关闭计算机,怎么办Win7开机显示正在配置Windows Update请勿关机...

    置信有很多用户都跟小编一样遇到过这样的问题&#xff0c;电脑时发现开机屏幕显现“正在配置Windows Update&#xff0c;请勿关机”(如下图所示)&#xff0c;而且还需求等大约5分钟才干进入系统。这是怎样回事呢&#xff1f;一切都是正常操作的&#xff0c;为什么开时机呈现“正…...

    2022/11/19 21:17:13
  30. 准备配置windows 请勿关闭计算机 蓝屏,Win7开机总是出现提示“配置Windows请勿关机”...

    Win7系统开机启动时总是出现“配置Windows请勿关机”的提示&#xff0c;没过几秒后电脑自动重启&#xff0c;每次开机都这样无法进入系统&#xff0c;此时碰到这种现象的用户就可以使用以下5种方法解决问题。方法一&#xff1a;开机按下F8&#xff0c;在出现的Windows高级启动选…...

    2022/11/19 21:17:12
  31. 准备windows请勿关闭计算机要多久,windows10系统提示正在准备windows请勿关闭计算机怎么办...

    有不少windows10系统用户反映说碰到这样一个情况&#xff0c;就是电脑提示正在准备windows请勿关闭计算机&#xff0c;碰到这样的问题该怎么解决呢&#xff0c;现在小编就给大家分享一下windows10系统提示正在准备windows请勿关闭计算机的具体第一种方法&#xff1a;1、2、依次…...

    2022/11/19 21:17:11
  32. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”的解决方法...

    今天和大家分享一下win7系统重装了Win7旗舰版系统后&#xff0c;每次关机的时候桌面上都会显示一个“配置Windows Update的界面&#xff0c;提示请勿关闭计算机”&#xff0c;每次停留好几分钟才能正常关机&#xff0c;导致什么情况引起的呢&#xff1f;出现配置Windows Update…...

    2022/11/19 21:17:10
  33. 电脑桌面一直是清理请关闭计算机,windows7一直卡在清理 请勿关闭计算机-win7清理请勿关机,win7配置更新35%不动...

    只能是等着&#xff0c;别无他法。说是卡着如果你看硬盘灯应该在读写。如果从 Win 10 无法正常回滚&#xff0c;只能是考虑备份数据后重装系统了。解决来方案一&#xff1a;管理员运行cmd&#xff1a;net stop WuAuServcd %windir%ren SoftwareDistribution SDoldnet start WuA…...

    2022/11/19 21:17:09
  34. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

    原标题&#xff1a;电脑提示“配置Windows Update请勿关闭计算机”怎么办&#xff1f;win7系统中在开机与关闭的时候总是显示“配置windows update请勿关闭计算机”相信有不少朋友都曾遇到过一次两次还能忍但经常遇到就叫人感到心烦了遇到这种问题怎么办呢&#xff1f;一般的方…...

    2022/11/19 21:17:08
  35. 计算机正在配置无法关机,关机提示 windows7 正在配置windows 请勿关闭计算机 ,然后等了一晚上也没有关掉。现在电脑无法正常关机...

    关机提示 windows7 正在配置windows 请勿关闭计算机 &#xff0c;然后等了一晚上也没有关掉。现在电脑无法正常关机以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;关机提示 windows7 正在配…...

    2022/11/19 21:17:05
  36. 钉钉提示请勿通过开发者调试模式_钉钉请勿通过开发者调试模式是真的吗好不好用...

    钉钉请勿通过开发者调试模式是真的吗好不好用 更新时间:2020-04-20 22:24:19 浏览次数:729次 区域: 南阳 > 卧龙 列举网提醒您:为保障您的权益,请不要提前支付任何费用! 虚拟位置外设器!!轨迹模拟&虚拟位置外设神器 专业用于:钉钉,外勤365,红圈通,企业微信和…...

    2022/11/19 21:17:05
  37. 配置失败还原请勿关闭计算机怎么办,win7系统出现“配置windows update失败 还原更改 请勿关闭计算机”,长时间没反应,无法进入系统的解决方案...

    前几天班里有位学生电脑(windows 7系统)出问题了&#xff0c;具体表现是开机时一直停留在“配置windows update失败 还原更改 请勿关闭计算机”这个界面&#xff0c;长时间没反应&#xff0c;无法进入系统。这个问题原来帮其他同学也解决过&#xff0c;网上搜了不少资料&#x…...

    2022/11/19 21:17:04
  38. 一个电脑无法关闭计算机你应该怎么办,电脑显示“清理请勿关闭计算机”怎么办?...

    本文为你提供了3个有效解决电脑显示“清理请勿关闭计算机”问题的方法&#xff0c;并在最后教给你1种保护系统安全的好方法&#xff0c;一起来看看&#xff01;电脑出现“清理请勿关闭计算机”在Windows 7(SP1)和Windows Server 2008 R2 SP1中&#xff0c;添加了1个新功能在“磁…...

    2022/11/19 21:17:03
  39. 请勿关闭计算机还原更改要多久,电脑显示:配置windows更新失败,正在还原更改,请勿关闭计算机怎么办...

    许多用户在长期不使用电脑的时候&#xff0c;开启电脑发现电脑显示&#xff1a;配置windows更新失败&#xff0c;正在还原更改&#xff0c;请勿关闭计算机。。.这要怎么办呢&#xff1f;下面小编就带着大家一起看看吧&#xff01;如果能够正常进入系统&#xff0c;建议您暂时移…...

    2022/11/19 21:17:02
  40. 还原更改请勿关闭计算机 要多久,配置windows update失败 还原更改 请勿关闭计算机,电脑开机后一直显示以...

    配置windows update失败 还原更改 请勿关闭计算机&#xff0c;电脑开机后一直显示以以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;配置windows update失败 还原更改 请勿关闭计算机&#x…...

    2022/11/19 21:17:01
  41. 电脑配置中请勿关闭计算机怎么办,准备配置windows请勿关闭计算机一直显示怎么办【图解】...

    不知道大家有没有遇到过这样的一个问题&#xff0c;就是我们的win7系统在关机的时候&#xff0c;总是喜欢显示“准备配置windows&#xff0c;请勿关机”这样的一个页面&#xff0c;没有什么大碍&#xff0c;但是如果一直等着的话就要两个小时甚至更久都关不了机&#xff0c;非常…...

    2022/11/19 21:17:00
  42. 正在准备配置请勿关闭计算机,正在准备配置windows请勿关闭计算机时间长了解决教程...

    当电脑出现正在准备配置windows请勿关闭计算机时&#xff0c;一般是您正对windows进行升级&#xff0c;但是这个要是长时间没有反应&#xff0c;我们不能再傻等下去了。可能是电脑出了别的问题了&#xff0c;来看看教程的说法。正在准备配置windows请勿关闭计算机时间长了方法一…...

    2022/11/19 21:16:59
  43. 配置失败还原请勿关闭计算机,配置Windows Update失败,还原更改请勿关闭计算机...

    我们使用电脑的过程中有时会遇到这种情况&#xff0c;当我们打开电脑之后&#xff0c;发现一直停留在一个界面&#xff1a;“配置Windows Update失败&#xff0c;还原更改请勿关闭计算机”&#xff0c;等了许久还是无法进入系统。如果我们遇到此类问题应该如何解决呢&#xff0…...

    2022/11/19 21:16:58
  44. 如何在iPhone上关闭“请勿打扰”

    Apple’s “Do Not Disturb While Driving” is a potentially lifesaving iPhone feature, but it doesn’t always turn on automatically at the appropriate time. For example, you might be a passenger in a moving car, but your iPhone may think you’re the one dri…...

    2022/11/19 21:16:57