windos中Trac+apache+svn的安装与配置

http://trac.edgewall.org/wiki/TracInstall官网安装步骤简介

第一步:安装python2.7.8(傻瓜安装)

第二步:安装setuptools(傻瓜安装)

创建两个文件

在C:\Python27\Lib\site-packages下altinstall.pth

import os, site; site.addsitedir(os.path.expanduser(‘~/lib/python2.7‘))

在C:\Python27\Lib\distutils下pydistutils.cfg

[install]

install_lib = ~/lib/python2.7

# This next line is optional but often quite useful; it directs EasyInstall

# and the distutils to install scripts in the user‘s "bin" directory.  For

# Mac OS X framework Python builds, you should use /usr/local/bin instead,

# because neither ~/bin nor the default script installation location are on

# the system PATH.

#

install_scripts = ~/bin

第三部:安装Genshi 在DOS里c:/python27/Script执行easy_install Genshi安装

第四步:安装postgresql-9.2.9-1-windows

第五步:安装psycopg2-2.5.4

Svn

第六步:安装trac1.0 在DOS里c:/python27/Script执行 easy_install Trac==1.0

第七步:安装apache

第七步:Creating a Project Environment

1、  手动创建path/to路径执行trac-admin /path/to/myproject initenv

第八步:更改权限chown -R apache.apache /path/to/myproject

第八步:tracd --port 8080 /path/to/myproject

第九步:增加用户 trac-admin /path/to/myproject permission add admin TRAC_ADMIN

第十步:密码验证

from optparse import OptionParser

# The md5 module is deprecated in Python 2.5

try:

from hashlib import md5

except ImportError:

from md5 import md5

realm = ‘trac‘

# build the options

usage = "usage: %prog [options]"

parser = OptionParser(usage=usage)

parser.add_option("-u", "--username",action="store", dest="username", type = "string",

help="the username for whom to generate a password")

parser.add_option("-p", "--password",action="store", dest="password", type = "string",

help="the password to use")

parser.add_option("-r", "--realm",action="store", dest="realm", type = "string",

help="the realm in which to create the digest")

(options, args) = parser.parse_args()

# check options

if (options.username is None) or (options.password is None):

parser.error("You must supply both the username and password")

if (options.realm is not None):

realm = options.realm

# Generate the string to enter into the htdigest file

kd = lambda x: md5(‘:‘.join(x)).hexdigest()

print ‘:‘.join((options.username, realm, kd([options.username, realm, options.password])))

将上面的代码保存到一个新文本文件中,放到c盘下 trac-digest.py, C:\Python24>python c:\trac-digest.py -u admin -p admin >>c:\ digest.txt会在c:\目录下生成一个digest.txt的密码文件,该文件的格式是“用户名:范围名(readlm名称,默认是trac):密码的密文”。

第十一步:C:\Python27\Scripts>tracd -p 8080 --auth="myproject,c:/digest.txt,trac" c:/path/to

/myproject

第十二步:安装:VisualSVN-4.0.9.msi    VisualSVN-Server-2.7.2    端口8443

第十三步:创建svn库及用户

第十四步:svn和trac结合(待定,还未亲自配置成功过,)

注:centos6.5亲自配置过,是可以使用,一键安装包即可

详情请询问QQ:1183810577

时间: 2025-01-05 22:05:20

windos中Trac+apache+svn的安装与配置的相关文章

apache svn subversion安装和配置(使用源码安装包方式)

环境:虚拟机下centos7 1.下载安装包:http://subversion.apache.org/download.cgi 2.上传到指定文件夹并解压 3.安装依赖包 apr apr-utilsqlite-amalgamation下载地址:http://apr.apache.org/download.cgi 安装方法,apr:./configure --prefix=/usr/local/aprmake & make install 安装方法,apr-util:./configure --

Ubuntu14.0.4系统下 SVN的安装与配置

