ABS Goes Linux D.E.N.K. Endevor-Linux Interface. Johannes Radman

Size: px
Start display at page:

Download "ABS Goes Linux D.E.N.K. Endevor-Linux Interface. Johannes Radman 19.03.2012"

Transcription

1 D.E.N.K. Endevor-Linux Interface ABS Goes Linux Johannes Radman

2 Introduction AMOS Austria Software-Entwicklung ABS - Allianz Business System Client-Server/Portale Java C++ DB2/2 Host z/os PL1 C C++ DB2 Subversion Endevor 2

3 Introduction ABS Kunden Unternehmensgruppe Kunde seit Allianz Österreich Allianz Suisse Allianz Deutschland Mondial (Endausbau 27 Länder) Allianz SE Allianz Russland Allianz France

4 ABS Entwicklungsumgebungen ABS Core Allianz Österreich Allianz SE Mondial -> Linux -> Linux Allianz Russland Allianz France Inttest Fachtest Produktion E I R F V P 4

5 ABS Goes Linux ABS Plattformunabhängig IBM Lizenzkosten Pilot 2010 HP / Microfocus PL/I Source-Anpassungen Performance Tests HP-Hardware Red Hat Linux Microfocus Enterprise-Server Kostenreduktion Performancegewinn Destabilisierung 5

6 Source-Code-Umstellung Enterprise PL/I for z/os vs. Micro Focus Open PL/I..das können ein paar Schimpansen.. Umstellung tw. mittels PHP-Script (Judy) 1/3 der PL/1-Sourcen betroffen Umstellungsphase März 2011 November 2011 Compiler-Weiterentwicklung PKP Produktion: 3.Dezember

7 Endevor-Umgebung unter Linux Integrationstest Fachtest Produktion /shared/endevor/ndvra/*/inttest/ /shared/endevor/ndvra/*/fachtest /shared/endevor/ndvra/*/prod Rexx Linux-Interface BPXBATCH via z/os Unix - langsam (SSH Randomizing Algorythmus Lösung: Krypto-Prozessor) -> AFT (Allianz-File-Transfer) Linux Shell-Scripts - ndvrgen.sh - ndvrmov.sh - ndvrdel.sh Perl Build Host vs. Linux 10% Endevor-Log 7

8 Generate-Prozessor //LINUXGEN EXEC PGM=IKJEFT01,MAXRC=8 //SYSPROC DD DSN=NDVRA.PROD.REXX,DISP=SHR //SYSPRINT DD SYSOUT=* //SYSTSPRT DD DSN=&&LINUXLST,DISP=(MOD,PASS),FREE=CLOSE //AFTIN DD DSN=&&ELMOUT,DISP=(OLD,DELETE),FREE=CLOSE //SYSTSIN DD * %NDVRLINX - &#LINUX - &C1USERID - &C1ACTION - &C1PRTYPE - &C1PRGRP - &C1ELEMENT - &PROJECT - &C1ELTYPE - &C1ST 8

9 Move-Prozessor //LINUXMOV EXEC PGM=IKJEFT01,MAXRC=8 //SYSPROC DD DSN=NDVRA.PROD.REXX,DISP=SHR //SYSPRINT DD SYSOUT=* //SYSTSPRT DD DSN=&&LINUXLST,DISP=(MOD,PASS),FREE=CLOSE //SYSTSIN DD * %NDVRLINX - &#LINUX - &C1USERID - &C1ACTION - &C1PRTYPE - &C1PRGRP - &C1ELEMENT - &PROJECT - &C1ELTYPE - &C1SSTAGE - &C1ST 9

10 Delete-Prozessor //LINUXDEL EXEC PGM=IKJEFT01,MAXRC=8 //SYSPROC DD DSN=NDVRA.PROD.REXX,DISP=SHR //SYSPRINT DD SYSOUT=* //SYSTSPRT DD DSN=&&LINUXLST,DISP=(MOD,PASS),FREE=CLOSE //SYSTSIN DD * %NDVRLINX - &#LINUX - &C1USERID - &C1ACTION - &C1PRTYPE - &C1PRGRP - &C1ELEMENT - &PROJECT - &C1ELTYPE - &C1ST 10

11 REXX-Interface PARSE VAR PARMS, ON_OFF USER ACTION PRCTYP PROCGRP ELE PROJECT TYP ENVNAME TOENV /* Linux-Interface mittels Endevor-Symbol #LINUX deaktivierbar */ IF ON_OFF <> 'ON' THEN RETURN 0 /* Wenn linux oder aft inaktiv sind ENDEVOR_RC von 12 auf 8 setzen */ ENDEVOR_RC = 12 /* Endevor Activity-Log */ LOGFILE='/shared/endevor/log/'PROJECT'.'ENVNAME'.'ACT'.'TYP'.'ELE'.'USER LINUX = 'AS-AE01:3335' CODEPAGE = 'IBM-1141/IBM-1252' ROOTPFAD ='/shared/endevor/' PARSE VAR PROJECT NDVR'.'SYSTEM 11

12 REXX-Interface TYP3 = TRANSLATE(SUBSTR(TYP,2,3)); SELECT WHEN TYP3 = 'PLI' THEN PARSE VALUE 'pl1 pli' WITH EXT DIR WHEN TYP3 = 'INC' THEN PARSE VALUE 'inc inc' WITH EXT DIR WHEN TYP3 = 'SQL' THEN PARSE VALUE 'sql sqldml' WITH EXT DIR WHEN TYP3 = 'UNL' THEN PARSE VALUE 'sql db2unl' WITH EXT DIR WHEN TYP3 = 'JCL' THEN PARSE VALUE 'jcl jcl' WITH EXT DIR WHEN TYP3 = 'HPP' THEN PARSE VALUE 'hpp hpp' WITH EXT DIR WHEN TYP3 = 'HXX' THEN PARSE VALUE 'h h' WITH EXT DIR WHEN TYP3 = 'HDB' THEN PARSE VALUE 'h h' WITH EXT DIR WHEN TYP3 = 'CXX' THEN PARSE VALUE 'c c' WITH EXT DIR WHEN TYP3 = 'CPP' THEN PARSE VALUE 'cpp cpp' WITH EXT DIR WHEN TYP = 'ADBLOAD' THEN PARSE VALUE 'sql db2load' WITH EXT DIR WHEN TYP = 'ADB2DDL' THEN PARSE VALUE 'sql db2ddl' WITH EXT DIR OTHERWISE RETURN 4 /* Typ wird nicht übertragen */ END 12

13 REXX-Interface WHEN PRCTYP = "GENERATE" THEN DO LISTFILE = ROOTPFAD'/'ENVNAME'/list/'ELE'.'DIR'.lst' /* Filetransfer, Codepage-Konvertierung */ QUEUE 'SEND 'LINUX 'DD:AFTIN', ROOTPFAD'/'ENVNAME'/'DIR'/'ELE'.'EXT CODEPAGE /* Generate-Interface */ QUEUE 'CMD 'LINUX '"ndvrgen.sh' ''''USER'''', ''''NDVR'''', ''''ELE'''', ''''DIR'''', ''''EXT'''', ''''TYP'''', ''''PROCGRP'''', ''''ENVNAME'''', ''''PFAD'''' ''''SYSTEM'''', ' >'''LOGFILE''' 2>&1"' END 13

