星期日, 十一月 23, 2008

lighttpd-1.5.0-r1992-native.win32.zip

一直在等lighttpd for win32的发布,终于1.5.0版本中对于Win32的支持已经考虑在内了,但是官方版本是没有推出可以直接在MSVC中编译的工程,因为着急,所以自己改了一个,喜欢研究的朋友可以从这里下载一试!支持Lua!

下载   http://cid-93488dd0cf5117e9.skydrive.live.com/self.aspx/Public/lighttpd-1.5.0-r1992-native.win32.zip

星期三, 十一月 12, 2008

Windows PKI相关的一些资料

http://blogs.technet.com/pki/default.aspx


Manually publishing a CA certificate or CRL into a LDAP store
The CA is automatically publishing its own certificates and related CRLs into Active Directory if a LDAP reference is configured in the CA property “Extensions”.
If you are using a different LDAP server (such as Microsoft ADAM) to make the CA certificate and CRL available, certificates and CRLs must be published manually. The easiest way to do that is with certutil.
Perform the following command to publish the CRL manually into a LDAP-store.
certutil –addstore "LDAP://[server]/[DN]?certificateRevocationList?base?objectclass=cRLDistributionPoint" [CRL-File]
Replace [server] with the name of the LDAP server where you have write permissions.Replace [DN] with the path that you have used in the CA configuration.Replace [CRL-File] with the file name of the CRL that you want to publish.
Here is the command to publish a CA certificate manually:
certutil –addstore "LDAP://[server]/[DN]?cACertificate?base?objectClass=certificationAuthority" [cert-file]To manually publish a CA certificate or CRL into Active Directory you should still use certutil –dspublish instead of certutil –addstore.
Published Friday, April 13, 2007 10:27 AM by MS2065
Filed under: ,
Comments
# re: Manually publishing a CA certificate or CRL into a LDAP store
I'd like to import a CRL into Microsoft ADAM. I need to do this so the CRL can be read by a third party app that is expecting the CRL to be loaded in ADAM.
I've tried running the command listed above. e.g.
certutil –addstore "LDAP://[127.0.0.1:50000/ou=myou,dc=test,dc=net?cACertificate?base?objectClass=certificationAuthority" cert.crl
However, i get the following error:
Cannot open Cert store.
CertUtil: -addstore command FAILED: 0x80070005 (WIN32: 5)
CertUtil: Access is denied.
I'm logged on as the administrator and have full privs to ADAM. I'm guessing the error is caused by the fact certutil can't create an object of class cRLDistributionPoint (as it's not in the schema).
My question is, how do i setup ADAM so it can accept a CRL using the command you've shown.
Appreciate your help.
Monday, May 19, 2008 3:28 AM by hinchley
# re: Manually publishing a CA certificate or CRL into a LDAP store
I guess that "[127.0.0.1:50000" is a typo in your sample command. The bracket is definitely a misplaced character.
Secondly, your command uses objectClass=certificationAuthority instead of objectclass=cRLDistributionPoint. This should be also corrected.
You can try to use the -f option with -addstore. This forces certutil to create missing objects. If this does not work either, you have to extend the ADAM schema.
Tuesday, May 20, 2008 12:41 AM by MS2065 Anonymous comments are disabled