Ubuntu14.0.4系统下  SVN的安装与配置 SVN(subversion)是近年来崛起的版本管理工具,绝大多数开源软件都使用了svn作为代码版本管理软件.对于写代码的用户来说使用版本控制管理工具svn来说最合适 不过了,下面就介绍一下在Ubuntu 14.0.4下安装和配置SVN的简要方法! 本文是小编亲自整理.测试.验证过的方法,也可以算是最全.最简易的SVN安装配置方法! 下面文档分为四个部分: 1.在Ubuntu 14.0.4系统中安装SVN 2.配置SVN 3.启动和关闭svn

【Linux】SVN的安装和配置

SVN SVN:SVN是Subversion的简称,是一种开放代码的版本控制系统,相比较RCS.CVS,它采用了分支管理系统,它的设计目标就是取代CVS.互联网上很多版本控制器服务已从CVS迁移到Subversion. 环境与原料 操作系统:Linux(CentOS版) svn版本:subversion-1.9.3.tar.gz(下载地址:http://subversion.apache.org/download) arp软件:apr-1.5.2.tar.gz(下载地址:http://apach

centos svn的安装和配置

1.安装svn yum -y install subversion 2.配置 mkdir /home/svn/admin/test mkdir /home/svn/svnrepos svnadmin create /home/svn/admin/test 3.配置单个项目 vi test/conf/svnserve.conf #修改成一下的就可以了 ### This file controls the configuration of the svnserve daemon, if you ##

Windows 下 Apache HTTP Server 安装、配置以及与 Tomcat 的整合(附图)

如果您能点开这篇文章,说明您已对熟悉Apache HTTP Server(下文用Apache简称)配置的重要性已很清楚了,本文不在赘述,直接介入正题,请往下阅读: 为便于阅读,列出文章目录: 一.Apache 的安装说明 二.Apache 的基本配置 三.Apache 整合 Tomcat 的配置 以下为正文内容: 一.Apache 的安装说明 1.首先打开Apache官网,进入Windows版本的下载地址页面:http://archive.apache.org/dist/httpd/binari

linux下svn 的安装与配置(方式 yum)

SVN的安装 #svn的下载安装命令 yun -y install subversion #检查是否安装成功 svnserve --version #如图表示安装成功(可以看到其中安装的版本号 version 1.6.11) SVN的配置 # 创建svn库的存放目录 (mkdir是linux创建目录命令) mkdir /depot/svn/svndepot # 指定svn库 (svn会在此目录下生成一些所需文件) svnadmin create /depot/svn/svndepot 生成后的目

1.1 Apache+MySQL+PHP安装与配置

一.软件下载 1.1 Apache下载 文件名:httpd-2.4.23-x64-vc14.zip 下载地址:(稍候放出) 1.2 MySQL下载 文件名:mysql-5.7.15-winx64.zip 下载地址:(稍候放出) 1.3 PHP下载 文件名:php-7.0.11-Win32-VC14-x64.zip 下载地址:(稍候放出) 二.软件安装与配置 2.1 Apache的安装与配置 2.1.1 Apache的安装 Apache的安装很简单,直接解压即可,如下图(我的路径是D:\PHPSe

转:Nginx+Apache环境的安装与配置

转:http://www.server110.com/nginx/201404/8817.html 我们依然尽可能采用yum来安装我们需要的软件,由系统官方维护的软件,其安全性和稳定性都值得信赖,并且容易管理,升级方便,但是在CentOS和RHEL的官方yum源中暂时没有Nginx等软件包,所以我们需要使用EPEL的yum源.EPEL是什么,EPEL的yum源怎么添加,点击这里查看. 本文将要介绍的Nginx+Apache结构,其实就是Nginx做前端,Apache做后端,充分发挥他们各自的优势

Apache Tomcat 7 安装与配置

下载 首先需要下载tomcat7的安装文件,地址如下: http://mirror.bit.edu.cn/apache/tomcat/tomcat-7/v7.0.69/bin/apache-tomcat-7.0.69.tar.gz 安装与配置 安装之前需要确保已经安装JDK,若没有安装JDK请参考上一篇blog先正确安装JDK:Linux CentOS 7 & JDK 1.7 安装与配置,如果已经安装JDK,那么就接下来就可以安装tomcat了,首先将下载的安装文件上传到Linux服务器的相应目