14 REXX-Interface WHEN PRCTYP = "MOVE" THEN DO LISTFILE = ROOTPFAD'/'TOENV'/list/'ELE'.'DIR'.lst' /* Move-Interface */ QUEUE 'CMD 'LINUX '"ndvrmove.sh' ''''USER'''', ''''NDVR'''', ''''ELE'''', ''''DIR'''', ''''EXT'''', ''''TYP'''', ''''PROCGRP'''', ''''ROOTPFAD'''', ''''ENVNAME'''', ''''TOENV'''', ''''SYSTEM'''', '>'''LOGFILE''' 2>&1"' END 14

15 REXX-Interface WHEN PRCTYP = "DELETE" THEN DO /* Delete-Prozessor wird intern nach Move/Generate angestossen */ IF ACTION = "MOVE"! ACTION = "GENERATE" THEN LOGFILE = '/dev/null' /* Delete-Interface */ QUEUE 'CMD 'LINUX "ndvrdel.sh' ''''USER'''', ''''NDVR'''', ''''ELE'''', ''''DIR'''', ''''EXT'''', ''''ENVNAME'''', ''''PFAD'''', '>'''LOGFILE''' 2>&1"' END 15

16 REXX-Interface /* Log-/List-Files lesen */ IF PRCTYP <> "DELETE" THEN DO LOG = ALLOCF(" VB 1 1 CYL LOG") LIST = ALLOCF(" VB 5 5 CYL LIST") QUEUE 'RECEIVE 'LINUX 'DD:LOG "'LOGFILE'"' CP_STD QUEUE 'RECEIVE 'LINUX 'DD:LIST "'LISTFILE'" 'CP_STD END 16

17 REXX-Interface /* swap to alternate-id - C1DEFLTS RACFUID=ENDEVOR */ "ALLOC FILE(LGNT$$$I) DUMMY" "ALLOC FILE(LGNT$$$O) DUMMY" "EXECIO 0 DISKR LGNT$$$I (OPEN)" /* execute queued commands via AFT */ AFT_RC=AFTEX() /* swap to User-ID */ "EXECIO 0 DISKR LGNT$$$I (finis)" "EXECIO 0 DISKR LGNT$$$O (open)" "EXECIO 0 DISKR LGNT$$$O (finis)" "FREE FILE(LGNT$$$I)" "FREE FILE(LGNT$$$O)" 17

18 REXX-Interface IF AFT_RC > 4 THEN /* Abbruch Endevor Step - AFT-Error */ RETURN ENDEVOR_RC /* Returncode aus Linux-Script */ IF PRCTYP <> "DELETE" THEN DO "EXECIO * DISKR LOG (FINIS STEM LOG." LINUX_RC = '' DO I = LOG.0 TO 1 BY -1 WHILE DATATYPE(LINUX_RC) <> 'NUM' PARSE VAR LOG.I 'rc='linux_rc REST END IF LINUX_RC > 0! DATATYPE(LINUX_RC) <> 'NUM' THEN AFT_RC = 8 /* kein Prozessor-Abbruch bei Linux-Prozessor-Fehler */ RETURN AFT_RC END 18

19 Generate Prozessor Unix/BPXBATCH //* File übertragen */ //USSPUT EXEC PGM=IEBGENER,MAXRC=4 //SYSUT1 DD DSN=&&ELMOUT,DISP=(OLD,PASS),FREE=CLOSE //SYSUT2 DD PATH='/u/endevor/tmp/&OMVSFILE', // PATHDISP=(KEEP,KEEP),FILEDATA=TEXT, // PATHOPTS=(OWRONLY,OCREAT), // PATHMODE=(SIRWXU,SIRWXG,SIRWXO) //SYSPRINT DD SYSOUT=* //SYSIN DD * //* BPXBATCH unter alternate-id ENDEVOR */ //LINUXGEN EXEC PGM=IKJEFT01,MAXRC=0 //SYSPROC DD DSN=NDVRA.PROD.REXX,DISP=SHR //SYSPRINT DD SYSOUT=* //SYSTSPRT DD DSN=&&REXXLST,DISP=(MOD,PASS),FREE=CLOSE //STDOUT DD DSN=&&STDOUT,DISP=(MOD,PASS),FREE=CLOSE //STDERR DD DSN=&&STDERR,DISP=(MOD,PASS),FREE=CLOSE //SYSTSIN DD * %NDVRLINX... &OMVSFILE 19

20 Move/Delete Prozessor Unix/BPXBATCH //LINUXMOV EXEC PGM=IKJEFT01,MAXRC=0 //SYSPROC DD DSN=NDVRA.PROD.REXX,DISP=SHR //SYSPRINT DD SYSOUT=* //SYSTSPRT DD DSN=&&REXXLST,DISP=(MOD,PASS),FREE=CLOSE //STDOUT DD DSN=&&STDOUT,DISP=(MOD,PASS),FREE=CLOSE //STDERR DD DSN=&&STDERR,DISP=(MOD,PASS),FREE=CLOSE //SYSTSIN DD * %NDVRLINX... //LINUXDEL EXEC PGM=IKJEFT01,MAXRC=0 //SYSPROC DD DSN=NDVRA.PROD.REXX,DISP=SHR //SYSPRINT DD SYSOUT=* //SYSTSPRT DD DSN=&&REXXLST,DISP=(MOD,PASS),FREE=CLOSE //STDOUT DD DSN=&&STDOUT,DISP=(MOD,PASS),FREE=CLOSE //STDERR DD DSN=&&STDERR,DISP=(MOD,PASS),FREE=CLOSE //SYSTSIN DD * %NDVRLINX... 20

21 REXX-Interface Unix/BPXBATCH /* swap to alternate-id - C1DEFLTS RACFUID=ENDEVOR */ "ALLOC FILE(LGNT$$$I) DUMMY" "ALLOC FILE(LGNT$$$O) DUMMY" "EXECIO 0 DISKR LGNT$$$I (OPEN)" /* run BPXPATCH */ "BPXBATCH SH /u/gru2/ndvrunix.sh" parameter ZRC=RC IF ZRC > 0 THEN DO SAY "ERROR BPXBATCH RC="ZRC ZRC = 12 END /* swap to User-ID */ "EXECIO 0 DISKR LGNT$$$I (FINIS)" "EXECIO 0 DISKR LGNT$$$O (OPEN)" "EXECIO 0 DISKR LGNT$$$O (FINIS)" "FREE FILE(LGNT$$$I)" "FREE FILE(LGNT$$$O)" RETURN ZRC 21

