Grid, Storage and SRM

Size: px
Start display at page:

Download "Grid, Storage and SRM"

Transcription

1 Grid, Storage and SRM Jan.30, Gettingsetup Makeaworkingdirectoryforthisexercise.Fortherestofthisexercise,allyourworkshouldbe doneinthere. $ mkdir srmex $ cd srmex Nextsettheenvironmentvariablestouseforexercises.AllexerciseswillbedoneondCache SRMserveratFermiNationalAcceleratorLaboratory(FNAL): There are a few environmental variables already set for you. SRM_HOME : srm client installation directory; /sw/srmclient2 SRMEP : SRM service endpoint; srm://gwdca04.fnal.gov:8443/srm/managerv2 SRMPATH : Working directory on SRM storage; /pnfs/fnal.gov/data/osgedu MYNAME : your login Nextcreateafiletouseforexercises: $ dd if=/dev/zero of=smallfile-$myname bs=1m count=2 $ ls -l -rw-r--r-- 1 train03 train :15 smallfile-train Assumptions Youalreadyhaveusedglobus url copytomoveyourfilesfromyourlocalmachinetooneof designatedtargetmachineandfromaremotegridftpservertoyourlocalmachine. 2 Basicoperations 2.1 CheckingthestatusofSRM Usesrm pingtofindoutthestatusofsrmserveron$srmep. $ srm-ping $SRMEP ThisreturnsSRMversionnumber,similartothefollowing. PingversionInfo=v2.2 Extrainformation Key=backend_type Value=dCache

2 Key=backend_version Value=production PuttingafileintoSRMmanagedstorage FiletransferintoSRMmanagedstoragegoesthroughseveralprotocolsincludinggridftpfile transfer.thisclientoperationcommunicateswithsrmserverthroughseveralinterfaces internally;srmpreparetoputtorequestyourfilerequest,srmstatusofputrequesttocheckyour request,gridftpfiletransferandsrmputdonetofinalizethestateofyourfiletransfer. $ srm-copy file:////home/train99/srmex/smallfile-$myname \ $SRMEP\?SFN=$SRMPATH/smallfile-$MYNAME Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-CLIENT*REQUESTTYPE=put SRM-CLIENT*TOTALFILES=1 SRM-CLIENT*TOTAL_SUCCESS=1 SRM-CLIENT*TOTAL_FAILED=0 SRM-CLIENT*REQUEST_TOKEN= SRM-CLIENT*SOURCEURL[0]=file:////home/train99/srmex/smallfile-$MYNAME SRM-CLIENT*TARGETURL[0]=$SRMEP\?SFN=$SRMPATH/smallfile-$MYNAME SRM-CLIENT*TRANSFERURL[0]=gsiftp://gwdca03.fnal.gov:2811///smallfile-alex SRM-CLIENT*ACTUALSIZE[0]= SRM-CLIENT*FILE_STATUS[0]=SRM_SUCCESS SRM-CLIENT*EXPLANATION[0]=Done 2.3 URLformats AquickreminderonURLformats:We'veseentwokindsofURLssofar. file:////home/train99/srmex/smallfile afilecalled smallfile onthelocalfile system,indirectory /home/train99/srmex/. Theappended $MYNAME isonlytomake thefilenameuniqueinthisgridschool. srm://gwdca04.fnal.gov:8443/srm/managerv2\?sfn=/pnfs/fnal.gov/data/osge du/smallfile-train99 asiteurlforafilename smallfile-train99 onsrm runningonthehostcalled gwdca04.fnal.gov andport8443 withthewebservice handle /srm/managerv2 indirectory /pnfs/fnal.gov/data/osgedu. SFNrepresents SiteFileName. 2.4 BrowsingafileinSRMmanagedstorage NowtrytofindoutthepropertiesofthefilethatyoujustputintoSRM. $ srm-ls $SRMEP\?SFN=$SRMPATH/smallfile-$MYNAME Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-CLIENT*REQUEST_EXPLANATION=srm-ls completed normally SRM-CLIENT*SURL=/pnfs/fnal.gov/data/osgedu/smallfile-alex

3 SRM-CLIENT*BYTES= SRM-CLIENT*FILETYPE=FILE SRM-CLIENT*STORAGETYPE=PERMANENT SRM-CLIENT*FILE_STATUS=SRM_SUCCESS SRM-CLIENT*OWNERPERMISSION=7166 SRM-CLIENT*LIFETIMELEFT=-1 SRM-CLIENT*LIFETIMEASSIGNED=-1 SRM-CLIENT*CHECKSUMTYPE=adler32 SRM-CLIENT*CHECKSUMVALUE=01e00001 SRM-CLIENT*FILELOCALITY=ONLINE SRM-CLIENT*OWNERPERMISSION.USERID=7166 SRM-CLIENT*OWNERPERMISSION.MODE=RW SRM-CLIENT*GROUPPERMISSION.GROUPID=9803 SRM-CLIENT*GROUPPERMISSION.MODE=R SRM-CLIENT*OTHERPERMISSION=R SRM-CLIENT*RETENTIONPOLICY=CUSTODIAL SRM-CLIENT*ACCESSLATENCY=ONLINE SRM-CLIENT*LASTACCESSED= SRM-CLIENT*CREATEDATTIME= GettingafilefromSRMmanagedstorage NowtrytogetthefilethatyoujustbrowsedandputintoSRMfromtheSRMmanagedstorage toyourlocalmachine.thisclientoperationcommunicateswithsrmserverthroughseveral interfacesinternally:srmpreparetogettorequestyourfilerequest,srmstatusofgetrequestto checkyourrequest,gridftpfiletransferandsrmreleasefilestoreleasethefileafteryour transfer. $ srm-copy $SRMEP\?SFN=$SRMPATH/smallfile-$MYNAME \ file:////home/train99/srmex/my-smallfile Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-CLIENT*REQUESTTYPE=get SRM-CLIENT*TOTALFILES=1 SRM-CLIENT*TOTAL_SUCCESS=1 SRM-CLIENT*TOTAL_FAILED=0 SRM-CLIENT*REQUEST_TOKEN= SRM-CLIENT*SOURCEURL[0]=$SRMEP\?SFN=$SRMPATH/smallfile-$MYNAME SRM-CLIENT*TARGETURL[0]=file:////home/train99/srmex/my-smallfile SRM-CLIENT*TRANSFERURL[0]=gsiftp://gwdca03.fnal.gov:2811///smallfile-alex SRM-CLIENT*ACTUALSIZE[0]= SRM-CLIENT*FILE_STATUS[0]=SRM_FILE_PINNED SRM-CLIENT*EXPLANATION[0]=Done Aftersrm copyiscompleted,findoutthefilesizeatthetargetonyourlocalmachine: $ ls l /home/train99/srmex/my-smallfile -rw-r--r-- 1 train99 train :29 my-smallfile 2.6 RemovingafileinSRMmanagedstorage

