Messages

melissa:2YJaA7 http://google.com sdf http://google.com http://google.com sdfgwq

melissa:YhmI00 http://google.com sdf http://google.com http://google.com sdfgwq

melissa:N5ppGb http://google.com sdf http://google.com http://google.com sdfgwq

Oyuduaod:comment6

Fgmaebwo:comment2

User Name:

Content:

Tags:

gae(3)    css(3)    日志(3)    python(3)    svn(3)    weblogic(2)    ie(2)    ftp(2)    c++(2)    原则(2)    bugfree(2)    jira(2)    turbolinux(2)    tinyMCE(1)    南京(1)    static_dir(1)    django(1)   

 

 Categories:   All    管理 (27)    GAE (7)    杂谈 (14)    网站 (7)    Python (6)    Java (8)    c++ (1)    生活 (8)    我的儿子 (4)    Database (4)    骗局 (2)    source code (1)

Inatall svn on turbolinux with souce code

2009-03-05 07:22:13   Category:管理   Comments:2   Reference:0   Tags: turbolinux , svn

  1. Download the source code from http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=9755&expandFolder=9755&folderID=10269
  2. Uncompress the tar file.
  3. tar xvzf Subversion-1.5.5.tar.gz
  4. Go into the directory.
  5. cd Subversion-1.5.5
  6. Configure the path and enviroment.

  7. ./configure --prefix=/opt/subversion
    make
    make install
  8. Create the repository.

  9. cd /opt/subversion/bin
    svnadmin create /tmp/project1
  10. Configure the repository(It is same with install svn server in my computer).

  11. Start the svn server.
  12. svnserve -d -r /tmp/project1

 

TrackBack URL:http://jum.appspot.com/feeds/trackBack/9641/

Install svn on turbolinux whith rpm package

2009-03-09 08:03:36   Category:管理   Comments:0   Reference:0   Tags: svn , turbolinux , rpm

  I installed the rpm version on my turbolinux and it work fine. Three files are needed:
    http://www.open.collab.net/nonav/downloads/subversion/gpg-key/RPM-GPG-KEY-csvn.asc
    http://downloads-guests.open.collab.net/files/documents/61/1375/CollabNetSubversion-client-1.5.5-1.i386.rpm
    http://downloads-guests.open.collab.net/files/documents/61/1376/CollabNetSubversion-server-1.5.5-1.i386.rpm
First, import the GPG key.
     sudo rpm --import /path/to/RPM-GPG-KEY-csvn.asc
Second, install the client.
     sudo rpm -ivh /path/to/client.rpm
Third, install the server.
     sudo rpm -ivh /path/to/server.rpm
Fourth, configure the path. add the following line to /etc/profile:
     PATH=/opt/CollabNet_Subversion/bin:$PATH
Fifth, configure the server and start the service.
    sudo Configure-CollabNet-Subversion
  The subversion server will be started automatically when the OS is started, because the collabnet_subversion is put in the /etc/rc.d/init.d/.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/9644/

install svn server in my computer

2009-02-27 09:10:30   Category:管理   Comments:0   Reference:0   Tags: version , svn

I installed a svn server on my computer. It occured problem when I use different version server software and client software. For example we can not see the log messages. So we need get a svn server software and a appropriate version client software. I use svn server of version 1.5.5  and client of version 1.5.8. It work.
  The install of svn server is very simple on my winxp.
1. Get the svn server on http://www.open.collab.net/servlets/OCNDirector?id=CSVN1.5.5WINS.
2. Install it.
3. Create a repository:
    svnadmin create d:\svn\project1
3. Modify the \conf\svnserve.conf
    anon-access = none
    auth-access = write
    password-db = ../../passwd
    authz-db = ../../authz
4. Modify passwd
    harry = harryssecret
    sally = sallyssecret
5. Modify authz

    [/foo/bar]      #this path definition is used on all projects
    harry = rw
    &joe = r
    * =

    [project1:/baz/fuz]   #this path definition is used on project1
    @harry_and_sally = rw
    * = r
6. Start the server:
    svnserve -d -r d:\svn\
If you create some repositories in d:\svn\, they can be accessed.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/8641/