22 Unix-Linux Interface case "$typ3" in PLI) ext=pl1; dir=pli;; INC) ext=inc; dir=inc;;... esac # Zielumgebung sourcefile="/shared/endevor/$ndvr/$envname/$sys/$dir/$ele.$ext" # Linux Source if [ "$proctype" = "GENERATE" ]; then putlinuxfile "/u/endevor/tmp/$omvsfile" $sourcfile" # ICONV, SFTP ssh $linux bash -l ndvrgen.sh "$ele $dir $ext... " elif [ "$proctype" = "MOVE" ]; then ssh $linux bash -l ndvrmove.sh "$ele $dir $ext..." elif [ "$proctype" = "DELETE" ]; then ssh $linux bash -l ndvrdel.sh "$ele $dir $ext..." fi If [ "$proctype"!= "DELETE" ]; then getlinuxfile "$listfile" "/u/endevor/tmp/$omvsfile.$dir.lst" # SFTP, ICONV getlinuxfile "$logfile" "/u/endevor/tmp/$omvsfile.$dir.log" # SFTP, ICONV fi 22

23 Unix-Linux Interface # Codepage-Conversion, File nach Linux übertragen putlinuxfile() { iconv -f IBM t IBM-1252 < "$1" >"$1.ascii" sftp -obatchmode=yes -b - "endevor@as-ae01"<<eof put "$1.ascii" "$2" bye EOF } # File von Linux übertragen, Codepage-Conversion, Ausgabe auf STDOUT getlinuxfile() { sftp -obatchmode=yes -b - "endevor@as-ae01" <<EOF get "$1" "$2.ascii" bye EOF [ $? -eq 0 ] && iconv -f IBM t IBM-1141 < "$2.ascii" >"$2" [ $? -eq 0 ] && cat "$2" } 23

24 Linux Generate-Script # Build für Programme durchführen if [ "$ext" = pl1 ]; then mfpp... # Microfocus PL/I Preprozessor mfdb2... # Microfocus DB2 Preprozessor mfpli... # Microfocus PL/I Compiler cob... # Linker... elif [ "$ext" = "c" -o "$ext" = "cpp" ]; then db2 prep... # DB2 Preprozessor [ "$ext" = "c" ] && cc... # C Compiler [ "$ext" = "cpp" ] && g++... # C++ Compiler... else # nur Source Management fi 24

25 Linux Move-Script # Source und Output-Komponenten kopieren copydir="$dir list" If [[ "$dir" =~ '^(pli c cpp)$' ]]; then copydir="$copydir dbrm obj load debug" fi for i in $copydir ; do files=`find $pfad/$quellenv/$i/ -iname "$member.*" -type f` for file in $files; do cp -v $file $pfad/$zielenv/$i/ done Done 25

26 Linux Delete-Script # Source und Output-Komponenten löschen deldir="$dir list" If [[ "$dir" =~ '^(pli c cpp)$' ]]; then deldir="$deldir tmp dbrm obj load debug" fi for i in $deldir ; do files= `find $pfad/$i/ -iname "$member.*" -type f` for file in $files; do rm -f -v $file done done 26

27 Linux Logfile 27