4 NowtrytoremovethefilethatyouputfromtheSRMmanagedstorage. $ srm-rm $SRMEP\?SFN=$SRMPATH/smallfile-$MYNAME Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-DIR: Total files to remove: 1 explanation=successfully removed files surl=$srmep\?sfn=$srmpath/smallfile-$myname Aftersrm-rmreturnssuccessfully,findoutthefilepropertiesofthesameSURLontheSRM withsrm-ls.youshouldseethatthesurlisinvalid. 2.7 CreatingandremovingadirectoryinSRMmanagedstorage NowtrytocreateadirectoryinSRMmanagedstorage. $ srm-mkdir $SRMEP\?SFN=$SRMPATH/$MYNAME ThiswillcreateadirectoryundertheSRMthatyoucanuseinyourSURLs. Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-DIR: Sat Jan 12 19:04:09 CST 2008 Calling SrmMkdir explanation=success BrowsethedirectorytoseewhatkindofpropertyinformationthatyouretrievefromSRM. NowtrytoremovethedirectoryfromSRM. $ srm-rmdir $SRMEP\?SFN=$SRMPATH/$MYNAME ThiswillremoveadirectoryundertheSRM. Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-DIR: Sat Jan 12 19:06:34 CST 2008 Calling SrmRmdir explanation=success 2.8 Summaryofbasicoperations Experimentwithputtingandgettingfileswithdifferentfilesizesandnumbersofparallel streamstoandfromtheremotesrmsite,andseethedifferences.whenyouuse4parallel datastreamsbyaddingthe -parallelism optionwithanargumentof4,theclientoperation goesthroughthesameprotocol,andtheparallelstreamsareusedinthegridftpfiletransfer. Largerfileswouldmakeasignificantdifferenceinfiletransferperformance.

5 Experimentwithdirectorystructureinyourpath. Note:Remembertoremovethosefilesanddirectoriesthatyoucreatedafterwards. 3 Spacemanagementandrelatedoperations 3.1 ReservingaspaceinSRMforopportunisticuse Now,let smakeaspacereservationfor5mbytesoftotalspace,4mbytesofguaranteedspace andlifetimeof900seconds: $ srm-sp-reserve serviceurl $SRMEP size gsize lifetime 900 Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-SPACE: Status Code for spacestatusrequest SRM_SUCCESS SpaceToken= TotalReservedSpaceSize= Retention Policy=REPLICA Access Latency=ONLINE Uponsuccessfulspacereservation,thiswillshowyouthespacetokenwhichwillbeusedinthe nextexercises.(e.g fromabove,butitisnotnecessarilynumbersalwaysanddifferent storagemayreturndifferentstringformat.)notethatyourreservedspacewasreturnedas4mb. Let ssetthereturnedspacetokenasanenvironmentvariabletore uselateron: $ set SPTOKEN= FindingoutspacepropertiesfromSRM Now,let sfindoutthespaceinformationwiththespacetokenthatyoujustreceivedabove: $ srm-sp-info serviceurl $SRMEP spacetoken $SPTOKEN Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-SPACE:...space token details... SpaceToken= TotalSize= Owner=VoGroup=osgedu VoRole=null LifetimeAssigned=900 LifetimeLeft=463 UnusedSize= GuaranteedSize= RetentionPolicy=REPLICA AccessLatency=ONLINE explanation=ok

6 3.3 RetrievingspacetokensfromSRM Supposedyoulostyourspacetoken,andlet sfindouthowtoretrievethespacetokensthat belongtoyou: $ srm-sp-tokens serviceurl $SRMEP Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-SPACE:... Status=SRM_SUCCESS Explanation=OK SRM-SPACE (0)SpaceToken= Thiswouldshowallthespacetokensthatbelongtoyourgrididentityanditsmappingonthe server. 3.4 UpdatingaspaceinSRM Sometimepassedsincetheabovespacereservation,andthelifetimeofthereservedspace maybeneartheexpiration.now,let supdatethelifetimeofthespaceaswellasthesizeofthe space.we lluse7mboftotalspacewith6mbofguaranteedspace,andmakethelifetime950 seconds: $ srm-sp-update serviceurl $SRMEP spacetoken $SPTOKEN size gsize lifetime 950 Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowingbecausethetarget SRMstoragedoesnotsupportthisfunctionality. SRM-SPACE: Sat Jan 12 19:09:55 CST 2008 Calling updatespace request status=srm_not_supported explanation=can not find a handler, not implemented Request token=null However,whentheSRMstoragesupportsthefunctionalityandtherequestissuccessful,this returnsasummarysimilartothefollowing. SRM-SPACE: Sat Jan 12 21:22:50 PST 2008 Calling updatespace request Request token=null lifetime=950 Min= Max= Yourspacetokenisthesameasbefore,anduponsuccessfulcompletion,thelifetimeandsize ofyourspaceshouldbeupdated.let sfindoutthespaceinformationfromthesrmandverify usingsrm-sp-infotoseethenewupdatedinformation.

