svn+ apache + ldap 配置: <Location />
# Uncomment this to enable the repository
DAV svn
# Set this to the path to your repository
#SVNPath /var/lib/svn
# Alternatively, use SVNParentP...
分类:
Web程序 时间:
2015-02-09 16:23:48
阅读次数:
168
1.安装svn1.yum-yinstallsubversion2.建立版本库目录并启动1.mkdir-p/data/svndata2.svnserve-d-r/var/www/svndata3.建立版本库:创建一个新的Subversion项目1.svnadmincreate/data/svndata/project4.配置允许用户gxw访问1.cd/data/svndata/project/conf2.visvnserve.conf###必..
分类:
其他好文 时间:
2015-02-09 16:16:26
阅读次数:
251
1.使用openssl生成服务器和客户端证书生成服务器证书,服务器使用自签名证书(也就是自己扮演CA)opensslgenrsa-outserver-key.pem2048
opensslreq-new-sha256-keyserver-key.pem-outserver-csr.pem//在CN处填写服务器主机名www.qikangwei.com
opensslx509-req-inserver-csr.pe..
分类:
Web程序 时间:
2015-02-09 16:15:44
阅读次数:
231
Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST.Callingnext()will return the next...
分类:
其他好文 时间:
2015-02-09 00:45:05
阅读次数:
159
IBM Tivoli Directoy Server是对轻量级目录访问协议(Lightweight Directory Access Protocol,LDAP)的一个完整实现,功能强大、稳定可靠,是构建企业门户的基础磐石; 本系列文章以图文方式讲解TDS安装的相关知识; 系列文章目录如下: 1、安...
分类:
系统相关 时间:
2015-02-09 00:37:09
阅读次数:
403
http://kb.cnblogs.com/page/197396/ SSL 和TLS协议 http://blog.csdn.net/fangaoxin/article/details/6942312 SSL:(Secure Socket Layer,安全套接字层),位于可靠的面向连接的网络层协.....
分类:
其他好文 时间:
2015-02-09 00:36:11
阅读次数:
214
分页规律方法1(最常用):start:(pageIndex-1)*pageSize+1 end:pageIndex*pageSizeselect * from (select *,row_number() over(order by Id desc) as rowIndex from tb_Pe.....
分类:
Web程序 时间:
2015-02-08 18:09:19
阅读次数:
186
刚转好的UBUNTU14.04.01 TLS .试了一下GCC,结果如下不能编译gcc -o hello hello.cppgcc: error trying to exec 'cc1plus': execvp: 没有那个文件或目录Baidu首先是配置gcc,在ubuntu安装完成已经有gcc了(g...
分类:
编程语言 时间:
2015-02-08 12:49:41
阅读次数:
168
SELECTTOP页大小*FROM(SELECTROW_NUMBER()OVER(ORDERBYid)ASRowNumber,*FROMtable1)AWHERERowNumber>页大小*(页数-1)
分类:
数据库 时间:
2015-02-07 20:16:25
阅读次数:
166
针对返回结果为参数的一、 先建立自己的存储过程ALTER PROCEDURE [dbo].[REName] @Gender varchar(20)ASBEGIN select ROW_NUMBER() over(order by Name asc) as [序号], Name...
分类:
数据库 时间:
2015-02-07 13:03:17
阅读次数:
133