Archive for May, 2008

Documentum Cons avail July 08

I have availability in July for a new Documentum Assignment.
Last Role: “Documentum Lead for Qualification” aka building HA regulatory systems for Big Blue on AIX and developing the compliance related documentation templates. Was on site at the customer here in the UK and working with the PM’s for IBM and their customer.

Have also been coding a complex application using Java 2, Swing and XML.

Do all my documentation in LaTeX (where possible).

Previous assignments include work for EMC and SST Partners, CYA (big fan of) installations and support.
Quite an extensive CV as I have 11 years of Documentum experience since the days of EDMS98. Worked across Europe including Finland and Sweden for lots of big players. If you would like a copy then please mail me.

For a CV or a chat then please drop me a mail or “kevinyeandel” on skype.

Leave a Comment

get logs from servers using ftp script

Reminder to self how to use automatic ftp scripts.

Useful when you have lots of logs to fetch down from lots of fti or content server.
Replace dmadmin and <password> and servername accordingly.

batch file (content server):

mkdir -p c:\logs_all_systems\server0006\install
mkdir -p c:\logs_all_systems\server0006\product\5.3\install
ftp -i -s:server0006.scr

(fti):

mkdir -p c:\logs_all_systems\server0021\install
ftp -i -s:server0021.scr

where -i is to ignore manual requests for responses from server

script file (servernnnn.scr) for content server:

open server0006.domain.net
dmadmin
<password>
bin
cd /app/documentum/dmadmin/
lcd c:\logs_all_systems\server0006
get install.log
lcd c:\logs_all_systems\server0006\install
cd /app/documentum/dmadmin/install
mget dmadmin*

cd /app/documentum/dmadmin/product/5.3/install
lcd c:\logs_all_systems\server0006\product\5.3\install
mget dmadmin*
quit

fti:

open server0021.domain.net
dmadmin
<password>
bin
lcd c:\logs_all_systems\server0021\install
cd /app/documentum/dmadmin/install
mget dmadmin*
quit

Leave a Comment