7 3.5 PuttingafileintothereservedspaceinSRM Nowlet sputafileintoyourreservedspaceusingthespacetoken.thisclientoperation communicateswiththesrmserver,sameasbefore.however,becauseofyourspacetoken, yourfilewillbewrittenintothespacethatyouhavereserved. $ srm-copy file:////home/train99/srmex/smallfile-$myname \ $SRMEP\?SFN=$SRMPATH/smallfile-space-$MYNAME \ -spacetoken $SPTOKEN Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-CLIENT*REQUESTTYPE=put SRM-CLIENT*TOTALFILES=1 SRM-CLIENT*TOTAL_SUCCESS=1 SRM-CLIENT*TOTAL_FAILED=0 SRM-CLIENT*REQUEST_TOKEN= SRM-CLIENT*SOURCEURL[0]=file:////home/train99/srmex/smallfile-$MYNAME SRM-CLIENT*TARGETURL[0]=$SRMEP\?SFN=$SRMPATH/smallfile-space-$MYNAME SRM-CLIENT*TRANSFERURL[0]=gsiftp://gwdca03.fnal.gov:2811///smallfile-space-alex SRM-CLIENT*ACTUALSIZE[0]= SRM-CLIENT*FILE_STATUS[0]=SRM_SUCCESS SRM-CLIENT*EXPLANATION[0]=Done Aftersuccessfulcompletion,findoutthefilepropertieswithsrm-ls. $ srm-ls $SRMEP\?SFN=$SRMPATH/smallfile-space-$MYNAME Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-CLIENT*REQUEST_EXPLANATION=srm-ls completed normally SRM-CLIENT*SURL=/pnfs/fnal.gov/data/osgedu/smallfile-space-alex SRM-CLIENT*BYTES= SRM-CLIENT*FILETYPE=FILE SRM-CLIENT*STORAGETYPE=PERMANENT SRM-CLIENT*FILE_STATUS=SRM_SUCCESS SRM-CLIENT*OWNERPERMISSION=7166 SRM-CLIENT*LIFETIMELEFT=-1 SRM-CLIENT*LIFETIMEASSIGNED=-1 SRM-CLIENT*CHECKSUMTYPE=adler32 SRM-CLIENT*CHECKSUMVALUE=01e00001 SRM-CLIENT*FILELOCALITY=ONLINE SRM-CLIENT*OWNERPERMISSION.USERID=7166 SRM-CLIENT*OWNERPERMISSION.MODE=RW SRM-CLIENT*GROUPPERMISSION.GROUPID=9803 SRM-CLIENT*GROUPPERMISSION.MODE=R SRM-CLIENT*OTHERPERMISSION=R SRM-CLIENT*SPACETOKENS(0)= SRM-CLIENT*RETENTIONPOLICY=CUSTODIAL SRM-CLIENT*ACCESSLATENCY=ONLINE SRM-CLIENT*LASTACCESSED= SRM-CLIENT*CREATEDATTIME=

8 Notefromtheprevioussrm lsoutputthatthistimeitshowsthespacetokenyouusedwhen puttingyourfileintothesrmmanagedstorage. 3.6 ReleasingthereservedspacefromSRM Nowlet sreleasethereservedspaceusingthespacetoken. $ srm-sp-release serviceurl $SRMEP -spacetoken $SPTOKEN Uponsuccessfulcompletion,thisreturnsasummarysimilartothefollowing: SRM-SPACE: Releasing space for token= explanation=space released Thisoperationmayfailifyouhaveanyfilesinthespaceassociatedwiththespacetoken.In suchcase,removethefileswithsrm-rmtotryreleasingthespaceagain. $ srm-rm $SRMEP\?SFN=$SRMPATH/smallfile-space-$MYNAME Aftersuccessfulreleasingyourreservedspace,findoutthespacepropertieswithsrm-sp-info. 3.7 Summaryofspacemanagementoperations Experimentonreservingspaceswithdifferentspacesizesandlifetimes,andputtingyourfiles intothereservedspaceswithspacetoken.experimentupdatingthereservedspaceafteryou putyourfilesintothereservedspace.experimentwithdirectorystructureinyoursurl. Note:Remembertoremovethosefilesanddirectoriesthatyoucreatedafterwards.Also remembertoreleasethosespacesthatyoureservedifstillactive. 4 Advancedexercises(iftimepermitsorashomework) 4.1 Settingupasmalldisk basedsrm TherearenumberofdifferentSRMimplementations,andforanadvancedexercise,let stryto installandconfigureasmalldiskbasedsrmcalledbestman(berkeleystoragemanager)for yourpersonaluse.yourpersonalsrmwillberunningonyourgridproxy,andonlyyouwillbe abletoaccessit. First,let sdownloadthebestman,ansrmserver,fromtheweb: Thecurrentlatestversionisv tar.gzasofJan.2008.Untarthepackage:tarzxvfbestman tar.gz.Youwillnowhavebestman/directoryinthecurrentworkingdirectory.