28 Linux Logfile TSO NDVRLOG GRU2 -> ls -ggtc /shared/endevor/log/*.gru2 28

29 Linux Logfile TSO NDVRLOG LENJRAL -> ls -ggtc /shared/endevor/log/ndvrc*.lenjral.* 29

30 Linux Logfile KTX 30

31 Linux Logfile 31

Executing Commands on z/os through FTP. By: Philip Soldier of Fortran Young @mainframed767 http://mainframed767.tumblr.com

Executing Commands on z/os through FTP. By: Philip Soldier of Fortran Young @mainframed767 http://mainframed767.tumblr.com Executing Commands on z/os through FTP By: Philip Soldier of Fortran Young @mainframed767 http://mainframed767.tumblr.com June 23, 2013 Overview IBM z/os mainframes are the main workhorses of our global

More information

z/os UNIX for all Vit Gottwald CA Technologies March 15, 2012 Session Number 10983

z/os UNIX for all Vit Gottwald CA Technologies March 15, 2012 Session Number 10983 z/os UNIX for all Vit Gottwald CA Technologies March 15, 2012 Session Number 10983 Motivation Introduction to UNIX Interfacing with z/os UNIX Shells and scripts Copying between files and datasets ISHELL

More information

z/os Hybrid Batch Processing and Big Data

z/os Hybrid Batch Processing and Big Data z/os Hybrid Batch Processing and Big Data Stephen Goetze Kirk Wolf Dovetailed Technologies, LLC Thursday, August 7, 2014: 1:30 PM-2:30 PM Session 15496 Insert Custom Session QR if Desired. www.dovetail.com

More information

Linux Shell Script To Monitor Ftp Server Connection

Linux Shell Script To Monitor Ftp Server Connection Linux Shell Script To Monitor Ftp Server Connection Main goal of this script is to monitor ftp server. This script is example of how to use ftp command in bash shell. System administrator can use this

More information

z/os Hybrid Batch Processing and Big Data Session zba07

z/os Hybrid Batch Processing and Big Data Session zba07 Stephen Goetze Kirk Wolf Dovetailed Technologies, LLC z/os Hybrid Batch Processing and Big Data Session zba07 Wednesday May 14 th, 2014 10:30AM Technical University/Symposia materials may not be reproduced

More information

Compiler Forecast: Cloudy with. Cloud Computing for your z/os compilers

Compiler Forecast: Cloudy with. Cloud Computing for your z/os compilers Compiler Forecast: Cloudy with a Chance of Savings Cloud Computing for your z/os compilers Speaker Bio Charles Mills is the Chief Development Officer of Cloud Compiling, LLC Mills was the founder of FiresignComputer

More information

Using SFTP on the z/os Platform

Using SFTP on the z/os Platform Using SFTP on the z/os Platform Thursday, December 10 th 2009 Steve Goetze Kirk Wolf http://dovetail.com info@dovetail.com Copyright 2009, Dovetailed Technologies Slide 1 Dovetailed Technologies Our operating

More information

CA Workload Automation EE r11.3 Report Server. Fred Brisard

CA Workload Automation EE r11.3 Report Server. Fred Brisard CA Workload Automation EE r11.3 Report Server Fred Brisard Terms of This Presentation This presentation was based on current information and resource allocations as of October 2009 and is subject to change

More information

UNIX Remote Job Entry User s Guide A. L. Sabsevitz K. A. Kelleman

UNIX Remote Job Entry User s Guide A. L. Sabsevitz K. A. Kelleman UNIX Remote Job Entry User s Guide A. L. Sabsevitz K. A. Kelleman 1. PREFACE A set of background processes running under UNIX* support remote job entry to IBM System/360 and /370 host computers. RJE is

More information

CA Application Quality and Testing Tools

CA Application Quality and Testing Tools CA Application Quality and Testing Tools Symbolic Guide Version 9.0.00 This documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

SPIRIT/21. Mainframe Competencies

SPIRIT/21. Mainframe Competencies SPIRIT/21 Mainframe Competencies Contents Our History Who we are Services Consultancy SYSTEMS MIDDLEWARE OPERATIONS DEVELOPMENT SUPPORT & TOOLS Technical Competencies at a Glance Training Outsourcing Out-tasking

More information

Bookstore credit card application

Bookstore credit card application Bookstore credit card application We recently created an application to simulate a credit card transaction. This application tests the z/os Cryptographic Services as well as DB2 and IMS Data Encryption.

More information

TIn 1: Lecture 3: Lernziele. Lecture 3 The Belly of the Architect. Basic internal components of the 8086. Pointers and data storage in memory

TIn 1: Lecture 3: Lernziele. Lecture 3 The Belly of the Architect. Basic internal components of the 8086. Pointers and data storage in memory Mitglied der Zürcher Fachhochschule TIn 1: Lecture 3 The Belly of the Architect. Lecture 3: Lernziele Basic internal components of the 8086 Pointers and data storage in memory Architektur 8086 Besteht

More information

DB2 for z/os: Configuring TLS/SSL for Secure Client/Server Communications

DB2 for z/os: Configuring TLS/SSL for Secure Client/Server Communications IBM Information Management Software Redpaper Chris Meyer Paolo Bruni DB2 for z/os: Configuring TLS/SSL for Secure Client/Server Communications Introduction This IBM Redpaper publication provides information

More information

Jeffrey D. Ullman Anfang von: CS145 - Herbst 2004 - Stanford University Online unter: www.odbms.org. Folien mit weißem Hintergrund wurden hinzugefügt!

Jeffrey D. Ullman Anfang von: CS145 - Herbst 2004 - Stanford University Online unter: www.odbms.org. Folien mit weißem Hintergrund wurden hinzugefügt! Jeffrey D. Ullman Anfang von: CS145 - Herbst 2004 - Stanford University Online unter: www.odbms.org Folien mit weißem Hintergrund wurden hinzugefügt! Real SQL Programming Embedded SQL Call-Level Interface

More information

Beyond the Software Life Cycle

Beyond the Software Life Cycle Beyond the Software Life Cycle CA-Endevor Facilitates Ad-hoc Job Processing Southern CA Endevor User Group June 2008 Rose A. Sakach Endevor Practice Leader - RSH Consulting, Inc. R.Sakach@RSHConsulting.com

More information

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262

Update to V10. Automic Support: Best Practices Josef Scharl. Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Update to V10 Automic Support: Best Practices Josef Scharl Please ask your questions here http://innovate.automic.com/q&a Event code 6262 Agenda Update to Automation Engine Version 10 Innovations in Version

More information

Java Stand-alone Applications on z/os

Java Stand-alone Applications on z/os Front cover Java Stand-alone Applications on z/os Volume 1 Setting up an environment for managing Java programs on z/os Building, deploying, running, and debugging applications Analyzing application performance

More information

Java on z/os. Agenda. Java runtime environments on z/os. Java SDK 5 and 6. Java System Resource Integration. Java Backend Integration

Java on z/os. Agenda. Java runtime environments on z/os. Java SDK 5 and 6. Java System Resource Integration. Java Backend Integration Martina Schmidt martina.schmidt@de.ibm.com Agenda Java runtime environments on z/os Java SDK 5 and 6 Java System Resource Integration Java Backend Integration Java development for z/os 4 1 Java runtime

More information

Host Communication Guide for Mainframe & Midrange Users

Host Communication Guide for Mainframe & Midrange Users Student Aid Internet Gateway Host Communication Guide for Mainframe & Midrange Users Version 3.5 DOCUMENT CONTROL DOCUMENT INFORMATION Title: SAIG Host Communication Guide Revision: 3.5 Issue Date: 3/4/2013

More information

Field Developed Solution Catalog. Version 7.0

Field Developed Solution Catalog. Version 7.0 Table of Contents OVERVIEW... 1 SUMMARY OF CHANGES... 2 ENTERPRISE SERVER ( ES ) FDS... 3 ES FDS, including hours for Customer Specific Configuration Assistance... 3 ENTERPRISE ANALYZER ( EA ) FDS... 9

More information

PRACTICAL TIPS FOR Z/OS VULNERABILITY SCANNING & PROACTIVE SECURITY MANAGEMENT

PRACTICAL TIPS FOR Z/OS VULNERABILITY SCANNING & PROACTIVE SECURITY MANAGEMENT 1 PRACTICAL TIPS FOR Z/OS VULNERABILITY SCANNING & PROACTIVE SECURITY MANAGEMENT Key Resources, Inc. ray.overby@kr-inc.com (312) KRI-0007 www.kr-in.com 2 Ray Overby SKK - ACF2 Developer (1981-1988) Key

More information

Linux Syslog Messages in IBM Director

Linux Syslog Messages in IBM Director Ever want those pesky little Linux syslog messages (/var/log/messages) to forward to IBM Director? Well, it s not built in, but it s pretty easy to setup. You can forward syslog messages from an IBM Director

More information

Integrate z/vm into your z/os and Linux for System z Scheduling Environments Mike Sine IBM. Friday, February 8, 2013 Session Number: 12465

Integrate z/vm into your z/os and Linux for System z Scheduling Environments Mike Sine IBM. Friday, February 8, 2013 Session Number: 12465 Integrate z/vm into your z/os and Linux for System z Scheduling Environments Mike Sine IBM Friday, February 8, 2013 Session Number: 12465 Session Abstract Many customers today have integrated Linux for

More information

Things to Do with Rexx When You re on Z

Things to Do with Rexx When You re on Z 25th International Rexx Language Symposium, Memphis TN, 2014-05-04 Things to Do with Rexx When You re on Z René Vincent Jansen Previously There was EXEC2 on VM There was CLIST on TSO But the console typewriter

More information

AJAX SSL- Wizard Reference

AJAX SSL- Wizard Reference AJAX SSL- Wizard Reference Version 1.0.2+ - 04.04.2011 Preamble This document explains the AJAX based SSL- Wizard developed by CertCenter AG. The seemless integration of the SSL- Wzard into the partner

More information

Cross Platform Performance Monitoring with RMF XP

Cross Platform Performance Monitoring with RMF XP Cross Platform Performance Monitoring with RMF XP Harald Bender bhbe@de.ibm.com 3/14/2012 2012 IBM Corporation IBM Corporation 2007 2007 IBM System z Expo The new Component: RMF XP RMF XP is the solution

More information

Kaiserslautern Mainframe Summit 2010 z/os Praxis Version 25.08.2010

Kaiserslautern Mainframe Summit 2010 z/os Praxis Version 25.08.2010 Kaiserslautern Mainframe Summit 2010 z/os Praxis Version 25.08.2010 Lutz Kühner IBM Deutschland GmbH Technical Sales Mainframe Systems Wilhelm-Fay Strasse 30, 65936 Frankfurt Lutz.Kuehner@de.ibm.com Inhaltsverzeichnis

More information

WebSphere Developer for System z

WebSphere Developer for System z WebSphere Developer for System z Using eclipse based tooling for the mainframe Isabel Arnold IBM Germany Technical Sales AD/PD Tools & CICS isabel.arnold@de.ibm.com 2005 IBM Corporation What is it Eclipse

More information

CS 2112 Lab: Version Control

CS 2112 Lab: Version Control 29 September 1 October, 2014 Version Control What is Version Control? You re emailing your project back and forth with your partner. An hour before the deadline, you and your partner both find different

More information

FTP Secured With SSL on z/os

FTP Secured With SSL on z/os Communications Server z/os V1R5 and V1R6 Technical Update FTP Secured With SSL on z/os Topics z/os V1R5 ƒssl/tls enabled FTP overview Logging in using a client certificate without a password FTP File Transfer

More information

CA Integrated Agent Services

CA Integrated Agent Services CA Integrated Agent Services Implementation Guide Version 12.0.00 Second Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred

More information

Using z/os to Access a Public Cloud - Beyond the Hand-Waving

Using z/os to Access a Public Cloud - Beyond the Hand-Waving Using z/os to Access a Public Cloud - Beyond the Hand-Waving Stephen Goetze Kirk Wolf Dovetailed Technologies, LLC Thursday, March 5, 2015: 8:30AM 9:30 AM Session 16785 Trademarks Co:Z is a registered

More information

CA Chorus for Security and Compliance Management

CA Chorus for Security and Compliance Management CA Chorus for Security and Compliance Management Site Preparation Guide Version 03.0.00, Fifth Edition This Documentation, which includes embedded help systems and electronically distributed materials,

More information

Decision Support System to MODEM communications

Decision Support System to MODEM communications Decision Support System to MODEM communications Guy Van Sanden gvsanden@sckcen.be Decision Support System to MODEM communications by Guy Van Sanden This document describes how to set up the dss2modem communications

More information

Software Requirements, Version 2015_01_12

Software Requirements, Version 2015_01_12 Software Requirements, Version 2015_01_12 Product / Version DSM 7.2.1 DSM 2013.2 DSM 2014.1 Server Software (EN) Windows Server 2008 R2 Standard, Enterprise, Datacenter, Core (all SP) Windows Server 2008

More information

SupportPac CB12. General Insurance Application (GENAPP) for IBM CICS Transaction Server

SupportPac CB12. General Insurance Application (GENAPP) for IBM CICS Transaction Server SupportPac CB12 General Insurance Application (GENAPP) for IBM CICS Transaction Server SupportPac CB12 General Insurance Application (GENAPP) for IBM CICS Transaction Server ii General Insurance Application

More information

Monitoring z/vm and z/linux. Jürgen Hofmann juergen_hofmann@bmc.com

Monitoring z/vm and z/linux. Jürgen Hofmann juergen_hofmann@bmc.com Monitoring z/vm and z/linux Jürgen Hofmann juergen_hofmann@bmc.com Agenda Architektur Installation Hauptfunktionen Screenshots Testinstallation MV for Linux Servers während Evaluierungsphase Automation

More information

DB2 z/os und IBM DataStudio

DB2 z/os und IBM DataStudio DB2 z/os und IBM DataStudio GSE, Hamburg, 25.4.2012 From zero to zhero Christian Daser Information Management for System z christian.daser@de.ibm.com 2012 IBM Corporation Eclipse als Basis Output von Daten

More information

Linux Overview. Local facilities. Linux commands. The vi (gvim) editor

Linux Overview. Local facilities. Linux commands. The vi (gvim) editor Linux Overview Local facilities Linux commands The vi (gvim) editor MobiLan This system consists of a number of laptop computers (Windows) connected to a wireless Local Area Network. You need to be careful

More information

Alert Logic Log Manager

Alert Logic Log Manager whitepaper Alert Logic Log Manager Configuring Log Sources for Best Practice Reports CONTENTS Introduction 1 Best Practice Reports in Log Manager 2 Active Directory 2 Databases 2 Network Devices 2 Windows

More information

Syntax: cd <Path> Or cd $<Custom/Standard Top Name>_TOP (In CAPS)

Syntax: cd <Path> Or cd $<Custom/Standard Top Name>_TOP (In CAPS) List of Useful Commands for UNIX SHELL Scripting We all are well aware of Unix Commands but still would like to walk you through some of the commands that we generally come across in our day to day task.

More information

Unix Scripts and Job Scheduling

Unix Scripts and Job Scheduling Unix Scripts and Job Scheduling Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh spring@imap.pitt.edu http://www.sis.pitt.edu/~spring Overview Shell Scripts

More information

z/os Curriculum Job Control Language (JCL) Curriculum JES Curriculum WebSphere Curriculum TSO/ISPF for z/os Curriculum

z/os Curriculum Job Control Language (JCL) Curriculum JES Curriculum WebSphere Curriculum TSO/ISPF for z/os Curriculum A relação de cursos de mainfame a seguir representa mais de 1.000 horas de treinamento e-learning, fornecendo uma abordagem ampla e atual sobre o assunto. z/os Curriculum z/os 1.13 Series o z/os Concepts

More information

Introduction to Running Hadoop on the High Performance Clusters at the Center for Computational Research

Introduction to Running Hadoop on the High Performance Clusters at the Center for Computational Research Introduction to Running Hadoop on the High Performance Clusters at the Center for Computational Research Cynthia Cornelius Center for Computational Research University at Buffalo, SUNY 701 Ellicott St

More information

Programming for GCSE Topic H: Operating Systems

Programming for GCSE Topic H: Operating Systems Programming for GCSE Topic H: Operating Systems William Marsh School of Electronic Engineering and Computer Science Queen Mary University of London Aims Introduce Operating Systems Core concepts Processes

More information

AnyWeb AG 2008 www.anyweb.ch

AnyWeb AG 2008 www.anyweb.ch HP SiteScope (End-to-End Monitoring, System Availability) Christof Madöry AnyWeb AG ITSM Practice Circle September 2008 Agenda Management Technology Agentless monitoring SiteScope in HP BTO SiteScope look

More information

Data Center Orchestration

Data Center Orchestration Data Center Orchestration Automation of DC-Services at RWE IT GmbH RWE IT 08.07.2014 SEITE 1 Agenda RWE IT - Who We Are Service Orchestration Project: Motivation & Objectives Service Orchestration Architecture

More information

Managing Server Component Output from WebSphere Application Server on z/os A WebSphere on z/os exclusive!

Managing Server Component Output from WebSphere Application Server on z/os A WebSphere on z/os exclusive! Managing Server Component Output from WebSphere Application Server on z/os A WebSphere on z/os exclusive! Mike Loos IBM mikeloos@us.ibm.com Session number 13600 Monday, August 12, 2013 4:30 PM WebSphere

More information

CS2720 Practical Software Development

CS2720 Practical Software Development Page 1 Rex Forsyth CS2720 Practical Software Development CS2720 Practical Software Development Scripting Tutorial Srping 2011 Instructor: Rex Forsyth Office: C-558 E-mail: forsyth@cs.uleth.ca Tel: 329-2496

More information

Willkommen zum zrational Community Call. Dennis Behm, Scott Davis, Tobias Braun

Willkommen zum zrational Community Call. Dennis Behm, Scott Davis, Tobias Braun Willkommen zum Dennis Behm, Scott Davis, Tobias Braun 29.10.2014 Interaktiv, Informativ und Kollaborativ Agenda 1. Neuigkeiten vom GSE 2. zpaas 3. UrbanCode Update 2 RDz 9.1.1 - User Szenario 3 RDz 9.1.1

More information

Profil Ralf Seidler Stand: 11. September 2015

Profil Ralf Seidler Stand: 11. September 2015 Ralf Seidler Stromberger Straße 36A D-55411 Bingen Fon: +49-6721-992611 Fax: +49-6721-992613 Mail: ralf.seidler@cps4it.de Birthday : 16.12.1957 married, 2 children More than 35 years IT experience in host

More information

Configuring WebSphere Process Server & Business Process Manager V7 on z/os

Configuring WebSphere Process Server & Business Process Manager V7 on z/os Configuring WebSphere Process Server & Business Process Manager V7 on z/os John Hutchinson IBM Corporation Washington Systems Center August, 2010 WPS & BPM Subject Areas Products combined for Business

More information

Microsoft Certified IT Professional (MCITP) MCTS: Windows 7, Configuration (070-680)

Microsoft Certified IT Professional (MCITP) MCTS: Windows 7, Configuration (070-680) Microsoft Office Specialist Office 2010 Specialist Expert Master Eines dieser Examen/One of these exams: Eines dieser Examen/One of these exams: Pflichtexamen/Compulsory exam: Word Core (Exam 077-881)

More information

What's so exciting about DB2 Native SQL Procedures?

What's so exciting about DB2 Native SQL Procedures? DB2 Native Procedures: Part 1. What's so exciting about DB2 Native Procedures? This is a question I've been asked countless times. I can't help it, they excite me. To me they truly represent the future

More information

SOLARIS 10 SECURITY. Technical Overview. Andreas Neuhold Systems Practice Lead Austria Sun Microsystems, GesmbH

SOLARIS 10 SECURITY. Technical Overview. Andreas Neuhold Systems Practice Lead Austria Sun Microsystems, GesmbH SOLARIS 10 SECURITY Technical Overview Andreas Neuhold Systems Practice Lead Austria Sun Microsystems, GesmbH Solaris 10 Lizenzen Millions ~ 7M ZFS 7,0 6,5 6,0 5,5 Solaris Container 5,0 4,5 4,0 3,5 3,0

More information

Secure Database Backups with SecureZIP

Secure Database Backups with SecureZIP Secure Database Backups with SecureZIP A pproved procedures for insuring database recovery in the event of a disaster call for backing up the database and storing a copy of the backup offsite. Given the

More information

Linux command line. An introduction to the Linux command line for genomics. Susan Fairley

Linux command line. An introduction to the Linux command line for genomics. Susan Fairley Linux command line An introduction to the Linux command line for genomics Susan Fairley Aims Introduce the command line Provide an awareness of basic functionality Illustrate with some examples Provide

More information

Quick development of a mobile CICS application using Lua

Quick development of a mobile CICS application using Lua Quick development of a mobile CICS application using Lua Ezriel Gross Circle Software David Crayford Fundi Software Wednesday 6 August 2014 Session 15892 Copyright 2014 Fundi Software Agenda Got a CICS

More information

Migrate AS 400 Applications to Windows, UNIX or Linux

Migrate AS 400 Applications to Windows, UNIX or Linux Migrate AS 400 Applications to Windows, UNIX or Linux INFINITE Corporation White Paper prepared for Infinite Product Group date January 2012 Abstract: This paper is a discussion of how to create platform

More information

VIT University Vellore-632 014, Tamil Nadu, India www.vit.ac.in

VIT University Vellore-632 014, Tamil Nadu, India www.vit.ac.in VIT University Vellore-632 014, Tamil Nadu, India www.vit.ac.in Summer Training & Internship Program on Private Cloud Application Development using IBM Mainframes 2 nd -14 th June 2014 Organized by TIFAC

More information

Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux

Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux By the OS4 Documentation Team Prepared by Roberto J Dohnert Copyright 2013, PC/OpenSystems LLC This whitepaper describes how

More information

HP SAP. Where Development, Test and Operations meet. Application Lifecycle Management

HP SAP. Where Development, Test and Operations meet. Application Lifecycle Management HP SAP Where Development, Test and Operations meet Application Lifecycle Management 1 Introduction 1.1 ALM CONCEPTS Application Lifecycle Management (ALM) empowers IT to manage the core application life-cycle,

More information

Application Map Release 2005

Application Map Release 2005 mysap Supplier Relationship Management Solution Map Application Map Release 2005 Purchasing Planning Purchasing Governance Strategy Development Risk Management Procurement Office Planning Category Management

More information

Paper PS04_05 Emailing a SAS Report to Excel C. Royce Claytor, Dominion Resources Services, Richmond, Virginia

Paper PS04_05 Emailing a SAS Report to Excel C. Royce Claytor, Dominion Resources Services, Richmond, Virginia ABSTRACT Paper PS04_05 Emailing a SAS Report to Excel C. Royce Claytor, Dominion Resources Services, Richmond, Virginia Your database is on the mainframe. Your client is on the PC. You have the batch report

More information

SQL 2014 CTP1. Hekaton & CSI Version 2 unter der Lupe. Sascha Götz Karlsruhe, 03. Dezember 2013

SQL 2014 CTP1. Hekaton & CSI Version 2 unter der Lupe. Sascha Götz Karlsruhe, 03. Dezember 2013 Hekaton & CSI Version 2 unter der Lupe Sascha Götz Karlsruhe, 03. Dezember 2013 Most of today s database managers are built on the assumption that data lives on a disk, with little bits of data at a time

More information

Software / FileMaker / Plug-Ins Mailit 6 for FileMaker 10-13

Software / FileMaker / Plug-Ins Mailit 6 for FileMaker 10-13 Software / FileMaker / Plug-Ins Mailit 6 for FileMaker 10-13 Seite 1 / 5 Mailit 6 for FileMaker 10-13 The Ultimate Email Plug-In Integrate full email capability into your FileMaker 10-13 solutions with

More information

mysap Supply Chain Management Solution Map Release 2005

mysap Supply Chain Management Solution Map Release 2005 mysap Supply Chain Management Solution Map Release 2005 Demand & Supply Planning Demand Planning & Forecasting Safety Stock Planning Supply Network Planning Distribution Planning Supply Network Collaboration

More information

AC500. Application Example. Scalable PLC for Individual Automation. Webserver Login Application Example With PM564-ETH. abb

AC500. Application Example. Scalable PLC for Individual Automation. Webserver Login Application Example With PM564-ETH. abb Application Example AC500 Scalable PLC for Individual Automation Webserver Login Application Example With PM564-ETH abb Content 1 Disclaimer... 2 1.1 For customers domiciled outside Germany/ Für Kunden

More information

Brauche neues Power Supply

Brauche neues Power Supply email vom DB-Server: Brauche neues Power Supply HW-Überwachung mit Enterprise Manager und Oracle Auto Service Request Elke Freymann Datacenter Architect Systems Sales Consulting Oracle Deutschland Copyright

More information

Enterprise User Security

Enterprise User Security Enterprise Security Eine Einführung DOAG Regionaltreffen München 18. September 2014 Agenda o Vorstellung o Benutzerverwaltung Problemstellung o Lösung: Enterprise Security o Implementierung o Use-Cases

More information

CA Workload Automation Agents for Mainframe-Hosted Implementations

CA Workload Automation Agents for Mainframe-Hosted Implementations PRODUCT SHEET CA Workload Automation Agents CA Workload Automation Agents for Mainframe-Hosted Operating Systems, ERP, Database, Application Services and Web Services CA Workload Automation Agents are

More information

Vergleich der Versionen von Kapitel 1 des EU-GMP-Leitfaden (Oktober 2012) 01 July 2008 18 November 2009 31 Januar 2013 Kommentar Maas & Peither

Vergleich der Versionen von Kapitel 1 des EU-GMP-Leitfaden (Oktober 2012) 01 July 2008 18 November 2009 31 Januar 2013 Kommentar Maas & Peither Chapter 1 Quality Management Chapter 1 Quality Management System Chapter 1 Pharmaceutical Quality System Principle The holder of a Manufacturing Authorisation must manufacture medicinal products so as

More information

BMC Performance Management 2009

BMC Performance Management 2009 BMC Performance Management 2009 Agenda Performance Management Eine Definition BMC Performance Advisor Konzept BMC SQL Performance for DB2 V6.2 Details Copyright 06/06/2009 BMC Software, Inc 2 Wo schmerzt

More information

Using the z/os SMB Server. to access z/os data from Windows. -- Hands-On Lab Session 10634-10879

Using the z/os SMB Server. to access z/os data from Windows. -- Hands-On Lab Session 10634-10879 Using the z/os SMB Server to access z/os data from Windows -- Hands-On Lab Session 10634-10879 Using the z/os SMB server to access z/os data from Windows Hands-On-Lab Marna Walle Jim Showalter Karl Lavo

More information

Automating admin tasks using shell scripts and cron Vijay Kumar Adhikari. vijay@kcm

Automating admin tasks using shell scripts and cron Vijay Kumar Adhikari. vijay@kcm Automating admin tasks using shell scripts and cron Vijay Kumar Adhikari vijay@kcm kcm.edu.np How do we go? Introduction to shell scripts Example scripts Introduce concepts at we encounter them in examples

More information

BRFplus Field Configuration for Portfolio Management

BRFplus Field Configuration for Portfolio Management for Portfolio Management A PLM Consulting Solution Public The BRFplus Field Configuration allows you to easily modify the field configuration of standard and custom fields, toolbar buttons and tabs on

More information

How To Run A Hybrid Batch Processing Job On An Z/Os V1.13 V1 (V1) V1-R13 (V2) V2.1 (R13) V3.1.1

How To Run A Hybrid Batch Processing Job On An Z/Os V1.13 V1 (V1) V1-R13 (V2) V2.1 (R13) V3.1.1 Co:Z Load Balancer on the zenterprise June 22, 2012 http://dovetail.com info@dovetail.com Copyright 2012 Dovetailed Technologies, LLC Slide 1 Agenda zenterprise Environment Hybrid Batch Processing Overview

More information

CommVault Simpana 7.0 Software Suite. und ORACLE Momentaufnahme. Robert Romanski Channel SE rromanski@commvault.com

CommVault Simpana 7.0 Software Suite. und ORACLE Momentaufnahme. Robert Romanski Channel SE rromanski@commvault.com CommVault Simpana 7.0 Software Suite und ORACLE Momentaufnahme Robert Romanski Channel SE rromanski@commvault.com CommVaults Geschichte 1988 1996 2000 2002 2006 2007 Gegründet als Business Unit von AT&T

More information

TBarCode.NET Barcodes in MS SQL Reporting Services

TBarCode.NET Barcodes in MS SQL Reporting Services TBarCode.NET Barcodes in MS SQL Reporting Services Version 1.0.1 Printing Barcodes with MS SQL Reporting Services 29 January 2013 TEC-IT Datenverarbeitung GmbH Hans-W agner-str. 6 A-4400 Steyr, Austria

More information

.OR.AT.ATTORNEY.AUCTION.BARGAINS.BAYERN.BERLIN.BLACKFRIDAY.BOUTIQUE.BRUSSELS.BUILDERS

.OR.AT.ATTORNEY.AUCTION.BARGAINS.BAYERN.BERLIN.BLACKFRIDAY.BOUTIQUE.BRUSSELS.BUILDERS .AC.BIO.RESTAURANT.APARTMENTS.CASINO.SCHOOL.KIM.ACADEMY.ACCOUNTANTS.ACTOR.ADULT.AE.AERO.AG.AGENCY.AIRFORCE.ARCHI.ARMY.ASIA.ASSOCIATES.AT.CO.AT.OR.AT.ATTORNEY.AUCTION.AUDIO.BAND.BANK.BAR.BARGAINS.BAYERN.BE.BEER.BERLIN.BID.BIKE.BINGO.BIZ.BLACK.BLACKFRIDAY.BLUE.BOUTIQUE.BRUSSELS.BUILDERS.BUSINESS.BZ.CO.BZ.COM.BZ.ORG.BZ.CAB.CAFE.CAMERA.CAMP.CAPITAL.CARDS.CARE.CAREERS.CASA.CASH.CATERING.CC.CENTER.CH.CHAT.CHEAP.CHRISTMAS

More information

Co:Z SFTP - User's Guide

Co:Z SFTP - User's Guide Co:Z Co-Processing Toolkit for z/os Co:Z SFTP - User's Guide V 3.6.3 Edition Published May, 2016 Copyright 2016 Dovetailed Technologies, LLC Table of Contents 1. Introduction... 1 1.1. Features... 1 1.2.

More information

Enterprise Content Management System Monitor 5.1 Agent Debugging Guide Revision 1.3. 2014-11-05 CENIT AG Author: Stefan Bettighofer

Enterprise Content Management System Monitor 5.1 Agent Debugging Guide Revision 1.3. 2014-11-05 CENIT AG Author: Stefan Bettighofer Enterprise Content Management System Monitor 5.1 Agent Debugging Guide Revision 1.3 2014-11-05 CENIT AG Author: Stefan Bettighofer 1 Table of Contents 1 Table of Contents... 2 2 Overview... 3 3 Definitions...

More information

Heterogeneous ABAP System Copy Technical Overview

Heterogeneous ABAP System Copy Technical Overview Heterogeneous ABAP System Copy Technical Overview Boris Zarske SAP Product Management December 2015 Public Goal of this presentation Even if heterogeneous system copies must only be performed by certified

More information

Origins of Operating Systems OS/360. Martin Grund HPI

Origins of Operating Systems OS/360. Martin Grund HPI Origins of Operating Systems OS/360 HPI Table of Contents IBM System 360 Functional Structure of OS/360 Virtual Machine Time Sharing 2 Welcome to Big Blue 3 IBM System 360 In 1964 IBM announced the IBM-360

More information

Bash shell programming Part II Control statements

Bash shell programming Part II Control statements Bash shell programming Part II Control statements Deniz Savas and Michael Griffiths 2005-2011 Corporate Information and Computing Services The University of Sheffield Email M.Griffiths@sheffield.ac.uk

More information

Hadoop Shell Commands

Hadoop Shell Commands Table of contents 1 DFShell... 3 2 cat...3 3 chgrp...3 4 chmod...3 5 chown...4 6 copyfromlocal... 4 7 copytolocal... 4 8 cp...4 9 du...4 10 dus... 5 11 expunge... 5 12 get... 5 13 getmerge... 5 14 ls...

More information

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann

Search Engines Chapter 2 Architecture. 14.4.2011 Felix Naumann Search Engines Chapter 2 Architecture 14.4.2011 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition Text Transformation Index Creation Querying User Interaction Ranking Evaluation

More information

Gothenburg 2015. Mainframe and Continuous Integration. Jan Marek Jan.Marek@ca. com. CA Technologies. Session S610

Gothenburg 2015. Mainframe and Continuous Integration. Jan Marek Jan.Marek@ca. com. CA Technologies. Session S610 Jan Marek Jan.Marek@ca. com CA Technologies Session S610 Mainframe and Continuous Integration Agenda Introduce continuous integration concept What problem we were facing Overview of the solution Examples

More information

Hadoop Shell Commands

Hadoop Shell Commands Table of contents 1 FS Shell...3 1.1 cat... 3 1.2 chgrp... 3 1.3 chmod... 3 1.4 chown... 4 1.5 copyfromlocal...4 1.6 copytolocal...4 1.7 cp... 4 1.8 du... 4 1.9 dus...5 1.10 expunge...5 1.11 get...5 1.12

More information

Building a multi-source universe

Building a multi-source universe September 10-13, 2012 Orlando, Florida Building a multi-source universe Pierpaolo Vezzosi 2011 SAP AG. All rights reserved. Public 1 Learning points Learn the details of the multi-source universe technology

More information

File Manager base component

File Manager base component Providing flexible, easy-to-use application development tools designed to enhance file processing IBM File Manager for z/os, V13.1 Figure 1: File Manager environment Highlights Supports development and

More information

Debian GNU/Linux. Unix Sicherheit. Christian T. Steigies. Institut für Experimentelle und Angewandte Physik Christian-Albrechts-Universität zu Kiel

Debian GNU/Linux. Unix Sicherheit. Christian T. Steigies. Institut für Experimentelle und Angewandte Physik Christian-Albrechts-Universität zu Kiel : Sicherheit Unix Sicherheit Institut für Experimentelle und Angewandte Physik Christian-Albrechts-Universität zu Kiel Debian crash course 21.02.2007 : Sicherheit Anmelden am System login an der Konsole

More information

Introduction to the new mainframe Chapter 7: Batch processing and the Job Entry Subsystem (JES)

Introduction to the new mainframe Chapter 7: Batch processing and the Job Entry Subsystem (JES) Chapter 7: Batch processing and the Job Entry Subsystem (JES) Chapter 7 objectives Be able to: Give an overview of batch processing and how work is initiated and managed in the system. Explain how the

More information

SFTP SHELL SCRIPT USER GUIDE

SFTP SHELL SCRIPT USER GUIDE SFTP SHELL SCRIPT USER GUIDE FCA US INFORMATION & COMMUNICATION TECHNOLOGY MANAGEMENT Overview The EBMX SFTP shell scripts provide a parameter driven workflow to place les on the EBMX servers and queue

More information

Change is Coming: z/os Mail Overview and Futures

Change is Coming: z/os Mail Overview and Futures Change is Coming: z/os Mail Overview and Futures (Including Motivations and Considerations for migrating from SMTPD/Sendmail to CSSMTP) Kim Bailey (ktekavec@us.ibm.com) IBM, Enterprise Networking Solutions

More information

Automated Underwriting: Threat or Opportunity? Jason Bowman, Head of Accelerated Underwriting, NA Dan Drabik, Senior Magnum Consultant

Automated Underwriting: Threat or Opportunity? Jason Bowman, Head of Accelerated Underwriting, NA Dan Drabik, Senior Magnum Consultant Automated Underwriting: Threat or Opportunity? Jason Bowman, Head of Accelerated Underwriting, NA Dan Drabik, Senior Magnum Consultant Introduction The pace of change Ever feel overwhelmed by the pace

More information

Financial Institutes. Deutsche Börse Systems. XONTRO Order Xentric Order S.W.I.F.T. Technical connection. Banking connection using LU 6.

Financial Institutes. Deutsche Börse Systems. XONTRO Order Xentric Order S.W.I.F.T. Technical connection. Banking connection using LU 6. Deutsche Börse Systems XONTRO Order Xentric Order S.W.I.F.T. Financial Institutes Technical connection Version: 3.00 Deutsche Börse Systems AG Page: 1 Table of content page 1 Introduction 1 2 Hard and

More information

Utilization of Hostsystem s Cross Sysplex Manager in the Swisscom IT Services. GSE z/os Expertenforum Brienz, May 2005 Thomas Ruh

Utilization of Hostsystem s Cross Sysplex Manager in the Swisscom IT Services. GSE z/os Expertenforum Brienz, May 2005 Thomas Ruh Utilization of Hostsystem s Cross Sysplex Manager in the Swisscom IT Services GSE z/os Expertenforum Brienz, May 2005 Thomas Ruh Agenda Projects of consolidation Shared Dasd environment complex of problems

More information

Artikel-Detailinformationen

Artikel-Detailinformationen Artikel-Detailinformationen Art-Nr 0110632M Herst-Nr XY107ET#UUZ Bezeichnung 1 Compaq 6200 Pro MT i5-2400 Bezeichnung 2 2x2GB,500GB,Win 7 Pro 64,DFEI Bezeichnung 3 DVD+/-RW,Intel HD Graphics Hersteller

More information