博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第 172 章 TRAC
阅读量:5935 次
发布时间:2019-06-19

本文共 1452 字,大约阅读时间需要 4 分钟。

172.1. Ubuntu 安装

172.1.1. source code

过程 172.1. TRAC - source

  1. setup.py

    wget http://peak.telecommunity.com/dist/ez_setup.pypython ez_setup.py
  2. Trac

    wget http://download.edgewall.org/trac/Trac-1.1.1.tar.gztar zxvf Trac-1.1.1.tar.gzcd Trac-1.1.1sudo python ./setup.py installcd ..

172.1.2. easy_install

过程 172.2. TRAC - easy_install

  1. easy_install

    $ sudo apt-get install python-setuptools
  2. Installing Trac

    sudo easy_install Pygmentssudo easy_install Genshisudo easy_install Trac

    ClearSilver

    sudo apt-get install python-clearsilver

    python svn

    sudo apt-get install python-svn python-svn-dbg

    create svn repos

    $ svnadmin create /home/netkiller/repos

172.1.3. Apache httpd

# cat /etc/httpd/conf.d/trac.conf
# Change this to the domain which points to your host, i.e. the domain # you set as "phabricator.base-uri". ServerName trac.repo
SetHandler mod_python PythonInterpreter main_interpreter PythonHandler trac.web.modpython_frontend PythonOption TracEnv /gitroot/trac/default PythonOption TracUriRoot / # Replace all occurrences of /srv/trac with your trac root below# and uncomment the respective SetEnv and PythonOption directives.#
# SetEnv TRAC_ENV /srv/trac#
#
#
# SetHandler mod_python# PythonHandler trac.web.modpython_frontend# #PythonOption TracEnv /srv/trac#
#

原文出处:Netkiller 系列 手札

本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

你可能感兴趣的文章
autoconf,automake,libtool
查看>>
jQuery的技巧01
查看>>
基于泛型实现的ibatis通用分页查询
查看>>
gopacket 使用
查看>>
AlertDialog对话框
查看>>
我的友情链接
查看>>
办公室几台电脑怎么连一台打印机的具体步骤
查看>>
linux安全---cacti+ntop监控
查看>>
鸟哥的linux私房菜-shell简单学习-1
查看>>
nagios配置监控的一些思路和工作流程
查看>>
iptables+layer7实现访问控制+netfilter/iptables基础
查看>>
通讯组基本管理任务三
查看>>
赫夫曼编码实现
查看>>
html页面显示div源代码
查看>>
基础复习-算法设计基础 | 复杂度计算
查看>>
debian、ubuntu系统下,常用的下载工具
查看>>
带以太网的MicroPython开发板:TPYBoardv201温湿度上传实例
查看>>
如何解压缩后缀名为zip.001,zip.002等的文件
查看>>
OSGI企业应用开发(十二)OSGI Web应用开发(一)
查看>>
Python 以指定概率获取元素
查看>>