9 Aspartofsetupprocess,let screateacachedirectoryandalogdirectoryinthecurrentworking directory:mkdir./cache./log Findoutthecurrentworkingdirectoryforfullpathinformation(normally$PWDcorrespondstoyour currentworkingdirectory). Now,youwillbeusingyourgridproxytolaunchyourpersonalSRM,andfindoutwhereyourgridproxy islocated(it snormallylocatedin/tmp/x509up_u####,and`id u`wouldshowyouruseridfor#### part.let scalltheproxylocationasx509_user_proxy). NextstepistodecidewhichportnumbertoassignforyourpersonalSRM.Intheexamplebelow,it showstwoportstouse,16249and16250.youcanchooseanytwouserportsforthisexercise. Also,themanagedstoragecachesizeissetupto10MB,whichisenoughforyourexercise. Changeyourworkingdirectorytobestman/setupandlet sconfigure../configure\ with replica storage path=$pwd/cache\ with replica storage size=10\ with http port=16249\ with https port=16250\ with proxyfile path=$x509_user_proxy\ with eventlog path=$pwd/log\ with cachelog path=$pwd/log Theconfigurationprocesscreatesnewdirectories,andsbinisoneoftheminthebestmanhome directory.changeyourworkingdirectorytosbin,andlaunchbestmansrmwith./sxxbestman.personalstart.thisstartsupansrmserverforyourownpersonalexercisethatonly youcanaccessto. Tostoptheserver,changethedirectorytobestman/sbin,andtypein./SXXbestman.personalstop Now,youcangothroughtheclientcommandsthatyouhaveexercised,suchassrm ping,srm copy, srm ls,srm rm,etc.andyourownsrmendpointfromtheexampleaboveis srm://`hostname`:16250/srm/v2/server,andyourowndirectorypathwouldbe~. So,oneexampleofantargetURLonyourSRMservercanbe srm://`hostname`:16250/srm/v2/server\?sfn=/srmcache/~/mysmallfile. Foraninstallationforagrouporasite,pleasereferto Havefunonyourgridexperiences,andwhenyouhavefurtherquestionsonSRMs,youcansendan

BeStMan-gateway Installation and Configuration for OSG Tier-2, Tier-3 sites

BeStMan-gateway Installation and Configuration for OSG Tier-2, Tier-3 sites BeStMan-gateway Installation and Configuration for OSG Tier-2, Tier-3 sites (draft) T. Levshina Introduction OSG Storage VDT group has been asked to provide a full support of BeStMan-gateway storage solution.

More information

StoRM hands on session

StoRM hands on session 27 November 2007 session In this session we will interact with an SRM installation: StoRM host at INFN CNAF: vgrid06.cnaf.infn.it (is a virtual machine installed with Red Hat Enterprise Linux). User Interface:

More information

CA and SSL Certificates

CA and SSL Certificates 1 For this exercise you must again be root. Login and obtain root privileges: sudo su 2 Create a working directory only accessible to root: mkdir ~/ca cd ~/ca chmod og rwx. 3 Install openssl if necessary

More information

How to upload large files to a JTAC Case

How to upload large files to a JTAC Case How to upload large files to a JTAC Case Summary: JTAC often requires data to be collected (such as configuration files, tracedump data, log files, etc) and sent in for review. If the files are larger

More information

SECURE Web Gateway. HTTPS/SSL Technical FAQ. Version 1.1. Date 04/10/12

SECURE Web Gateway. HTTPS/SSL Technical FAQ. Version 1.1. Date 04/10/12 SECURE Web Gateway HTTPS/SSL Technical FAQ Version 1.1 Date 04/10/12 Introduction This Technical FAQ explains the operation of the HTTPS/SSL scanning and how it is deployed. How does the SECURE Web Gateway

More information

Michael Thomas, Dorian Kcira California Institute of Technology. CMS Offline & Computing Week

Michael Thomas, Dorian Kcira California Institute of Technology. CMS Offline & Computing Week Michael Thomas, Dorian Kcira California Institute of Technology CMS Offline & Computing Week San Diego, April 20-24 th 2009 Map-Reduce plus the HDFS filesystem implemented in java Map-Reduce is a highly

More information

Install an SSL Certificate onto SilverStream. Sender Recipient Attached FIles Pages Date. Development Internal/External None 5 6/16/08

Install an SSL Certificate onto SilverStream. Sender Recipient Attached FIles Pages Date. Development Internal/External None 5 6/16/08 Technical Note Sender Recipient Attached FIles Pages Date Development Internal/External None 5 6/16/08 This technical note explains how to generate a Certificate Signing Request (CSR) and install an SSL

More information

Data Management. Network transfers

Data Management. Network transfers Data Management Network transfers Network data transfers Not everyone needs to transfer large amounts of data on and off a HPC service Sometimes data is created and consumed on the same service. If you

More information

The Storage Resource Manager Interface Specification

The Storage Resource Manager Interface Specification The Strage Resurce Manager Interface Specificatin Versin 2.2 2 April 2007 Cllabratin Web: Dcument Lcatin: http://sdm.lbl.gv/srm wg http://sdm.lbl.gv/srm wg/dc/srm.v2.2.html Editrs: Alex Sim Arie Shshani

More information

OIOSAML Rich Client to Browser Scenario Version 1.0

OIOSAML Rich Client to Browser Scenario Version 1.0 > OIOSAML Rich Client to Browser Scenario Version 1.0 Danish Agency for Digitization December 2011 Contents > 1 Introduction 4 1.1 Purpose 1.2 Background 4 4 2 Goals and Assumptions 5 3 Scenario Details

More information

CLEARSWIFT SECURE Web Gateway HTTPS/SSL decryption

CLEARSWIFT SECURE Web Gateway HTTPS/SSL decryption CLEARSWIFT SECURE Web Gateway HTTPS/SSL decryption Introduction This Technical FAQ explains the functionality of the optional HTTPS/SSL scanning and inspection module available for the Web Gateway and

More information

ADFS Integration Guidelines

ADFS Integration Guidelines ADFS Integration Guidelines Version 1.6 updated March 13 th 2014 Table of contents About This Guide 3 Requirements 3 Part 1 Configure Marcombox in the ADFS Environment 4 Part 2 Add Relying Party in ADFS

More information

PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide

PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and

More information

The Storage Resource Manager Interface Specification Version 2.2

The Storage Resource Manager Interface Specification Version 2.2 GWD-R-XXXX Grid Strage Resurce Management https://frge.gridfrum.rg/prjects/gsm-wg Editrs: A. Sim A. Shshani 9/5/2007 The Strage Resurce Manager Interface Specificatin Versin 2.2 Status f this Mem This

More information

Microsoft Dynamics CRM Server 2011 software requirements

Microsoft Dynamics CRM Server 2011 software requirements Microsoft Dynamics CRM Server 2011 software requirements This section lists the software and application requirements for Microsoft Dynamics CRM Server 2011. Windows Server operating system: Microsoft

More information

How to Configure Active Directory based User Authentication

How to Configure Active Directory based User Authentication How to Configure Active Directory based User Authentication You Must Have: Microsoft server with Active Directory configured. Windows 2000 Server is configured as Active Directory server in this example.

More information

The dcache Storage Element

The dcache Storage Element 16. Juni 2008 Hamburg The dcache Storage Element and it's role in the LHC era for the dcache team Topics for today Storage elements (SEs) in the grid Introduction to the dcache SE Usage of dcache in LCG

More information

Central Administration QuickStart Guide

Central Administration QuickStart Guide Central Administration QuickStart Guide Contents 1. Overview... 2 Licensing... 2 Documentation... 2 2. Configuring Central Administration... 3 3. Using the Central Administration web console... 4 Managing

More information

How to Configure edgebox as a Web Server

How to Configure edgebox as a Web Server intelligence at the edge of the network www.critical-links.com edgebox V4.5 Introduction: The Web Server panel allows the simple creation of multiple web sites using the Apache web server. Each website

More information

Setup Corporate (Microsoft Exchange) Email. This tutorial will walk you through the steps of setting up your corporate email account.

Setup Corporate (Microsoft Exchange) Email. This tutorial will walk you through the steps of setting up your corporate email account. Setup Corporate (Microsoft Exchange) Email This tutorial will walk you through the steps of setting up your corporate email account. Microsoft Exchange Email Support Exchange Server Information You will

More information

Defender 5.7 - Token Deployment System Quick Start Guide

Defender 5.7 - Token Deployment System Quick Start Guide Defender 5.7 - Token Deployment System Quick Start Guide This guide describes how to install, configure and use the Defender Token Deployment System, based on default settings and how to self register

More information

DEPLOYMENT OF I M INTOUCH (IIT) IN TYPICAL NETWORK ENVIRONMENTS. Single Computer running I m InTouch with a DSL or Cable Modem Internet Connection

DEPLOYMENT OF I M INTOUCH (IIT) IN TYPICAL NETWORK ENVIRONMENTS. Single Computer running I m InTouch with a DSL or Cable Modem Internet Connection DEPLOYMENT OF I M INTOUCH (IIT) IN TYPICAL NETWORK ENVIRONMENTS Introduction I m InTouch is a personal remote access application that allows a user to access the data on his or her PC from a remote location,

More information

Shipping Services Files (SSF) Secure File Transmission Account Setup

Shipping Services Files (SSF) Secure File Transmission Account Setup Company This template is provided to document all of the materials and information needed for configuring secure file transmission for Shipping Services Files. Version 1.3 Page 1 of 5 1. Enter Date Submitted:

More information

Storage Resource Managers: Recent International Experience on Requirements and Multiple Co-Operating Implementations

Storage Resource Managers: Recent International Experience on Requirements and Multiple Co-Operating Implementations Storage Resource Managers: Recent International Experience on Requirements and Multiple Co-Operating Implementations Lana Abadie 1, Paolo Badino 1, Jean-Philippe Baud 1,Ezio Corso 2, Matt Crawford 3, Shaun

More information

vcenter Single Sign On Programming Guide vcenter Single Sign On SDK vsphere 5.5

vcenter Single Sign On Programming Guide vcenter Single Sign On SDK vsphere 5.5 vcenter Single Sign On Programming Guide vcenter Single Sign On SDK vsphere 5.5 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe`

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe` Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A OwnCloud User Manual TO I Cafe` DATED 20 Sep 2014 User Manual Guid For Owncloud I. Accessing the owncloud Web Interface To access the owncloud

More information

Load Balancing Oracle Application Server (Oracle HTTP Server) Quick Reference Guide

Load Balancing Oracle Application Server (Oracle HTTP Server) Quick Reference Guide Load Balancing Oracle Application Server (Oracle HTTP Server) Quick Reference Guide v1.1.0 Oracle HTTP Server Ports By default Oracle HTTP Server listens on HTTP port 7777 and HTTPS is disabled. When HTTPS

More information

Xerox Multifunction Devices

Xerox Multifunction Devices Xerox Multifunction Devices Customer Tips July 2, 2003 Scanning to a Mac OS X Repository for the user Purpose This document describes how to scan to a repository on a Mac OS X computer from a Xerox multifunction

More information

Deploying RSA ClearTrust with the FirePass controller

Deploying RSA ClearTrust with the FirePass controller Deployment Guide Deploying RSA ClearTrust with the FirePass Controller Deploying RSA ClearTrust with the FirePass controller Welcome to the FirePass RSA ClearTrust Deployment Guide. This guide shows you

More information

Chapter 12 Distributed Storage

Chapter 12 Distributed Storage Chapter 12 Distributed Storage 1 2 Files File location and addressing What is a file? Normally we collapse. Concepts: name; contents; gui. What about the backup of this file? How do we distinguish? File

More information

Managing Qualys Scanners

Managing Qualys Scanners Q1 Labs Help Build 7.0 Maintenance Release 3 documentation@q1labs.com Managing Qualys Scanners Managing Qualys Scanners A QualysGuard vulnerability scanner runs on a remote web server. QRadar must access

More information

ACR Connect Authentication Service Developers Guide

ACR Connect Authentication Service Developers Guide ACR Connect Authentication Service Developers Guide Revision History Date Revised by Version Description 29/01/2015 Sergei Rusinov 1.0 Authentication using NRDR account Background The document describes

More information

Accessing the FTP Server - User Manual

Accessing the FTP Server - User Manual CENTRAL BANK OF CYPRUS Accessing the FTP Server - User Manual IT Department, CENTRAL BANK OF CYPRUS TABLE OF CONTENTS 1 EXECUTIVE SUMMARY... 1 1.1 AUDIENCE... 1 1.2 SCOPE... 1 2 CHANGES FROM THE OLD FTP

More information

Apache and Virtual Hosts Exercises

Apache and Virtual Hosts Exercises Apache and Virtual Hosts Exercises Install Apache version 2 Apache is already installed on your machines, but if it was not you would simply do: # apt-get install apache2 As the root user. Once Apache

More information

Robert Honeyman Honeyman IT Consulting. http://www.honeymanit.co.uk rob.honeyman@honeymanit.co.uk

Robert Honeyman Honeyman IT Consulting. http://www.honeymanit.co.uk rob.honeyman@honeymanit.co.uk Robert Honeyman Honeyman IT Consulting http://www.honeymanit.co.uk rob.honeyman@honeymanit.co.uk Requirement for HA with SSO Centralized access control SPOF for dependent apps SSO failure = no protected

More information

Quick Start 5: Introducing and configuring Websense Cloud Web Security solution

Quick Start 5: Introducing and configuring Websense Cloud Web Security solution Quick Start 5: Introducing and configuring Websense Cloud Web Security solution Websense Support Webinar April 2013 TRITON STOPS MORE THREATS. WE CAN PROVE IT. 2013 Websense, Inc. Page 1 Presenter Greg

More information

G-Lock EasyMail7. Admin Guide. Client-Server Email Marketing Solution for Windows. Copyright G-Lock Software. All Rights Reserved.

G-Lock EasyMail7. Admin Guide. Client-Server Email Marketing Solution for Windows. Copyright G-Lock Software. All Rights Reserved. G-Lock EasyMail7 Client-Server Email Marketing Solution for Windows Admin Guide Copyright G-Lock Software. All Rights Reserved. 1 Table of Contents This document is your admin guide for G-Lock EasyMail7

More information

USER GUIDE. Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20

USER GUIDE. Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20 USER GUIDE Product Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20 CONTENT ABOUT THIS DOCUMENT... 3 OVERVIEW... 3 OPERATING SYSTEMS SUPPORTED... 3 PREREQUISITES...

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Installation & Activation Guide. Lepide Active Directory Self Service

Installation & Activation Guide. Lepide Active Directory Self Service Installation & Activation Guide Lepide Active Directory Self Service , All Rights Reserved This User Guide and documentation is copyright of Lepide Software Private Limited, with all rights reserved under

More information

DPM Monitoring Tool Analysis

DPM Monitoring Tool Analysis DPM Monitoring Tool Analysis Mirco Ciriello-INFN Pisa, Flavia Donno-CERN May 16, 2007 Overview The aim of this document is to analyse the existing monitoring tools for the Disk Pool Manager (DPM), a lightweight

More information

Building Secure Applications. James Tedrick

Building Secure Applications. James Tedrick Building Secure Applications James Tedrick What We re Covering Today: Accessing ArcGIS Resources ArcGIS Web App Topics covered: Using Token endpoints Using OAuth/SAML User login App login Portal ArcGIS

More information

Oracle Communications WebRTC Session Controller: Basic Admin. Student Guide

Oracle Communications WebRTC Session Controller: Basic Admin. Student Guide Oracle Communications WebRTC Session Controller: Basic Admin Student Guide Edition 1.0 April 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

More information

A. Sim, CRD, L B N L 1

A. Sim, CRD, L B N L 1 A. Sim, CRD, L B N L 1 A. Sim, CRD, L B N L 2 GET (srmpreparetoget) file transfer (PULL) srmcp/srm-copy srm://sourcesrmendpoint\?sfn=/filepath srm://targetsrmendpoint\?sfn=/filepath A. Sim, CRD, L B N

More information

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g DEPLOYMENT GUIDE Version 1.1 Deploying F5 with Oracle Application Server 10g Table of Contents Table of Contents Introducing the F5 and Oracle 10g configuration Prerequisites and configuration notes...1-1

More information

Amazon EFS (Preview) User Guide

Amazon EFS (Preview) User Guide Amazon EFS (Preview) User Guide Amazon EFS (Preview): User Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used

More information

Using Actian PSQL as a Data Store with VMware vfabric SQLFire. Actian PSQL White Paper May 2013

Using Actian PSQL as a Data Store with VMware vfabric SQLFire. Actian PSQL White Paper May 2013 Using Actian PSQL as a Data Store with VMware vfabric SQLFire Actian PSQL White Paper May 2013 Contents Introduction... 3 Prerequisites and Assumptions... 4 Disclaimer... 5 Demonstration Steps... 5 1.

More information

Administrative Guide VtigerCRM Microsoft Exchange Connector (Exchange Server 2010)

Administrative Guide VtigerCRM Microsoft Exchange Connector (Exchange Server 2010) Administrative Guide VtigerCRM Microsoft Exchange Connector (Exchange Server 2010) Table of Contents Introduction...3 Requirements...4 Installation...5 Vtiger Server Component...5 Exchange Server Component...6

More information

Security IIS Service Lesson 6

Security IIS Service Lesson 6 Security IIS Service Lesson 6 Skills Matrix Technology Skill Objective Domain Objective # Configuring Certificates Configure SSL security 3.6 Assigning Standard and Special NTFS Permissions Enabling and

More information

WebNow Single Sign-On Solutions

WebNow Single Sign-On Solutions WebNow Single Sign-On Solutions Technical Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: June 2015 2012 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact,

More information

PROTECTING DATA IN TRANSIT WITH ENCRYPTION IN M-FILES

PROTECTING DATA IN TRANSIT WITH ENCRYPTION IN M-FILES M-FILES CORPORATION PROTECTING DATA IN TRANSIT WITH ENCRYPTION IN M-FILES VERSION 8 24 SEPTEMBER 2014 Page 1 of 8 CONTENTS 1. Overview... 3 2. Encryption of Data in Transit in M-Files... 4 HTTPS... 4 RPC

More information

Introduction to HDFS. Prasanth Kothuri, CERN

Introduction to HDFS. Prasanth Kothuri, CERN Prasanth Kothuri, CERN 2 What s HDFS HDFS is a distributed file system that is fault tolerant, scalable and extremely easy to expand. HDFS is the primary distributed storage for Hadoop applications. Hadoop

More information

Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML

Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML Configuring ADFS 3.0 to Communicate with WhosOnLocation SAML --------------------------------------------------------------------------------------------------------------------------- Contents Overview...

More information

HTTPS GATEWAY INSTRUCTIONS

HTTPS GATEWAY INSTRUCTIONS HTTPS GATEWAY INSTRUCTIONS Definition of HTTPS (HyperText Transport Protocol Secure): The protocol for accessing a secure Web (internet) server. Using HTTPS in the URL or address bar instead of HTTP directs

More information

ArcGIS for Server Deployment Scenarios An ArcGIS Server s architecture tour

ArcGIS for Server Deployment Scenarios An ArcGIS Server s architecture tour ArcGIS for Server Deployment Scenarios An Arc s architecture tour Ismael Chivite Product Manager at Esri Concepts Single Machine Configurations Basic Basic with Proxy Fail-Over Load Balanced or Siloed

More information

This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1.

This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1. This presentation covers virtual application shared services supplied with IBM Workload Deployer version 3.1. WD31_VirtualApplicationSharedServices.ppt Page 1 of 29 This presentation covers the shared

More information

Cloudera Backup and Disaster Recovery

Cloudera Backup and Disaster Recovery Cloudera Backup and Disaster Recovery Important Note: Cloudera Manager 4 and CDH 4 have reached End of Maintenance (EOM) on August 9, 2015. Cloudera will not support or provide patches for any of the Cloudera

More information

Tibbr Installation Addendum for Amazon Web Services

Tibbr Installation Addendum for Amazon Web Services Tibbr Installation Addendum for Amazon Web Services Version 1.1 February 17, 2013 Table of Contents Introduction... 3 MySQL... 3 Choosing a RDS instance size... 3 Creating the RDS instance... 3 RDS DB

More information

SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit

SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit SecureAware on IIS8 on Windows Server 2008/- 12 R2-64bit Note: SecureAware version 3.7 and above contains all files and setup configuration needed to use Microsoft IIS as a front end web server. Installing

More information

OAuth 2.0 andinternet Standard. Torsten Lodderstedt Deutsche Telekom AG

OAuth 2.0 andinternet Standard. Torsten Lodderstedt Deutsche Telekom AG OAuth 2.0 andinternet Standard Protocols Torsten Lodderstedt Deutsche Telekom AG Whatshallweaimfor? make OAuth the authorization framework of choice for any internet standard protocol, such as WebDAV,

More information

1 Basic commands. 2 Terminology. CS61B, Fall 2009 Simple UNIX Commands P. N. Hilfinger

1 Basic commands. 2 Terminology. CS61B, Fall 2009 Simple UNIX Commands P. N. Hilfinger CS61B, Fall 2009 Simple UNIX Commands P. N. Hilfinger 1 Basic commands This section describes a list of commonly used commands that are available on the EECS UNIX systems. Most commands are executed by

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

CRM to Exchange Synchronization

CRM to Exchange Synchronization CRM to Exchange Synchronization Installation, Configuration and End-User Instructions VERSION 1.0 DATE PREPARED: 9/1/2012 DEVELOPMENT: BRITE GLOBAL, INC. 2012 Brite Global, Incorporated. All rights reserved.

More information

Guide to the Configuration and Use of SFTP Clients for Uploading Digital Treatment Planning Data to ITC

Guide to the Configuration and Use of SFTP Clients for Uploading Digital Treatment Planning Data to ITC Guide to the Configuration and Use of SFTP Clients for Uploading Digital Treatment Planning Data to ITC The ITC has tested several SFTP client programs for submitting digital data to the ITC. These include

More information

Lecture 8a: WWW Proxy Servers and Cookies

Lecture 8a: WWW Proxy Servers and Cookies Internet and Intranet Protocols and Applications Lecture 8a: WWW Proxy Servers and Cookies March 12, 2003 Arthur Goldberg Computer Science Department New York University artg@cs.nyu.edu Terminology Origin

More information

External Authentication with Windows 2012 R2 Server with Remote Desktop Web Gateway Authenticating Users Using SecurAccess Server by SecurEnvoy

External Authentication with Windows 2012 R2 Server with Remote Desktop Web Gateway Authenticating Users Using SecurAccess Server by SecurEnvoy External Authentication with Windows 2012 R2 Server with Remote Desktop Web Gateway Authenticating Users Using SecurAccess Server by SecurEnvoy Contact information SecurEnvoy www.securenvoy.com 0845 2600010

More information

CRM to Exchange Synchronization

CRM to Exchange Synchronization CRM to Exchange Synchronization Product Registration Instructions VERSION 2.0 DATE PREPARED: 1/1/2013 DEVELOPMENT: BRITE GLOBAL, INC. 2012 Brite Global, Incorporated. All rights reserved. The information

More information

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365

Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 Configuring Single Sign-On from the VMware Identity Manager Service to Office 365 VMware Identity Manager JULY 2015 V1 Table of Contents Overview... 2 Passive and Active Authentication Profiles... 2 Adding

More information

How To Export Data From Exchange To A Mailbox On A Pc Or Macintosh (For Free) With A Gpl Or Ipa (For A Free) Or Ipo (For Cheap) With An Outlook 2003 Or Outlook 2007 (For An Ub

How To Export Data From Exchange To A Mailbox On A Pc Or Macintosh (For Free) With A Gpl Or Ipa (For A Free) Or Ipo (For Cheap) With An Outlook 2003 Or Outlook 2007 (For An Ub Exchange Client Quick Start Guide GAPC Hosted Exchange Client Guide Page 1 of 12 Client Requirements Hosted Exchange requires Outlook 2003 and Windows XP for MAPI access to your hosted Exchange mailboxes,

More information

: RSA 050-V60X-CSEDLPS. : CSE RSA Data Loss Prevention 6.0. Version : R6.1

: RSA 050-V60X-CSEDLPS. : CSE RSA Data Loss Prevention 6.0. Version : R6.1 Exam : RSA 050-V60X-CSEDLPS Title : CSE RSA Data Loss Prevention 6.0 Version : R6.1 Prepking - King of Computer Certification Important Information, Please Read Carefully Other Prepking products A) Offline

More information

PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide

PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide PaperCut Payment Gateway Module - PayPal Payflow Link - Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and

More information

bbc Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO CONTENTS

bbc Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO CONTENTS TECHNICAL ARTICLE Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO Adobe LiveCycle Enterprise Suite CONTENTS Introduction................................. 1 Edge server architecture......................

More information

Archive One Policy V4.2 Quick Start Guide October 2005

Archive One Policy V4.2 Quick Start Guide October 2005 Archive One Policy V4.2 Quick Start Guide October 2005 Archive One Policy Quick Start Guide V4.2 Page 1 of 33 CONTENTS Introduction... 3 Components...3 Before You Start...4 System Requirements...5 Prerequisites...7

More information

External Authentication with Checkpoint R75.40 Authenticating Users Using SecurAccess Server by SecurEnvoy

External Authentication with Checkpoint R75.40 Authenticating Users Using SecurAccess Server by SecurEnvoy External Authentication with Checkpoint R75.40 Authenticating Users Using SecurAccess Server by SecurEnvoy Contact information SecurEnvoy www.securenvoy.com 0845 2600010 Merlin House Brunel Road Theale

More information

IUCLID 5 Guidance and Support

IUCLID 5 Guidance and Support IUCLID 5 Guidance and Support Web Service Installation Guide July 2012 v 2.4 July 2012 1/11 Table of Contents 1. Introduction 3 1.1. Important notes 3 1.2. Prerequisites 3 1.3. Installation files 4 2.

More information

SalesForce SSO with Active Directory Federated Services (ADFS) v2.0 Authenticating Users Using SecurAccess Server by SecurEnvoy

SalesForce SSO with Active Directory Federated Services (ADFS) v2.0 Authenticating Users Using SecurAccess Server by SecurEnvoy SalesForce SSO with Active Directory Federated Services (ADFS) v2.0 Authenticating Users Using SecurAccess Server by SecurEnvoy Contact information SecurEnvoy www.securenvoy.com 0845 2600010 Merlin House

More information

Plesk Panel HEAnet Customer Guide

Plesk Panel HEAnet Customer Guide Plesk Panel HEAnet Customer Guide Version 1.7 September 2013 HEAnet has migrated its Webhosting Service from the old Linux/Apache/MySQL/PHP (LAMP) set up to a control panel environment based on Parallel

More information

Setting Up Your ECi Remote Backup Solution

Setting Up Your ECi Remote Backup Solution Setting Up Your ECi Remote Backup Solution April 2010 Rev. 1 Contents Introduction... 3 Implementing the Remote Backup Solution... 4 Using the Avamar Client Software... 5 Restoring a Backup... 5 2 Introduction

More information

Application Note. Onsight Connect Network Requirements v6.3

Application Note. Onsight Connect Network Requirements v6.3 Application Note Onsight Connect Network Requirements v6.3 APPLICATION NOTE... 1 ONSIGHT CONNECT NETWORK REQUIREMENTS V6.3... 1 1 ONSIGHT CONNECT SERVICE NETWORK REQUIREMENTS... 3 1.1 Onsight Connect Overview...

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.

Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 OTM and SOA Mark Hagan Principal Software Engineer Oracle Product Development Content What is SOA? What is Web Services Security? Web Services Security in OTM Futures 3 PARADIGM 4 Content What is SOA?

More information

Cloud Elements! Events Management BETA! API Version 2.0

Cloud Elements! Events Management BETA! API Version 2.0 Cloud Elements Events Management BETA API Version 2.0 Event Management Version 1.0 Event Management Cloud Elements Event Management provides a uniform mechanism for subscribing to events from Endpoints

More information

ArcGIS for Server Reference Implementations. An ArcGIS Server s architecture tour

ArcGIS for Server Reference Implementations. An ArcGIS Server s architecture tour ArcGIS for Server Reference Implementations An Arc s architecture tour Basic Single Machine Site Advantages Easy to setup Fast performance (keep file resources local) Client Manager Data (Files) Uses:

More information

Beyond Windows: Using the Linux Servers and the Grid

Beyond Windows: Using the Linux Servers and the Grid Beyond Windows: Using the Linux Servers and the Grid Topics Linux Overview How to Login & Remote Access Passwords Staying Up-To-Date Network Drives Server List The Grid Useful Commands Linux Overview Linux

More information

Using different Security Policies on Group Level for AD within one Portal. SSL-VPN Security on Group Level. Introduction

Using different Security Policies on Group Level for AD within one Portal. SSL-VPN Security on Group Level. Introduction SSL-VPN Using different Security Policies on Group Level for AD within one Portal SSL-VPN Security on Group Level Introduction Security on the SSL-VPN is done via Policies which allows or denies access

More information

«Disaster Recovery» A DOM Restore Guide for Thecus NAS

«Disaster Recovery» A DOM Restore Guide for Thecus NAS «Disaster Recovery» A DOM Restore Guide for Thecus NAS This guide is applicable to the following NAS models N2800, N4800ECO, N5550, N4510U (PRO), N6850, N8850, 10850, N7510, N7710, N8810, N8900, N12000

More information

Spring Security CAS Plugin - Reference Documentation. Burt Beckwith. Version 3.0.0.M1

Spring Security CAS Plugin - Reference Documentation. Burt Beckwith. Version 3.0.0.M1 Spring Security CAS Plugin - Reference Documentation Burt Beckwith Version 3.0.0.M1 Table of Contents 1. Introduction to the Spring Security CAS Plugin.................................................

More information

Establishing two-factor authentication with Cyberoam UTM appliances and HOTPin authentication server from Celestix Networks

Establishing two-factor authentication with Cyberoam UTM appliances and HOTPin authentication server from Celestix Networks Establishing two-factor authentication with Cyberoam UTM appliances and HOTPin authentication server from Celestix Networks Contact Information www.celestix.com Celestix Networks USA Celestix Networks

More information

How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2

How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2 èè How to configure the TopCloudXL WHMCS plugin (version 2+) Update: 16-09-2015 Version: 2.2 Table of Contents 1. General overview... 3 1.1. Installing the plugin... 3 1.2. Testing the plugin with the

More information

Issues Faced during Installing. WebCenter Sites 11gR1 on Exalogic. Version 1.0. Vivek V Singh. Principal Solutions Architect.

Issues Faced during Installing. WebCenter Sites 11gR1 on Exalogic. Version 1.0. Vivek V Singh. Principal Solutions Architect. Issues Faced during Installing WebCenter Sites 11gR1 on Exalogic Version 1.0 By Vivek V Singh Principal Solutions Architect August 21, 2014 Contents Background:... 3 Software Used:... 3 Connectivity Issues:...

More information

Getting Started with Universal Command Agent for SOA: XD Connector 4.3.0

Getting Started with Universal Command Agent for SOA: XD Connector 4.3.0 Getting Started with Universal Command Agent for SOA: XD Connector 4.3.0 Objective The objective of this document is to assist in the following activities regarding the Universal Command Agent for SOA:

More information

A Guide to New Features in Propalms OneGate 4.0

A Guide to New Features in Propalms OneGate 4.0 A Guide to New Features in Propalms OneGate 4.0 Propalms Ltd. Published April 2013 Overview This document covers the new features, enhancements and changes introduced in Propalms OneGate 4.0 Server (previously

More information

File transfer in UNICORE State of the art

File transfer in UNICORE State of the art Mitglied der Helmholtz-Gemeinschaft File transfer in UNICORE State of the art Bernd Schuller, Björn Hagemeier, Michael Rambadt Federated Systems and Data division Jülich Supercomputer Centre Forschungszentrum

More information

Web Hosting Control Panel Guide

Web Hosting Control Panel Guide Web Hosting Control Panel Guide 10/17/2014 CONTENTS Login URL 2 Domains List 3 Control Panel 4 Database Management 5 FTP Management 7 TelePacific s Web Hosting Control Panel is designed to enhance your

More information

INSTALLATION GUIDE LAUNCHPAD NETWORK CONNECT (V2.1) [A GUIDE BY THE GURUS AT CLASSLINK]

INSTALLATION GUIDE LAUNCHPAD NETWORK CONNECT (V2.1) [A GUIDE BY THE GURUS AT CLASSLINK] INSTALLATION GUIDE LAUNCHPAD NETWORK CONNECT (V2.1) [A GUIDE BY THE GURUS AT CLASSLINK] Welcome to LaunchPad This guide will assist you integrating your network with LaunchPad. Integrating your network

More information

1 Recommended Readings. 2 Resources Required. 3 Compiling and Running on Linux

1 Recommended Readings. 2 Resources Required. 3 Compiling and Running on Linux CSC 482/582 Assignment #2 Securing SimpleWebServer Due: September 29, 2015 The goal of this assignment is to learn how to validate input securely. To this purpose, students will add a feature to upload

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

PaperCut Payment Gateway Module CyberSource Quick Start Guide

PaperCut Payment Gateway Module CyberSource Quick Start Guide PaperCut Payment Gateway Module CyberSource Quick Start Guide This guide is designed to supplement the Payment Gateway Module documentation and provides a guide to installing, setting up, and testing the

More information