Script to register node using Curl and Rest API

2016-04-01 Thread Anderson Douglas
Hello



Here we have started news tests using REST API through Operation
center. We adopted Curl to send the commands.

Some commands like this below runs normally



curl -X GET -H "Accept: application/json" -H "OC-API-Version: 1.0" -k
--user aaa:bbb https://xx.xx.xx.xx:11090/oc/api/help

curl -X PUT -H "Accept: application/json" -H "OC-API-Version: 1.0" -k
--user aaa:bbb 
https://xx.xx.xx.xx:11090/oc/api/servers//clients//unlock



Now we need to implementade a rest command to register a node into
TSM, But not able. Does anyone know how to do this?



This is a link with REST API supportable commands

http://www-01.ibm.com/support/docview.wss?uid=swg21973011





Anderson Douglas da Silva


Re: Script to register node using Curl and Rest API

2016-04-01 Thread Anderson Douglas
Is it possivel to use this parameters with Curl?


anderson

On Fri, Apr 1, 2016 at 3:28 PM, Del Hoobler  wrote:

> The REST API is through the Operations Center and its web server.
>
>
> For register node:
>
>
> Register node
> servers/{server name}/clients
> {
> "registerclient" : {
> "name":"",
> "authentication":"",
> "password":"",
> "domain":"",
> "contact":"",
> "email":"",
> ["schedule":"  ]",
> ["optionset":"  ]",
> ["deduplication":"  ]",
> ["sslrequired":"  ]",
> ["sessioninitiation":"  ]"
> }}
>
>
>
> Thank you,
>
> Del
>
> ---
>
> "ADSM: Dist Stor Manager"  wrote on 04/01/2016
> 01:31:09 PM:
>
> > From: Anderson Douglas 
> > To: ADSM-L@VM.MARIST.EDU
> > Date: 04/01/2016 01:33 PM
> > Subject: Script to register node using Curl and Rest API
> > Sent by: "ADSM: Dist Stor Manager" 
> >
> > Hello
> >
> >
> >
> > Here we have started news tests using REST API through Operation
> > center. We adopted Curl to send the commands.
> >
> > Some commands like this below runs normally
> >
> >
> >
> > curl -X GET -H "Accept: application/json" -H "OC-API-Version: 1.0" -k
> > --user aaa:bbb https://xx.xx.xx.xx:11090/oc/api/help
> >
> > curl -X PUT -H "Accept: application/json" -H "OC-API-Version: 1.0" -k
> > --user aaa:bbb https://xx.xx.xx.xx:11090/oc/api/servers//
> > clients//unlock
> >
> >
> >
> > Now we need to implementade a rest command to register a node into
> > TSM, But not able. Does anyone know how to do this?
> >
> >
> >
> > This is a link with REST API supportable commands
> >
> > http://www-01.ibm.com/support/docview.wss?uid=swg21973011
> >
> >
> >
> >
> >
> > Anderson Douglas da Silva
> >
>



--
-
Anderson


Re: Script to register node using Curl and Rest API

2016-04-04 Thread Anderson Douglas
Thanks Evan.

Now it's works. it was a header issue.
Now i can continue my automation to include new servers before created into
TSM using REST.

On Fri, Apr 1, 2016 at 6:33 PM, Evan Dunn  wrote:

> Most likely your header is the issue.  You can check messages.log to see.
>
> This worked no problem for me (make sure you fill in credentials, host,
> and TSM/SP server name):
>
> curl -X POST -H "Content-Type: application/json" -H "OC-API-Version: 1.0"
> -k --user aaa:bbb
> https://xx:11090/oc/api/servers/COMFREY_LXS_SRV2/clients --data
> "@register.json"
>
> register.json contains:   (you can inline it into the curl, but I'll leave
> that to you)
>
> {
> "registerclient" : {
> "name":"rest",
> "authentication":"local",
> "password":"rest",
> "domain":"standard",
> "contact":"rest",
> "email":"r...@rest.us.ibm.com"
> }}
>
>
> **My opinions are my own**
>
> Evan Dunn
> Spectrum Protect Dev-Test
>
>
>
> From:   Anderson Douglas 
> To: ADSM-L@VM.MARIST.EDU
> Date:   04/01/2016 11:34 AM
> Subject:Re: [ADSM-L] Script to register node using Curl and Rest
> API
> Sent by:"ADSM: Dist Stor Manager" 
>
>
>
> Is it possivel to use this parameters with Curl?
>
>
> anderson
>
> On Fri, Apr 1, 2016 at 3:28 PM, Del Hoobler  wrote:
>
> > The REST API is through the Operations Center and its web server.
> >
> >
> > For register node:
> >
> >
> > Register node
> > servers/{server name}/clients
> > {
> > "registerclient" : {
> > "name":"",
> > "authentication":"",
> > "password":"",
> > "domain":"",
> > "contact":"",
> > "email":"",
> > ["schedule":"  ]",
> > ["optionset":"  ]",
> > ["deduplication":"  ]",
> > ["sslrequired":"  ]",
> > ["sessioninitiation":"  ]"
> > }}
> >
> >
> >
> > Thank you,
> >
> > Del
> >
> > ---
> >
> > "ADSM: Dist Stor Manager"  wrote on 04/01/2016
> > 01:31:09 PM:
> >
> > > From: Anderson Douglas 
> > > To: ADSM-L@VM.MARIST.EDU
> > > Date: 04/01/2016 01:33 PM
> > > Subject: Script to register node using Curl and Rest API
> > > Sent by: "ADSM: Dist Stor Manager" 
> > >
> > > Hello
> > >
> > >
> > >
> > > Here we have started news tests using REST API through Operation
> > > center. We adopted Curl to send the commands.
> > >
> > > Some commands like this below runs normally
> > >
> > >
> > >
> > > curl -X GET -H "Accept: application/json" -H "OC-API-Version: 1.0" -k
> > > --user aaa:bbb https://xx.xx.xx.xx:11090/oc/api/help
> > >
> > > curl -X PUT -H "Accept: application/json" -H "OC-API-Version: 1.0" -k
> > > --user aaa:bbb https://xx.xx.xx.xx:11090/oc/api/servers//
> > > clients//unlock
> > >
> > >
> > >
> > > Now we need to implementade a rest command to register a node into
> > > TSM, But not able. Does anyone know how to do this?
> > >
> > >
> > >
> > > This is a link with REST API supportable commands
> > >
> > > http://www-01.ibm.com/support/docview.wss?uid=swg21973011
> > >
> > >
> > >
> > >
> > >
> > > Anderson Douglas da Silva
> > >
> >
>
>
>
> --
> -
> Anderson
>



--
-
Anderson


Re: ISP 81 Discontinued functions

2016-12-09 Thread Anderson Douglas
where did you find this information? do you have any link?

On Fri, Dec 9, 2016 at 11:45 AM, Chavdar Cholev 
wrote:

> Does some one check discontinued functions in new version...
> especially part of no VM backup as standard function in BA client
> It is not good at all. TDP for Virtual environment for hyper-V creats diff
> hdds (.avhdx)
> and my customers will not be happy with this, because you have to merge
> these file,
> when you need to expand .vhdx disk for example 
>
> :(
> Regards
> Cahvdar
>



--
-
Anderson


Re: ISP 81 Discontinued functions

2016-12-09 Thread Anderson Douglas
bad news to us too...

On Fri, Dec 9, 2016 at 1:20 PM, Stefan Folkerts 
wrote:

> It's true
>
> For reference:
> https://www.youtube.com/watch?v=gu5S5oKzeIY&t=0s
> @32:25
>
>
> On Fri, Dec 9, 2016 at 4:00 PM, Anderson Douglas 
> wrote:
>
> > where did you find this information? do you have any link?
> >
> > On Fri, Dec 9, 2016 at 11:45 AM, Chavdar Cholev <
> chavdar.cho...@gmail.com>
> > wrote:
> >
> > > Does some one check discontinued functions in new version...
> > > especially part of no VM backup as standard function in BA client
> > > It is not good at all. TDP for Virtual environment for hyper-V creats
> > diff
> > > hdds (.avhdx)
> > > and my customers will not be happy with this, because you have to merge
> > > these file,
> > > when you need to expand .vhdx disk for example 
> > >
> > > :(
> > > Regards
> > > Cahvdar
> > >
> >
> >
> >
> > --
> > -
> > Anderson
> >
>



--
-
Anderson


integration TSM with Openstack

2017-01-10 Thread Anderson Douglas
Hello


We will start inititial configurations to integration TSM with Openstack
I want to know if i must have TDP for VE to realize this integration???

In this link its seens to simple, need only BA Client

http://docs.openstack.org/liberty/config-reference/content/tsm-backup-driver.html

--
-
Anderson


Re: Advice for archiving 80 billion of small files.

2017-01-20 Thread Anderson Douglas
Try image backup

Em 20/01/2017 12:23, "Bo Nielsen"  escreveu:

> Hi all,
>
> I need advice.
> I must archive 80 billion small files, but that is not possible, as I see
> it.
> since it will fill in the TSM's Database about 73 Tb.
> The filespace is mounted on a Linux server.
> Is there a way to pack/zip the files, so it's a smaller number of files.
> anybody who has tried this ??
>
> Regards,
>
> Bo Nielsen
>
>
> IT Service
>
>
>
> Technical University of Denmark
>
> IT Service
>
> Frederiksborgvej 399
>
> Building 109
>
> DK - 4000 Roskilde
>
> Denmark
>
> Mobil +45 2337 0271
>
> boa...@dtu.dk
>


Re: deleted tapes with discard data

2009-05-27 Thread Anderson Douglas da Silva
Rodney

I think you'll need restore you last database backup. When you
delete a volume from primary pool, automatically you lost the copy pool
data too.

---
Anderson Douglas da Silva

-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of
Rodney Luk
Sent: quarta-feira, 27 de maio de 2009 17:15
To: ADSM-L@VM.MARIST.EDU
Subject: [ADSM-L] deleted tapes with discard data

Hi Forum,

I am new to TSM. I had inherited TSM and the TSM admin had left the
company. My co-worker accidentally deleted several tapes with discard
the data. I knew I can issue the backup command to backup the data from
the primary tape pool back to the copy tape pool. However, how do I
recover the data on the primary tapes since I don't know which copy pool
tapes need to recall from offsite.

Thanks
Rodney



  
Confidentiality Notice: This e-mail message, including any attachments,
is
for the sole use of the intended recipient(s) and may contain
confidential
and privileged information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the intended recipient,
please
contact the sender by reply e-mail and destroy all copies of the
original
message.


IBM Tivoli Monitoring and Report 6.1

2009-08-31 Thread Anderson Douglas da Silva
Does anyone have a document or a PDF ?? I need to customize some monitoring, 
but I don't have an ideia.

 

---

Anderson Douglas da Silva

OSY Backup/Storage Man power

·T··· Systems do Brasil Ltda 
Rodovia Anchieta Km 23,5 Ala 22 Térreo 
Bairro: Demarchi SB Campo SP CEP: 09823-901
Tel Com: +55 11 2184-2492
Tel Fax: +55 11 4347-4689
E-mail: anderson.doug...@t-systems.com 
<mailto:anderson.doug...@t-systems.com.br> 

Web: www.t-systems.com.br <http://www.t-systems.com.br/> 

´Esta mensagem pode conter informação confidencial e/ou privilegiada. Se você 
não for o destinatário ou a pessoa autorizada a receber esta mensagem, não pode 
usar, copiar ou divulgar as informações nela contidas ou tomar qualquer ação 
baseada nessas informações. Se você recebeu esta mensagem por engano, por 
favor, avise imediatamente o remetente, respondendo o e-mail e em seguida 
apague-a. 

Agradecemos a sua cooperação.
This message may contain confidential and/or privileged information. If you are 
not the addressee or authorized to receive this for the addressee, you must not 
use, copy, disclose or take any action based on this message or any information 
herein. If you have received this message in error, please advise the sender 
immediately by reply e-mail and delete this message. 
Thank you for your cooperation.'

 


Re: SV: IBM Tivoli Monitoring and Report 6.1

2009-08-31 Thread Anderson Douglas da Silva
Sorry, The Tivoli Enterprise Portal. About ISC I have some docs.

---
Anderson Douglas da Silva
OSY Backup/Storage Man power
·T··· Systems do Brasil Ltda 
Tel Com: +55 11 2184-2492
´Esta mensagem pode conter informação confidencial e/ou privilegiada. Se você 
não for o destinatário ou a pessoa autorizada a receber esta mensagem, não pode 
usar, copiar ou divulgar as informações nela contidas ou tomar qualquer ação 
baseada nessas informações. Se você recebeu esta mensagem por engano, por 
favor, avise imediatamente o remetente, respondendo o e-mail e em seguida 
apague-a. 
Agradecemos a sua cooperação.
This message may contain confidential and/or privileged information. If you are 
not the addressee or authorized to receive this for the addressee, you must not 
use, copy, disclose or take any action based on this message or any information 
herein. If you have received this message in error, please advise the sender 
immediately by reply e-mail and delete this message. 
Thank you for your cooperation.'

-Original Message-
From: ADSM: Dist Stor Manager [mailto:ads...@vm.marist.edu] On Behalf Of 
Christian Svensson
Sent: segunda-feira, 31 de agosto de 2009 17:35
To: ADSM-L@VM.MARIST.EDU
Subject: [ADSM-L] SV: IBM Tivoli Monitoring and Report 6.1

What part do you wanna customize?
The Tivoli Enterprise Portal or in Tivoli Common Reporting (ISC)

Best Regards
Christian Svensson

Cell: +46-70-325 1577
E-mail: christian.svens...@cristie.se
Skype: cristie.christian.svensson

Från: ADSM: Dist Stor Manager [ads...@vm.marist.edu] för Anderson Douglas 
da Silva [anderson.doug...@t-systems.com.br]
Skickat: den 31 augusti 2009 22:33
Till: ADSM-L@VM.MARIST.EDU
Ämne: IBM Tivoli Monitoring and Report  6.1

Does anyone have a document or a PDF ?? I need to customize some monitoring, 
but I don't have an ideia.



---

Anderson Douglas da Silva

OSY Backup/Storage Man power

·T··· Systems do Brasil Ltda
Rodovia Anchieta Km 23,5 Ala 22 Térreo
Bairro: Demarchi SB Campo SP CEP: 09823-901
Tel Com: +55 11 2184-2492
Tel Fax: +55 11 4347-4689
E-mail: anderson.doug...@t-systems.com 
<mailto:anderson.doug...@t-systems.com.br>

Web: www.t-systems.com.br <http://www.t-systems.com.br/>

´Esta mensagem pode conter informação confidencial e/ou privilegiada. Se você 
não for o destinatário ou a pessoa autorizada a receber esta mensagem, não pode 
usar, copiar ou divulgar as informações nela contidas ou tomar qualquer ação 
baseada nessas informações. Se você recebeu esta mensagem por engano, por 
favor, avise imediatamente o remetente, respondendo o e-mail e em seguida 
apague-a.

Agradecemos a sua cooperação.
This message may contain confidential and/or privileged information. If you are 
not the addressee or authorized to receive this for the addressee, you must not 
use, copy, disclose or take any action based on this message or any information 
herein. If you have received this message in error, please advise the sender 
immediately by reply e-mail and delete this message.
Thank you for your cooperation.'


Select Total Tapes X Collocation Group

2010-03-18 Thread Anderson Douglas da Silva
Hi,

I have some Collocation Group in my TSM and I need know
how many tapes I have on each Collocation Group.

Does anyone has this select?



thanks

 

---

Anderson 

 


Strange Problem to Restore files

2008-07-15 Thread Anderson Douglas da Silva
Hi,

 

When we try to restore any file using GUI interface and using 
point-in-time, we can´t find the file. But when we try using the command line 
the file was there available to restore. What is happening in this case. The 
client and the server is 5.3.5.

 

---

Anderson Douglas da Silva

OSY Backup/Storage Man power

·T··· Systems do Brasil Ltda 
Rodovia Anchieta Km 23,5 Ala 22 Térreo 
Bairro: Demarchi SB Campo SP CEP: 09823-901
Tel Com: +55 11 2184-2492
Tel Fax: +55 11 4347-4689
E-mail: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> 
Web: www.t-systems.com.br <http://www.t-systems.com.br/> 

´Esta mensagem pode conter informação confidencial e/ou privilegiada. Se você 
não for o destinatário ou a pessoa autorizada a receber esta mensagem, não pode 
usar, copiar ou divulgar as informações nela contidas ou tomar qualquer ação 
baseada nessas informações. Se você recebeu esta mensagem por engano, por 
favor, avise imediatamente o remetente, respondendo o e-mail e em seguida 
apague-a. 

Agradecemos a sua cooperação.
This message may contain confidential and/or privileged information. If you are 
not the addressee or authorized to receive this for the addressee, you must not 
use, copy, disclose or take any action based on this message or any information 
herein. If you have received this message in error, please advise the sender 
immediately by reply e-mail and delete this message. 
Thank you for your cooperation.'

 


Inactive log backup from TDP LOG not removed from tsm server.

2008-07-29 Thread Anderson Douglas da Silva
Does anybody know why my TSM server is not removing the old LOG backup
that is inactive. Is there maybe a command for this that can be
scheduled..??? Old FULL and DIFF backups was removed normally, only LOG
backup we have problem.



I think that the management class should control this. But it does
not...!!! I have old log files for several years now.

---
Anderson Douglas da Silva
OSY Backup/Storage Man power


granular mailbox restore TDP 6.1

2012-03-22 Thread Anderson Douglas Da Silva
I have a problem too for mailbox restore, but the msg error is:
Restore Failed ACN0208E: There is not enough disk space for the
operation attempted.

Client TDP Version: V6.1.3
Server TSM Version: V6.2.3
Exchange 2007 Server
Disk usage on Exchange, 30Gb Free on 200Gb Lun size

When i restore from TDP with Recovery storage group, that success.

Anyone had an idea ?

Thanx you for your help

Anderson