文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>在 Ubuntu 7.04 下安装MoinMoin(standalone serv..

在 Ubuntu 7.04 下安装MoinMoin(standalone serv..

时间:2007-05-18  来源:DormouseYoung

MoinMoin可以在以standalone server模式下运行。在这种模式下不需要http服务器,只要安装python和moinmoin就可以在浏览器中使用wiki。
以下是我的安装步骤:
1.在新立得软件包管理器中安装moinmoin-common和python-moinmoin这两个软件包
2.创建一个moinmoin的实例(我安装的路径为/yt,你可以用你自己的路径替换)
mkdir /yt
cd /yt
cp -R /usr/share/moin/data .
cp -R /usr/share/moin/underlay/ .
cp /usr/share/moin/config/wikiconfig.py .
cp /usr/share/moin/server/moin.py .
3.修改/yt/moin.py中的内容如下:

# Path of the directory where wikiconfig.py is located.
# YOU NEED TO CHANGE THIS TO MATCH YOUR SETUP.
sys.path.insert(0, '/yt')  <==修改

# Path to MoinMoin package, needed if you installed with --prefix=PREFIX
# or if you did not use setup.py.
sys.path.insert(0, '/usr/share/python-support/python-moinmoin/MoinMoin')  <==修改

# Path of the directory where farmconfig is located (if different).
sys.path.insert(0, '/yt')  <==修改

# Debug mode - show detailed error reports
## import os
## os.environ['MOIN_DEBUG'] = '1'

from MoinMoin.server.standalone import StandaloneConfig, run

class Config(StandaloneConfig):

    # Server name
    # Used to create .log, .pid and .prof files
    name = 'moin'

    # Path to moin shared files (default '/usr/share/moin/wiki/htdocs')
    # If you installed with --prefix=PREFIX, use 'PREFIX/share/moin/wiki/htdocs'
    docs = '/usr/share/moin/htdocs'

    # The server will run with as this user and group (default 'www-data')
    user = '这里填你的用户名'  <==修改
    group = '这里填你的组名'  <==修改

4.在终端中运行: python /yt/moin.py,如果出现Serving on 127.0.0.1:8000 ,则说明可以使用了。
5.打开浏览器,在地址中输入“http://127.0.0.1:8000",出现MoinMoin的页面。

参考资料:http://moinmoin.wikiwikiweb.de/HelpOnInstalling/StandaloneServer
相关阅读 更多 +
排行榜 更多 +
找茬脑洞的世界安卓版

找茬脑洞的世界安卓版

休闲益智 下载
滑板英雄跑酷2手游

滑板英雄跑酷2手游

休闲益智 下载
披萨对对看下载

披萨对对看下载

休闲益智 下载