Subversion CVS CVS. httpd tar.gz,subversion tar.gz SVN

Size: px
Start display at page:

Download "Subversion CVS CVS. httpd tar.gz,subversion tar.gz SVN"

Transcription

1 Subversion CVS Linux RCS CVS CVS Subversion Subversion CVS CVS Subversion Apache SVN httpd-2052targz,subversion-111targz ( redhat 9 Apache --enable-so mod_dav_svn SVN http Apache) root #tar zxvf httpd-2052targz #cd httpd-2052 #/configure --enable-dav --enable-so --enable-maintainer-mode #make #make install /usr/local/apache2, #tar zxvf subversion-111targz #/configure --with-apxs=/usr/local/apache2/bin/apxs # rm /usr/local/lib/libsvn* # make clean && make && make install /usr/local/apache2/conf/httpdconf LoadModule dav_svn_module modules/mod_dav_svnso, svnserver --version 111 SVN window TortoiseSVN-111-UNICODE_svn-111msi

2 Linux ( redhat 9 SVN 0171, svn SVN, ) Repository Subversion,, #svnadmin create path/to/repos #svnadmin create /home/mysvn #chown R nobody /home/mysvn Subversion Apache 20 WebDAV/DeltaV Subversion svnserve SSH http /usr/local/apache2/conf/httpdconf <Location /svn/repository> DAV svn SVNPath /home/mysvn </Location> http//localhost/svn/repository/, http svnserve ( vsftp ) 1) standalone mode

3 #svnserve d lsof -i 3690 SVN 2) xinetd mode /etc/xinetdd/ svnserve service svnserve { disable = no socket_type = stream protocol = tcp wait = no user = apache server = /usr/local/bin/svnserve server_args = -i } /etc/services, svnserve 3690/tcp # Subversion svnserve svnserve 3690/udp # Subversion svnserve xinetd lsof -i 3690 SVN window 1) http TortoiseSVN-111-UNICODE_svn-111msi, checkout 2) svnserve URL of repository svn//svn ip/home/mysvn svn+ssh//svn ip/home/mysvn ( //svn ip//svn/repository) linux 1) http

4 #svn checkout http //svn ip/svn/repository 2) svnserve #svn checkout svn//svn ip/home/mysvn #svn checkout svn+ssh//svn ip/home/mysvn http Sally Harry, # ### -c # htpasswd -c /etc/svn-auth-file harry New password ***** Re-type new password ***** Adding password for user harry # htpasswd /etc/svn-auth-file sally New password ******* Re-type new password ******* Adding password for user sally #, /usr/local/apache2/conf/httpdconf <Location /svn/repository > DAV svn SVNPath /home/mycvs AuthType Basic AuthName "Subversion repository" AuthUserFile /etc/svn-auth-file Require valid-user </Location> Apache SVN Sally Harry svnserve svn// conf svnseveconf #vi /home/mysvn/conf/svnseveconf [general] anon-access = read anon-access = none svn//, svn+ssh// svnseveconf anon-access = none svn//

5 auth-access = write auth-access ( svn+ssh// ) svn+ssh// ssh window openssh Hook scripts (hook), pre-commit post-commit hook hook, post-committmpl pre-revprop-changetmpl post-revprop-changetmpl start-committmpl pre-committmpl hook tmpl post-commit pre-revprop-change post-revprop-change start-commit pre-commit pre-commit post-commit( shell, shell ) pre-commit,,,, pre-commit Mail Team,Login Team PHP Team Team SVN PM Mail bug Mail Team Team pre-commit log message,( log message,pm Mail Team log message), pre-commit log message pre-commit #!/bin/sh REPOS="$1" TXN="$2" SVNLOOK=/usr/local/bin/svnlook

6 $SVNLOOK log -t "$TXN" "$REPOS" \ grep w "bug1234" > /dev/null exit 1 exit 0 log message bug1234, m bug1234, -m bug123, -m bug12345 post-commit,,, Subversion tools/hook-script commit- pl,,,, GNU diff post-commit hook mail post-commit #!/bin/sh REPOS="$1" REV="$2" commit- pl "$REPOS" "$REV" PM@yourdomaincom ## commit- pl, Subversion,,,, svnmime-type svnmime-type Subversion (MIME), Subversion, svnmime-type MIME, Subversion ( ) Subversion,,,, Subversion, Subversion svn import svn add, Subversion, svnmime-type ( image/png)

7 svnignore svnignore, Subversion global-ignores, svn status svn add, Subversion svn status $ svn status calc M calc/buttonc? calc/calculator? calc/datac? calc/debug_log? calc/debug_log1,? svn status, svnignore svn propedit svnignore calc calc, svnignore calculator debug_log* svn status $ svn status M calc M calc/buttonc? calc/datac,! svnkeywords Subversion ( ),,,,, Subversion LastChangedDate

8 Subversion LastChangedDate LastChangedRevision LastChangedBy HeadURL Id, Subversion, svnkeywords,,, weathertxt, Here is the latest report from the front lines $LastChangedDate$ $Rev$ Cumulus clouds are appearing more frequently as summer approaches svnkeywords, Subversion LastChangedDate $ svn propset svnkeywords "LastChangedDate Author" weathertxt property `svnkeywords' set on 'weathertxt' $, Subversion Here is the latest report from the front lines $LastChangedDate (Mon, 22 Jul 2002) $ $Rev$ Cumulus clouds are appearing more frequently as summer approaches svneol-style svnmime-type, Subversion (EOL),, Windows ASCII (CR) (LF) Unix LF window CR linux ^M, linux CR Windows, CRLF

9 svneol-style native, Subversion svnexternals,,, svnexternals Subversion URL $ svn propget svnexternals calc third-party/sounds third-party/skins third-party/skins/toolkit http//soundsred-beancom/repos http//skinsred-beancom/repositories/skinproj http//svnred-beancom/repos/skin-maker calc, Subversion $ svn checkout http//svnexamplecom/repos/calc A calc A calc/makefile A calc/integerc A calc/buttonc Checked out revision 148 Fetching external item into calc/third-party/sounds A calc/third-party/sounds/dingogg A calc/third-party/sounds/dongogg A calc/third-party/sounds/clangogg Checked out revision 14 Fetching external item into calc/third-party/skins Subversion Version Control with Subversion http//svnbookred-beancom/ Subversion CVS Subversion CVS

10 Version Control with Subversion http//svnbookred-beancom/

Subversion, WebDAV, and Apache HTTP Server 2.0

Subversion, WebDAV, and Apache HTTP Server 2.0 Subversion, WebDAV, and Apache HTTP Server 2.0 Justin R. Erenkrantz University of California, Irvine justin@erenkrantz.com Slides: http://www.erenkrantz.com/oscon/ What is Subversion? Did you miss Subversion:

More information

Managing Source Code With Subversion

Managing Source Code With Subversion Managing Source Code With Subversion May 3rd, 2005: Linux Users Victoria Source Code Management Source Code Management systems (SCMs) rock. Definitely the single most useful tool for a development team,

More information

The Subversion move/migrate from one server to another, shall be divided into 3 steps: Backup Create Import

The Subversion move/migrate from one server to another, shall be divided into 3 steps: Backup Create Import = Howto Move a Subversion Repository from One Server to Another = Recently I had to move a subversion (svn) repository to another or lets say new server. I needed to upgrade the servers hardware and software,

More information

Modulo II Software Configuration Management - SCM

Modulo II Software Configuration Management - SCM Modulo II Software Configuration Management - SCM Professor Ismael H F Santos ismael@tecgraf.puc-rio.br April 05 Prof. Ismael H. F. Santos - ismael@tecgraf.puc-rio.br 1 Bibliografia Introduction to Apache

More information

Introduction to Subversion

Introduction to Subversion Introduction to Subversion Wendy Smoak Rob Richardson Desert Code Camp, October 2006 Wendy Smoak Sr. Systems Analyst, Arizona State University Web application development Systems and database administration

More information

SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center

SVNManager Installation. Documentation. Department of Public Health Erasmus MC University Medical Center SVNManager Installation Documentation M. Verkerk Department of Public Health Erasmus MC University Medical Center Page 2 July 2005 Preface Version control in the context of this document is all about keeping

More information

Redmine Installation on Debian. v1.1

Redmine Installation on Debian. v1.1 Redmine Installation on Debian v1.1 Introduction 1. Objectives Have a fully functional Redmine installation on a dedicated server with good performance. The idea of this document came after an easy installation

More information

Version Control with Subversion

Version Control with Subversion Version Control with Subversion Introduction Wouldn t you like to have a time machine? Software developers already have one: it is called version control! Version control (aka Revision Control System or

More information

Managing Software Projects Like a Boss with Subversion and Trac

Managing Software Projects Like a Boss with Subversion and Trac Managing Software Projects Like a Boss with Subversion and Trac Beau Adkins CEO, Light Point Security lightpointsecurity.com beau.adkins@lightpointsecurity.com 2 Introduction... 4 Setting Up Your Server...

More information

Subversion guidelines

Subversion guidelines Subversion guidelines Jari Häkkinen The core mission of a version control system is to enable collaborative editing and sharing of data. $Revision: 53 $ $Date: 2010-03-15 10:56:23 +0100 (Mon, 15 Mar 2010)

More information

Software Configuration Management AE6382

Software Configuration Management AE6382 Software Configuration Management Software Configuration Management What is it? Software Configuration Management is the process of tracking changes to software. Why use it? Maintain multiple branches

More information

LATEX Document Management with Subversion

LATEX Document Management with Subversion The PracTEX Journal, 2007, No. 3 Article revision 2007/08/17 LATEX Document Management with Subversion Uwe Ziegenhagen Email Website Address Abstract latex@ziegenhagen.info http://www.uweziegenhagen.de

More information

Version Control with Subversion

Version Control with Subversion Version Control with Subversion Introduction Wouldn t you like to have a time machine? Software developers already have one! it is called version control Version control (aka Revision Control System or

More information

Subversion. Nadir SOUALEM. Linux Users subversion client svn 1.6.5 or higher. Windows users subversion client Tortoise 1.6.

Subversion. Nadir SOUALEM. Linux Users subversion client svn 1.6.5 or higher. Windows users subversion client Tortoise 1.6. Subversion Nadir SOUALEM 1 Requirements Linux Users subversion client svn 1.6.5 or higher Windows users subversion client Tortoise 1.6.6 or higher 2 What is Subversion? Source control or version control

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer About the Tutorial Apache Subversion which is often abbreviated as SVN, is a software versioning and revision control system distributed under an open source license. Subversion was created by CollabNet

More information

SVN Authentication and Authorization

SVN Authentication and Authorization Admin Guide SVN Authentication and Authorization Authentication and Authorization of SVN Users via Active Directory and OpenLDAP Gérard Bieli, Christian Haller Windisch, 14th August 2009 Contents 1 Prerequisites

More information

Syslog & xinetd. Stephen Pilon

Syslog & xinetd. Stephen Pilon Syslog & xinetd Stephen Pilon What create log files? Logging Policies Throw away all data immediately Reset log files at periodic intervals Rotate log files, keeping data for a fixed time Compress and

More information

Subversion Integration

Subversion Integration Subversion Integration With the popular Subversion Source Control Management tool, users will find a flexible interface to integrate with their ExtraView bug-tracking system. Copyright 2008 ExtraView Corporation

More information

Linux Networking: network services

Linux Networking: network services Linux Networking: network services David Morgan Client and server: matched pairs Client process inter-process communication Server process 1 OK as long as there s s a way to talk Client process Server

More information

Version control with Subversion

Version control with Subversion Version control with Subversion Davor Cubranic Grad Seminar October 6, 2011 With searching comes loss And the presence of absence: My Thesis not found. Version Control A tool for managing changes to a

More information

TortoiseSVN A Subversion client for Windows Version 1.6.5 Stefan Küng Lübbe Onken Simon Large

TortoiseSVN A Subversion client for Windows Version 1.6.5 Stefan Küng Lübbe Onken Simon Large TortoiseSVN A Subversion client for Windows Version 1.6.5 Stefan Küng Lübbe Onken Simon Large TortoiseSVN: A Subversion client for Windows: Version 1.6.5 by Stefan Küng, Lübbe Onken, and Simon Large Published

More information

Use Subversion with GlassFishESB, OpenESB or Java CAPS 6

Use Subversion with GlassFishESB, OpenESB or Java CAPS 6 Use Subversion with GlassFishESB, OpenESB or Java CAPS 6 Michael.Czapski@sun.com March, 2009 Table of Contents Introduction...1 Download and Install Components...1 Integration with NetBeans 6.1...10 Working

More information

HPC-Forge. A Software Development Infrastructure

HPC-Forge. A Software Development Infrastructure HPC-Forge A Software Development Infrastructure Agenda Introduction The portal The services: Subversion Trac Hudson WebDAV Roberto Gori 2 Software development process A software development process is

More information

What is Subversion? Revision Control System made to replace CVS

What is Subversion? Revision Control System made to replace CVS SubVersioN the new Central Service at DESY by Marian Gawron What is Subversion? Revision Control System made to replace CVS SVN Basics Client Options Svnserve Command line client Different GUIs for Windows,

More information

TortoiseSVN A Subversion client for Windows Version 1.5.5 Stefan Küng Lübbe Onken Simon Large

TortoiseSVN A Subversion client for Windows Version 1.5.5 Stefan Küng Lübbe Onken Simon Large TortoiseSVN A Subversion client for Windows Version 1.5.5 Stefan Küng Lübbe Onken Simon Large TortoiseSVN: A Subversion client for Windows: Version 1.5.5 by Stefan Küng, Lübbe Onken, and Simon Large Published

More information

Apache 2.0 Installation Guide

Apache 2.0 Installation Guide Apache 2.0 Installation Guide Ryan Spangler spanglerrp22@uww.edu http://ceut.uww.edu May 2002 Department of Business Education/ Computer and Network Administration Copyright Ryan Spangler 2002 Table of

More information

Version Control. Luka Milovanov lmilovan@abo.fi

Version Control. Luka Milovanov lmilovan@abo.fi Version Control Luka Milovanov lmilovan@abo.fi Configuration Management Configuration management is the management of system change to software products Version management: consistent scheme of version

More information

SVN tutorial. Martin Kasper, makait06 rev: October 23, 2009. Published under Creative Commons Attribution/Share Alike license

SVN tutorial. Martin Kasper, makait06 rev: October 23, 2009. Published under Creative Commons Attribution/Share Alike license SVN tutorial Martin Kasper, makait06 rev: October 23, 2009 Published under Creative Commons Attribution/Share Alike license Abstract This document will introduce you to the usage and basic administration

More information

BlueJ Teamwork Repository Configuration

BlueJ Teamwork Repository Configuration BlueJ Teamwork Repository Configuration Version 2.0 for BlueJ Version 2.5.0 (and 2.2.x) Davin McCall School of Engineering & IT, Deakin University 1 Introduction This document gives a brief description

More information

Cloud Homework instructions for AWS default instance (Red Hat based)

Cloud Homework instructions for AWS default instance (Red Hat based) Cloud Homework instructions for AWS default instance (Red Hat based) Automatic updates: Setting up automatic updates: by Manuel Corona $ sudo nano /etc/yum/yum-updatesd.conf Look for the line that says

More information

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors)

Rancid Server Build and Operation Overview (v0.3) (This is being done from memory so expect some errors) Rancid Server Build and Operation Overview (v0.3) (This is being from memory so expect some errors) Installation The installation will cover the setup and configuration of a RANCID server using CentOS

More information

LATEX and Subversion. 1 Introduction. Mark Eli Kalderon

LATEX and Subversion. 1 Introduction. Mark Eli Kalderon The PracTEX Journal, 2007, No. 3 Article revision 2007/08/17 LATEX and Subversion Mark Eli Kalderon Email Website Address Abstract eli@markelikalderon.com http://markelikalderon.com Department of Philosophy

More information

Version Control with Svn, Git and git-svn. Kate Hedstrom ARSC, UAF

Version Control with Svn, Git and git-svn. Kate Hedstrom ARSC, UAF 1 Version Control with Svn, Git and git-svn Kate Hedstrom ARSC, UAF 2 Version Control Software System for managing source files For groups of people working on the same code When you need to get back last

More information

Pragmatic Version Control

Pragmatic Version Control Extracted from: Pragmatic Version Control using Subversion, 2nd Edition This PDF file contains pages extracted from Pragmatic Version Control, one of the Pragmatic Starter Kit series of books for project

More information

Talend Enterprise Data Quality. Installation Guide. 5.0_a

Talend Enterprise Data Quality. Installation Guide. 5.0_a Talend Enterprise Data Quality Installation Guide 5.0_a Talend Enterprise Data Quality Talend Enterprise Data Quality: Installation Guide Adapted for Talend Enterprise Data Quality Studio v5.0.x. Supersedes

More information

Of Penguins and Wildebeest. Anthony Rodgers VA7IRL

Of Penguins and Wildebeest. Anthony Rodgers VA7IRL Of Penguins and Wildebeest Anthony Rodgers VA7IRL The Penguin Linux was created by a Swedish-speaking Finn called Linus Torvalds Version 0.01 was released in September 1991 We are now on version 2.6 It

More information

Integrating Apache Web Server with Tomcat Application Server

Integrating Apache Web Server with Tomcat Application Server Integrating Apache Web Server with Tomcat Application Server The following document describes how to build an Apache/Tomcat server from all source code. The end goal of this document is to configure the

More information

Version Control with Subversion

Version Control with Subversion Version Control with Subversion For Subversion 1.4 (Compiled from r2866) Ben Collins-Sussman Brian W. Fitzpatrick C. Michael Pilato Chapter 1. Fundamental Concepts This chapter is a short, casual introduction

More information

STEP 4 : GETTING LIGHTTPD TO WORK ON YOUR SEAGATE GOFLEX SATELLITE

STEP 4 : GETTING LIGHTTPD TO WORK ON YOUR SEAGATE GOFLEX SATELLITE STEP 4 : GETTING LIGHTTPD TO WORK ON YOUR SEAGATE GOFLEX SATELLITE Note : Command Lines are in red. Congratulations on following all 3 steps. This is the final step you need to do to get rid of the old

More information

Version control. HEAD is the name of the latest revision in the repository. It can be used in subversion rather than the latest revision number.

Version control. HEAD is the name of the latest revision in the repository. It can be used in subversion rather than the latest revision number. Version control Version control is a powerful tool for many kinds of work done over a period of time, including writing papers and theses as well as writing code. This session gives a introduction to a

More information

Single Node Hadoop Cluster Setup

Single Node Hadoop Cluster Setup Single Node Hadoop Cluster Setup This document describes how to create Hadoop Single Node cluster in just 30 Minutes on Amazon EC2 cloud. You will learn following topics. Click Here to watch these steps

More information

Installation of the Shibboleth-Apache Authorisation Module. 2. Obtain and compile the Apache server software

Installation of the Shibboleth-Apache Authorisation Module. 2. Obtain and compile the Apache server software Version Date Comments 1.0 15 January 2009 Stijn Lievens 1.0.1 2 April 2009 Stijn Lievens. Corrected some typos and mentioned that one also needs to set APACHE_HOME when compiling the mod_permis module.

More information

Single sign-on websites with Apache httpd: Integrating with Active Directory for authentication and authorization

Single sign-on websites with Apache httpd: Integrating with Active Directory for authentication and authorization Single sign-on websites with Apache httpd: Integrating with Active Directory for authentication and authorization Michael Heldebrant Solutions Architect, Red Hat Outline Authentication overview Basic LDAP

More information

vsftpd - An Introduction to the Very Secure FTP Daemon

vsftpd - An Introduction to the Very Secure FTP Daemon LinuxFocus article number 341 http://linuxfocus.org vsftpd - An Introduction to the Very Secure FTP Daemon by Mario M. Knopf About the author: Mario enjoys to keep busy with

More information

WEB2CS INSTALLATION GUIDE

WEB2CS INSTALLATION GUIDE WEB2CS INSTALLATION GUIDE FOR XANDMAIL XandMail 32, rue de Cambrai 75019 PARIS - FRANCE Tel : +33 (0)1 40 388 700 - http://www.xandmail.com TABLE OF CONTENTS 1. INSTALLING WEB2CS 3 1.1. RETRIEVING THE

More information

Expert PHP 5 Tools. Proven enterprise development tools and best practices for designing, coding, testing, and deploying PHP applications.

Expert PHP 5 Tools. Proven enterprise development tools and best practices for designing, coding, testing, and deploying PHP applications. Expert PHP 5 Tools Proven enterprise development tools and best practices for designing, coding, testing, and deploying PHP applications Dirk Merkel PUBLISHING -J BIRMINGHAM - MUMBAI Preface Chapter 1:

More information

While are you still in Nagios working directory, create a new file for DNS servers monitoring

While are you still in Nagios working directory, create a new file for DNS servers monitoring NAGIOS MONITORING ----------------- On AUTH1 server 1. Go to Nagios working directory $ cd /usr/local/etc/nagios 2. Copy Nagios sample files To do this, make sure you are in Nagios working directory from

More information

42goISP Documentation

42goISP Documentation 42goISP Documentation 42goISP Documentation I Table of Contents General...1 1 What is 42goISP?...1 2 Terms and structure of the manual...1 3 Installation/Upgrade/Deinstallation...1 3.1 Installation...1

More information

ISPConfig Documentation

ISPConfig Documentation ISPConfig Documentation ISPConfig Documentation I Table of Contents General...1 1 What is ISPConfig?...1 2 Terms and structure of the manual...1 3 Installation/Upgrade/Deinstallation...1 3.1 Installation...1

More information

Integration Guide. SafeNet Authentication Service. SAS Using RADIUS Protocol with Apache HTTP Server

Integration Guide. SafeNet Authentication Service. SAS Using RADIUS Protocol with Apache HTTP Server SafeNet Authentication Service Integration Guide Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013 SafeNet, Inc. All rights reserved. 1 Document Information

More information

Version Control with Subversion

Version Control with Subversion Version Control with Subversion Draft Revision 8581 Ben Collins-Sussman Brian W. Fitzpatrick C. Michael Pilato Version Control with Subversion: Draft Revision 8581 by Ben Collins-Sussman, Brian W. Fitzpatrick,

More information

Linux VPS with cpanel. Getting Started Guide

Linux VPS with cpanel. Getting Started Guide Linux VPS with cpanel Getting Started Guide First Edition October 2010 Table of Contents Introduction...1 cpanel Documentation...1 Accessing your Server...2 cpanel Users...2 WHM Interface...3 cpanel Interface...3

More information

Using Subversion for Source Code Control. Michael McLennan Software Architect Network for Computational Nanotechnology

Using Subversion for Source Code Control. Michael McLennan Software Architect Network for Computational Nanotechnology Using Subversion for Source Code Control Michael McLennan Software Architect Network for Computational Nanotechnology What is Subversion? CVS on steroids Created by developers at CollabNet In development

More information

INF 111 / CSE 121. Homework 4: Subversion Due Tuesday, July 14, 2009

INF 111 / CSE 121. Homework 4: Subversion Due Tuesday, July 14, 2009 Homework 4: Subversion Due Tuesday, July 14, 2009 Name : Student Number : Laboratory Time : Objectives Preamble Set up a Subversion repository on UNIX Use Eclipse as a Subversion client Subversion (SVN)

More information

TECHNICAL NOTE Stormshield Network Firewall AUTOMATIC BACKUPS. Document version: 1.0 Reference: snentno_autobackup

TECHNICAL NOTE Stormshield Network Firewall AUTOMATIC BACKUPS. Document version: 1.0 Reference: snentno_autobackup Stormshield Network Firewall Document version: 1.0 Reference: snentno_autobackup CONTENTS INTRODUCTION 3 OPERATION 3 Storing in the Mystormshield.eu client area 3 Storing on a customized server 3 FIREWALL

More information

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6

Desktop : Ubuntu 10.04 Desktop, Ubuntu 12.04 Desktop Server : RedHat EL 5, RedHat EL 6, Ubuntu 10.04 Server, Ubuntu 12.04 Server, CentOS 5, CentOS 6 201 Datavoice House, PO Box 267, Stellenbosch, 7599 16 Elektron Avenue, Technopark, Tel: +27 218886500 Stellenbosch, 7600 Fax: +27 218886502 Adept Internet (Pty) Ltd. Reg. no: 1984/01310/07 VAT No: 4620143786

More information

Polarion Application Lifecycle Management Platform. Installation Guide for Linux

Polarion Application Lifecycle Management Platform. Installation Guide for Linux Polarion Application Lifecycle Management Platform Installation Guide for Linux Version: 2015 SR2 Polarion Application Lifecycle Management Platform Installation Guide for Linux Copyright 2008-2015 Polarion

More information

Version Control with Subversion and Xcode

Version Control with Subversion and Xcode Version Control with Subversion and Xcode Author: Mark Szymczyk Last Update: June 21, 2006 This article shows you how to place your source code files under version control using Subversion and Xcode. By

More information

Git - Working with Remote Repositories

Git - Working with Remote Repositories Git - Working with Remote Repositories Handout New Concepts Working with remote Git repositories including setting up remote repositories, cloning remote repositories, and keeping local repositories in-sync

More information

Monitoring a Linux Mail Server

Monitoring a Linux Mail Server Monitoring a Linux Mail Server Mike Weber mweber@spidertools.com] Various Methods to Monitor Mail Server Public Ports SMTP on Port 25 POPS on Port 995 IMAPS on Port 993 SNMP Amavis on Port 10024 Reinjection

More information

CSE 374 Programming Concepts & Tools. Laura Campbell (Thanks to Hal Perkins) Winter 2014 Lecture 16 Version control and svn

CSE 374 Programming Concepts & Tools. Laura Campbell (Thanks to Hal Perkins) Winter 2014 Lecture 16 Version control and svn CSE 374 Programming Concepts & Tools Laura Campbell (Thanks to Hal Perkins) Winter 2014 Lecture 16 Version control and svn Where we are Learning tools and concepts relevant to multi-file, multi-person,

More information

OpenCart. SugarCRM CE (Community Edition Only) Integration. Guide

OpenCart. SugarCRM CE (Community Edition Only) Integration. Guide OpenCart SugarCRM CE (Community Edition Only) Integration Guide By Lim Tee Chert 23 June 2012 (last updated on: 08 January 2015) http://www.cartbooks.com Purpose: This is A Release for OpenCart SugarCRM

More information

DAVE Usage with SVN. Presentation and Tutorial v 2.0. May, 2014

DAVE Usage with SVN. Presentation and Tutorial v 2.0. May, 2014 DAVE Usage with SVN Presentation and Tutorial v 2.0 May, 2014 Required DAVE Version Required DAVE version: v 3.1.6 or higher (recommend to use the most latest version, as of Feb 28, 2014, v 3.1.10) Required

More information

Online Banking for Business Secure FTP with SSH (Secure Shell) USER GUIDE

Online Banking for Business Secure FTP with SSH (Secure Shell) USER GUIDE Online Banking for Business Secure FTP with SSH (Secure Shell) USER GUIDE Contents Secure FTP Setup... 1 Introduction... 1 Before You Set Up S/FTP... 1 Setting Up FTP with SSH... 2 Sending Files... 3 Address

More information

Software Delivery Integration and Source Code Management. for Suppliers

Software Delivery Integration and Source Code Management. for Suppliers Software Delivery Integration and Source Code Management for Suppliers Document Information Author Version 1.0 Version Date 8/6/2012 Status final Approved by Reference not applicable Subversion_for_suppliers.doc

More information

Bull Service & Solutions

Bull Service & Solutions Bull Service & Solutions NovaForge NovaForge WebOS Installation Guide Emmanuel Rias Version Date Write by Content 0.1.0 28/11/2007 Emmanuel RIAS Document initialization 0.1.1 06/12/2007 Cédric TRAN-XUAN

More information

Linux System Administration on Red Hat

Linux System Administration on Red Hat Linux System Administration on Red Hat Kenneth Ingham September 29, 2009 1 Course overview This class is for people who are familiar with Linux or Unix systems as a user (i.e., they know file manipulation,

More information

INASP: Effective Network Management Workshops

INASP: Effective Network Management Workshops INASP: Effective Network Management Workshops Linux Familiarization and Commands (Exercises) Based on the materials developed by NSRC for AfNOG 2013, and reused with thanks. Adapted for the INASP Network

More information

ALERT installation setup

ALERT installation setup ALERT installation setup In order to automate the installation process of the ALERT system, the ALERT installation setup is developed. It represents the main starting point in installing the ALERT system.

More information

Using Subversion in Computer Science

Using Subversion in Computer Science School of Computer Science 1 Using Subversion in Computer Science Last modified July 28, 2006 Starting from semester two, the School is adopting the increasingly popular SVN system for management of student

More information

Continuous Integration (CI) and Testing - Configuring Bamboo, Hudson, and TestMaker

Continuous Integration (CI) and Testing - Configuring Bamboo, Hudson, and TestMaker Continuous Integration and Testing Configuring Bamboo, Hudson, and TestMaker Operate PushToTest TestMaker tests from Continuous Integration environments. PushToTest checks TestMaker compatibility with

More information

MINIMUM INSTALLATION REQUIREMENTS Processor: RAM: Hard disk: Operating system: Others: Pentium 200 MHz. 64 MB. 80 MB free space. One of the following: Red Hat (version 7.0, 7.1, 7.2, 7.3, 8.0, 9 or Enterprise

More information

SNPsyn documentation. Release 1.1b. Tomaž Curk Gregor Rot Davor Sluga Uroš Lotrič Blaž Zupan

SNPsyn documentation. Release 1.1b. Tomaž Curk Gregor Rot Davor Sluga Uroš Lotrič Blaž Zupan SNPsyn documentation Release 1.1b Tomaž Curk Gregor Rot Davor Sluga Uroš Lotrič Blaž Zupan March 05, 2013 CONTENTS 1 Virtual server image 1 1.1 Install Linux server..........................................

More information

I N S T A L L A T I O N M A N U A L

I N S T A L L A T I O N M A N U A L I N S T A L L A T I O N M A N U A L 2015 Fastnet SA, St-Sulpice, Switzerland. All rights reserved. Reproduction in whole or in part in any form of this manual without written permission of Fastnet SA is

More information

Introduction to Subversion

Introduction to Subversion Introduction to Subversion Getting started with svn Matteo Vescovi 19/02/2010 Agenda A little bit of theory Overview of Subversion Subversion approach to Version Control Using Subversion Typical subversion

More information

A Software engineering Approach to Computer Networks Management

A Software engineering Approach to Computer Networks Management Master s Thesis Report A Software engineering Approach to Computer Networks Management Author: Gangadhar Chalapaka Supervisor: Hans Bjurgren Co-Supervisor & Examiner: Sasikumar Punnekkat October 19, 2009

More information

Although Mac OS X is primarily known for its GUI, the under pinnings are all Unix. This

Although Mac OS X is primarily known for its GUI, the under pinnings are all Unix. This BE Computing Web Tutorials: Server Commands Server Commands Indluded: 1. Basic Command Line Tutorial Although Mac OS X is primarily known for its GUI, the underpinnings are all Unix. This tutorial will

More information

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0

http://cnmonitor.sourceforge.net CN=Monitor Installation and Configuration v2.0 1 Installation and Configuration v2.0 2 Installation...3 Prerequisites...3 RPM Installation...3 Manual *nix Installation...4 Setup monitoring...5 Upgrade...6 Backup configuration files...6 Disable Monitoring

More information

Apache & Virtual Hosts & mod_rewrite

Apache & Virtual Hosts & mod_rewrite Apache & Virtual Hosts & mod_rewrite Jonathan Brewer Network Startup Resource Center jon@nsrc.org These materials are licensed under the Creative Commons Attribution-NonCommercial 4.0 International license

More information

Getting Started With Your Virtual Dedicated Server. Getting Started Guide

Getting Started With Your Virtual Dedicated Server. Getting Started Guide Getting Started Guide Getting Started With Your Virtual Dedicated Server Setting up and hosting a domain on your Linux Virtual Dedicated Server using Plesk 8.0. Getting Started with Your Virtual Dedicated

More information

TortoiseSVN. A Subversion client for Windows. Stefan Küng Lübbe Onken

TortoiseSVN. A Subversion client for Windows. Stefan Küng Lübbe Onken TortoiseSVN A Subversion client for Windows Stefan Küng Lübbe Onken TortoiseSVN: A Subversion client for Windows by Stefan Küng and Lübbe Onken Published $LastChangedDate: 2004-02-20 11:54:46 +0100 (Fri,

More information

Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide

Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide Configuring Ubuntu Server as a Firewall and Reverse Proxy for OWA 2007 Configuration Guide Author: Andy Grogan Version 1.0 Location: http://www.telnetport25.com Contents Introduction... 3 Key Objectives:...

More information

Anne-Mai Aadamsoo WEB BASED PROJECT MANAGEMENT SYSTEM

Anne-Mai Aadamsoo WEB BASED PROJECT MANAGEMENT SYSTEM Anne-Mai Aadamsoo WEB BASED PROJECT MANAGEMENT SYSTEM Technology and Communication 2010 VAASAN AMMATTIKORKEAKOULU UNIVERSITY OF APPLIED SCIENCES Degree Program of Information Technology ABSTRACT Author

More information

Knowledge is Power. He who gets wisdom loves his own soul; he who cherishes understanding prospers. (Proverbs 19:8)

Knowledge is Power. He who gets wisdom loves his own soul; he who cherishes understanding prospers. (Proverbs 19:8) Knowledge is Power He who gets wisdom loves his own soul; he who cherishes understanding prospers. (Proverbs 19:8) Monitoring Tool -MRTG on CentOS 6.4 Jeong Chul tland12.wordpress.com www.youtube.com/user/tland12

More information

CS 2001 Department Computing Resources

CS 2001 Department Computing Resources CS 2001 Department Computing Resources Wencan Luo Borrowed from Marian K. Iskander http://people.cs.pitt.edu/~tech/news/faqs.html Agenda Computing resources in the department OpenAFS How to: Get AFS tokens

More information

INSTALLING KAAZING WEBSOCKET GATEWAY - HTML5 EDITION ON AN AMAZON EC2 CLOUD SERVER

INSTALLING KAAZING WEBSOCKET GATEWAY - HTML5 EDITION ON AN AMAZON EC2 CLOUD SERVER INSTALLING KAAZING WEBSOCKET GATEWAY - HTML5 EDITION ON AN AMAZON EC2 CLOUD SERVER A TECHNICAL WHITEPAPER Copyright 2012 Kaazing Corporation. All rights reserved. kaazing.com Executive Overview This document

More information

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012

Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 Installing Virtual Coordinator (VC) in Linux Systems that use RPM (Red Hat, Fedora, CentOS) Document # 15807A1-103 Date: Aug 06, 2012 1 The person installing the VC is knowledgeable of the Linux file system

More information

Cacti The ULTIMATE Management Solution

Cacti The ULTIMATE Management Solution Cacti The ULTIMATE Management Solution Cacti SNMP Management Installation HOW-TO For Linux Author: Lee Carter Published: October 20 th 2004 Version 2 Updated November 1, 2004 Table of Contents Purpose...3

More information

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4

Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 Install Cacti Network Monitoring Tool on CentOS 6.4 / RHEL 6.4 / Scientific Linux 6.4 by SK Cacti is an open source, front-end for the data logging tool called RRDtool. It is a web based network monitoring

More information

APACHE WEB SERVER. Andri Mirzal, PhD N28-439-03

APACHE WEB SERVER. Andri Mirzal, PhD N28-439-03 APACHE WEB SERVER Andri Mirzal, PhD N28-439-03 Introduction The Apache is an open source web server software program notable for playing a key role in the initial growth of the World Wide Web Typically

More information

Version Control with Subversion

Version Control with Subversion Version Control with Subversion http://www.oit.duke.edu/scsc/ http://wiki.duke.edu/display/scsc scsc@duke.edu John Pormann, Ph.D. jbp1@duke.edu Software Carpentry Courseware This is a re-work from the

More information

U S E R D O C U M E N TA T I O N ( A L E P H I N O

U S E R D O C U M E N TA T I O N ( A L E P H I N O U S E R D O C U M E N TA T I O N ( A L E P H I N O 5. 0 ) Single-Sign-On Alephino Version 5.0 1/9 last updated: 17/09/2014 Table of contents 1 Mode of operation...3 2 Configuration examples with the Apache

More information

IBM Pure Application Create Custom Virtual Image Guide - Part 1 Virtual Image by extending

IBM Pure Application Create Custom Virtual Image Guide - Part 1 Virtual Image by extending PERFICIENT IBM Pure Application Create Custom Virtual Image Guide - Part 1 Virtual Image by extending How to guide on Virtual Image creation for Pure Application Technical Architect: Chuck Misuraca Change

More information

Installation. Installation centreon + nagios3 1 25 mai 2009 1.1 LISTE DES PRE-REQUIS. Nagios/centreon. 1.1.1 Paquets divers. 1.1.

Installation. Installation centreon + nagios3 1 25 mai 2009 1.1 LISTE DES PRE-REQUIS. Nagios/centreon. 1.1.1 Paquets divers. 1.1. Installation 1.1 LISTE DES PRE-REQUIS 1.1.1 Paquets divers tofrodos mailx lsb-release build-essential 1.1.2 Compilateurs : 1.1.3 Serveur Web et php5 apache2 php5 php5-mysql php-pear php5-ldap php5-snmp

More information

Newton Linux User Group Graphing SNMP with Cacti and RRDtool

Newton Linux User Group Graphing SNMP with Cacti and RRDtool Newton Linux User Group Graphing SNMP with Cacti and RRDtool Summary: Cacti is an interface that can be used to easily manage the graphing of SNMP data. These graphs allow you to visualize performance

More information

Syncro SVN Client 4.2 User Manual. SyncRO Soft Ltd.

Syncro SVN Client 4.2 User Manual. SyncRO Soft Ltd. Syncro SVN Client 4.2 User Manual SyncRO Soft Ltd. Syncro SVN Client 4.2 User Manual SyncRO Soft Ltd. Copyright 2002-2009 SyncRO Soft Ltd. All Rights Reserved. Many of the designations used by manufacturers

More information

Expresso Quick Install

Expresso Quick Install Expresso Quick Install 1. Considerations 2. Basic requirements to install 3. Install 4. Expresso set up 5. Registering users 6. Expresso first access 7. Uninstall 8. Reinstall 1. Considerations Before

More information

using version control in system administration

using version control in system administration LUKE KANIES using version control in system administration Luke Kanies runs Reductive Labs (http://reductivelabs.com), a startup producing OSS software for centralized, automated server administration.

More information

Exercises: FreeBSD: Apache and SSL: SANOG VI IP Services Workshop

Exercises: FreeBSD: Apache and SSL: SANOG VI IP Services Workshop Exercises Exercises: FreeBSD: Apache and SSL: SANOG VI IP Services Workshop July 18, 2005 1. 2. 3. 4. 5. Install Apache with SSL support Configure Apache to start at boot Verify that http and https (Apache)

More information

Getting Started With Your Virtual Dedicated Server. Getting Started Guide

Getting Started With Your Virtual Dedicated Server. Getting Started Guide Getting Started Guide Getting Started With Your Virtual Dedicated Server Setting up and hosting a domain on your Linux Virtual Dedicated Server using cpanel. Getting Started with Your Virtual Dedicated

More information