reclaimable tapes in a stgpool

2014-04-15 Thread Rhodes, Richard L.
Is there a way to determine the number of tapes in a stgpool that
are eligible for reclamation?

I tried the following sql on all our TSM instances:
select stgpool_name, \
   count(*) \
  from volumes \
 where pct_reclaim \ 64  \
   and devclass_name like '%TAPE%' \
 group by stgpool_name 

It returned a list, but when I went and ran reclaim stgpool  name 
threshold=65
many of the pools returned that there were no volumes to be reclaimed.  I think
I need more qualifiers on the select.

We currently have reclamation running automatically with a
reclaim pct of 65% on the stgpool.  I'm trying to move to
manually running reclamation during a window.  I don't
want to just issue reclaim stgpool cmds all at once for all
instances to prevent a tape drive storm.  I want to start
them gradually, with the stgpools with the most tapes to be
reclaimed starting first.

Thanks

Rick






-
The information contained in this message is intended only for the
personal and confidential use of the recipient(s) named above. If
the reader of this message is not the intended recipient or an
agent responsible for delivering it to the intended recipient, you
are hereby notified that you have received this document in error
and that any review, dissemination, distribution, or copying of
this message is strictly prohibited. If you have received this
communication in error, please notify us immediately, and delete
the original message.


Re: reclaimable tapes in a stgpool

2014-04-15 Thread George Huebschman
If Primary Pool volumes are filling, they will not reclaim.

George Huebschman (George H.)
(301) 699-4013
(301) 875-1227 (Cell)



The contents of this email are the property of PNC. If it was not addressed to 
you, you have no legal right to read it. If you think you received it in error, 
please notify the sender. Do not forward or copy without permission of the 
sender. This message may contain an advertisement of a product or service and 
thus may constitute a commercial electronic mail message under US Law. The 
postal address for PNC is 249 Fifth Avenue, Pittsburgh, PA 15222. If you do not 
wish to receive any additional advertising or promotional messages from PNC at 
this e-mail address, click here to unsubscribe: 
http://pages.e.pnc.com/globalunsub/
By unsubscribing to this message, you will be unsubscribed from all advertising 
or promotional messages from PNC. Removing your e-mail address from this 
mailing list will not affect your subscription to alerts, e-newsletters or 
account servicing e-mails.


Re: reclaimable tapes in a stgpool

2014-04-15 Thread Arbogast, Warren K
Rick,
We use a macro named count_reclaim.mac with these contents. 
select stgpool_name,count(*) as Count from volumes where devclass_name in 
('VIRTVOL','V3592-06','3592-06') and status='FULL' and pct_reclaim=%1 group by 
stgpool_name

For example, to run the macro if we were looking for 60% reclaimable space:  
TSM macro /path/count_reclaim.mac 60

Best wishes,
Keith

On Apr 15, 2014, at 9:59 AM, Rhodes, Richard L. wrote:

 Is there a way to determine the number of tapes in a stgpool that
 are eligible for reclamation?
 
 I tried the following sql on all our TSM instances:
select stgpool_name, \
   count(*) \
  from volumes \
 where pct_reclaim \ 64  \
   and devclass_name like '%TAPE%' \
 group by stgpool_name 
 
 It returned a list, but when I went and ran reclaim stgpool  name 
 threshold=65
 many of the pools returned that there were no volumes to be reclaimed.  I 
 think
 I need more qualifiers on the select.
 
 We currently have reclamation running automatically with a
 reclaim pct of 65% on the stgpool.  I'm trying to move to
 manually running reclamation during a window.  I don't
 want to just issue reclaim stgpool cmds all at once for all
 instances to prevent a tape drive storm.  I want to start
 them gradually, with the stgpools with the most tapes to be
 reclaimed starting first.
 
 Thanks
 
 Rick
 
 
 
 
 
 
 -
 The information contained in this message is intended only for the
 personal and confidential use of the recipient(s) named above. If
 the reader of this message is not the intended recipient or an
 agent responsible for delivering it to the intended recipient, you
 are hereby notified that you have received this document in error
 and that any review, dissemination, distribution, or copying of
 this message is strictly prohibited. If you have received this
 communication in error, please notify us immediately, and delete
 the original message.


Re: reclaimable tapes in a stgpool

2014-04-15 Thread Michael Roesch
Hi,

I'm using this query to see all tapes and how much reclaimable space they
have in descending order. As we have a small library, this is suitable for
us.

SELECT
volume_name,devclass_name,stgpool_name,pct_reclaim,pct_utilized,status,access
FROM volumes WHERE devclass_name='LTO_DeviceClass' order by pct_reclaim desc

Regards,
Michael Roesch





On Tue, Apr 15, 2014 at 3:59 PM, Rhodes, Richard L. 
rrho...@firstenergycorp.com wrote:

 Is there a way to determine the number of tapes in a stgpool that
 are eligible for reclamation?

 I tried the following sql on all our TSM instances:
 select stgpool_name, \
count(*) \
   from volumes \
  where pct_reclaim \ 64  \
and devclass_name like '%TAPE%' \
  group by stgpool_name 

 It returned a list, but when I went and ran reclaim stgpool  name
 threshold=65
 many of the pools returned that there were no volumes to be reclaimed.  I
 think
 I need more qualifiers on the select.

 We currently have reclamation running automatically with a
 reclaim pct of 65% on the stgpool.  I'm trying to move to
 manually running reclamation during a window.  I don't
 want to just issue reclaim stgpool cmds all at once for all
 instances to prevent a tape drive storm.  I want to start
 them gradually, with the stgpools with the most tapes to be
 reclaimed starting first.

 Thanks

 Rick






 -
 The information contained in this message is intended only for the
 personal and confidential use of the recipient(s) named above. If
 the reader of this message is not the intended recipient or an
 agent responsible for delivering it to the intended recipient, you
 are hereby notified that you have received this document in error
 and that any review, dissemination, distribution, or copying of
 this message is strictly prohibited. If you have received this
 communication in error, please notify us immediately, and delete
 the original message.



Re: reclaimable tapes in a stgpool

2014-04-15 Thread Schneider, Jim
I use the following script to check reclaimable space by storage pool.  The 
output lines are numbered, makes it easy to check a percentage and a line 
number to get a tape count.

#!/usr/bin/ksh
#
# This script checks reclaimable space in a tape storage pool
# The list is displayed with line numbers and is sorted by
# reclaimable space in descending order.


# Check that a parameter is passed
if [[ $# != 1 ]]
then
   echo Usage: cr \storage_pool_name\
   exit 4
fi

dsmadmc -id=userid -pass=password -displ=list q vol stg=$1 f=d |
grep Reclaimable | sort -n -r -k 4  $1.usage
cat -n $1.usage | more
rm $1.usage

Regards,
Jim Schneider


-Original Message-
From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of 
Michael Roesch
Sent: Tuesday, April 15, 2014 9:28 AM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: [ADSM-L] reclaimable tapes in a stgpool

Hi,

I'm using this query to see all tapes and how much reclaimable space they have 
in descending order. As we have a small library, this is suitable for us.

SELECT
volume_name,devclass_name,stgpool_name,pct_reclaim,pct_utilized,status,access
FROM volumes WHERE devclass_name='LTO_DeviceClass' order by pct_reclaim desc

Regards,
Michael Roesch





On Tue, Apr 15, 2014 at 3:59 PM, Rhodes, Richard L.  
rrho...@firstenergycorp.com wrote:

 Is there a way to determine the number of tapes in a stgpool that are 
 eligible for reclamation?

 I tried the following sql on all our TSM instances:
 select stgpool_name, \
count(*) \
   from volumes \
  where pct_reclaim \ 64  \
and devclass_name like '%TAPE%' \
  group by stgpool_name 

 It returned a list, but when I went and ran reclaim stgpool  name 
 threshold=65
 many of the pools returned that there were no volumes to be reclaimed.  
 I think I need more qualifiers on the select.

 We currently have reclamation running automatically with a reclaim pct 
 of 65% on the stgpool.  I'm trying to move to manually running 
 reclamation during a window.  I don't want to just issue reclaim 
 stgpool cmds all at once for all instances to prevent a tape drive 
 storm.  I want to start them gradually, with the stgpools with the 
 most tapes to be reclaimed starting first.

 Thanks

 Rick






 -
 The information contained in this message is intended only for the 
 personal and confidential use of the recipient(s) named above. If the 
 reader of this message is not the intended recipient or an agent 
 responsible for delivering it to the intended recipient, you are 
 hereby notified that you have received this document in error and that 
 any review, dissemination, distribution, or copying of this message is 
 strictly prohibited. If you have received this communication in error, 
 please notify us immediately, and delete the original message.


**
Information contained in this e-mail message and in any attachments thereto is 
confidential. If you are not the intended recipient, please destroy this 
message, delete any copies held on your systems, notify the sender immediately, 
and refrain from using or disclosing all or any part of its content to any 
other person.


Re: reclaimable tapes in a stgpool

2014-04-15 Thread Rhodes, Richard L.
I figured out what I screwed up.

Here's the actual cmd in a ksh script:

   # get list of stgpools with count of reclaimable volumes
   /tsmdata/tsm_scripts/run_cmd_allservers.ksh  \
select stgpool_name, \
   count(*) \
  from volumes \
 where pct_reclaim \ 64  \
   and stgpool_name like '%TAPE%' \
 group by stgpool_name  \
  | sort -k2,2rn \
   $tmpfile1

Note the ' \ 64 '.  But our reclamation threshold is 65.
Why did I do 64
Because I couldn't get ' =  65' through the shell.
I tried \\= and \=, but neither worked. So I
punted and used ' \ 64'.  BUT THE CONSEQUENCE of this was
that it picked up fractions like 64.3 which
the reclaim stgpool . . . threshold=65 would not see,
and there were a lot of those.

I finally got the ksh to work.
This works - you don't need to escape at all:  ' = 65'!!!
Yup, if the equal sign is right after the gt sign then you
don't need to escape the  gt sign.

Thanks!

Rick




From: Rhodes, Richard L.
Sent: Tuesday, April 15, 2014 10:00 AM
To: adsm-l mailing list (ADSM-L@VM.MARIST.EDU)
Subject: reclaimable tapes in a stgpool

Is there a way to determine the number of tapes in a stgpool that
are eligible for reclamation?

I tried the following sql on all our TSM instances:
select stgpool_name, \
   count(*) \
  from volumes \
 where pct_reclaim \ 64  \
   and devclass_name like '%TAPE%' \
 group by stgpool_name 

It returned a list, but when I went and ran reclaim stgpool  name 
threshold=65
many of the pools returned that there were no volumes to be reclaimed.  I think
I need more qualifiers on the select.

We currently have reclamation running automatically with a
reclaim pct of 65% on the stgpool.  I'm trying to move to
manually running reclamation during a window.  I don't
want to just issue reclaim stgpool cmds all at once for all
instances to prevent a tape drive storm.  I want to start
them gradually, with the stgpools with the most tapes to be
reclaimed starting first.

Thanks

Rick






-
The information contained in this message is intended only for the
personal and confidential use of the recipient(s) named above. If
the reader of this message is not the intended recipient or an
agent responsible for delivering it to the intended recipient, you
are hereby notified that you have received this document in error
and that any review, dissemination, distribution, or copying of
this message is strictly prohibited. If you have received this
communication in error, please notify us immediately, and delete
the original message.


Re: reclaimable tapes in a stgpool

2014-04-15 Thread Francisco Parrilla
As I can see, would consider two factors over the stgpool definitions:

.- reusedelay
.- threshold of lowmigracion

If you issue and expiration command and this don't working maybe you should
see if whether convenience change temporary the value for reusedelay

best regards



2014-04-15 8:59 GMT-05:00 Rhodes, Richard L. rrho...@firstenergycorp.com:

 Is there a way to determine the number of tapes in a stgpool that
 are eligible for reclamation?

 I tried the following sql on all our TSM instances:
 select stgpool_name, \
count(*) \
   from volumes \
  where pct_reclaim \ 64  \
and devclass_name like '%TAPE%' \
  group by stgpool_name 

 It returned a list, but when I went and ran reclaim stgpool  name
 threshold=65
 many of the pools returned that there were no volumes to be reclaimed.  I
 think
 I need more qualifiers on the select.

 We currently have reclamation running automatically with a
 reclaim pct of 65% on the stgpool.  I'm trying to move to
 manually running reclamation during a window.  I don't
 want to just issue reclaim stgpool cmds all at once for all
 instances to prevent a tape drive storm.  I want to start
 them gradually, with the stgpools with the most tapes to be
 reclaimed starting first.

 Thanks

 Rick






 -
 The information contained in this message is intended only for the
 personal and confidential use of the recipient(s) named above. If
 the reader of this message is not the intended recipient or an
 agent responsible for delivering it to the intended recipient, you
 are hereby notified that you have received this document in error
 and that any review, dissemination, distribution, or copying of
 this message is strictly prohibited. If you have received this
 communication in error, please notify us immediately, and delete
 the original message.



New Exchange 2010 setup

2014-04-15 Thread Geoff Gill
Someone sent me this asking for help with an exchange issue. Since this is a 
new server I'm guessing the setup isn't correct since this message seems to 
indicate an issue outside of the TDP setup but wanted to see if anyone has seen 
this before.

I do not have any access to the client but can request other logs, and in the 
mean time have sent them the IBM link for documentation for Exchange setup.

Connecting to remote server failed with the following error message : The WinRM 
client cannot process the request. The WinRM client tried to use Negotiate 
authentication mechanism, but the destination computer (RB1-EXC-01:80) returned 
an 'access denied' error. Change the configuration to allow Negotiate 
authentication mechanism to be used or specify one of the authentication 
mechanisms supported by the server. To use Kerberos, specify the local computer 
name as the remote destination. Also verify that the client computer and the 
destination computer are joined to a domain. To use Basic, specify the local 
computer name as the remote destination, specify Basic authentication and 
provide user name and password. Possible authentication mechanisms reported by 
server:



Thank You
Geoff Gill


Re: New Exchange 2010 setup

2014-04-15 Thread Del Hoobler
Hi Geoff,

This can happen if Windows Management Framework 3.0
is installed, but you haven't upgraded to Microsoft Exchange
Server 2010 Service Pack 3 yet.

Is SP3 installed for Exchange Server 2010?


Thank you,

Del




ADSM: Dist Stor Manager ADSM-L@vm.marist.edu wrote on 04/15/2014
11:42:48 AM:

 From: Geoff Gill avalnch...@yahoo.com
 To: ADSM-L@vm.marist.edu,
 Date: 04/15/2014 11:45 AM
 Subject: New Exchange 2010 setup
 Sent by: ADSM: Dist Stor Manager ADSM-L@vm.marist.edu

 Someone sent me this asking for help with an exchange issue. Since
 this is a new server I'm guessing the setup isn't correct since this
 message seems to indicate an issue outside of the TDP setup but
 wanted to see if anyone has seen this before.

 I do not have any access to the client but can request other logs,
 and in the mean time have sent them the IBM link for documentation
 for Exchange setup.

 Connecting to remote server failed with the following error message
 : The WinRM client cannot process the request. The WinRM client
 tried to use Negotiate authentication mechanism, but the destination
 computer (RB1-EXC-01:80) returned an 'access denied' error. Change
 the configuration to allow Negotiate authentication mechanism to be
 used or specify one of the authentication mechanisms supported by
 the server. To use Kerberos, specify the local computer name as the
 remote destination. Also verify that the client computer and the
 destination computer are joined to a domain. To use Basic, specify
 the local computer name as the remote destination, specify Basic
 authentication and provide user name and password. Possible
 authentication mechanisms reported by server:


Can't cancel restartable restore

2014-04-15 Thread Zoltan Forray
TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1

Is there a way to terminate with extreme prejudice a hung restore.

12:58:21 PM   PROCESSOR : q restore
  Sess Restore Elapsed Node Name Filespace FSID
Number State   Minutes   Name
-- --- --- - --- --
 1,067 Active8,753 GODEL.VCU.EDU /data7  12
-1 Restartable   1,361 GODEL.VCU.EDU /data7  12


I have tried numerous times to cancel restore 1067 to no avail.

They users started the restore as another session and finished restoring
and want to start backing up but now it won't backup due to the hung
restore.

--
*Zoltan Forray*
TSM Software  Hardware Administrator
BigBro / Hobbit / Xymon Administrator
Virginia Commonwealth University
UCC/Office of Technology Services
zfor...@vcu.edu - 804-828-4807
Don't be a phishing victim - VCU and other reputable organizations will
never use email to request that you reply with your password, social
security number or confidential personal information. For more details
visit http://infosecurity.vcu.edu/phishing.html


Re: Can't cancel restartable restore

2014-04-15 Thread Francisco Parrilla
Could you try to block the node, so those sessions don't restarting again
on automatic way.



2014-04-15 12:02 GMT-05:00 Zoltan Forray zfor...@vcu.edu:

 TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1

 Is there a way to terminate with extreme prejudice a hung restore.

 12:58:21 PM   PROCESSOR : q restore
   Sess Restore Elapsed Node Name Filespace FSID
 Number State   Minutes   Name
 -- --- --- - --- --
  1,067 Active8,753 GODEL.VCU.EDU /data7
  12
 -1 Restartable   1,361 GODEL.VCU.EDU /data7
  12


 I have tried numerous times to cancel restore 1067 to no avail.

 They users started the restore as another session and finished restoring
 and want to start backing up but now it won't backup due to the hung
 restore.

 --
 *Zoltan Forray*
 TSM Software  Hardware Administrator
 BigBro / Hobbit / Xymon Administrator
 Virginia Commonwealth University
 UCC/Office of Technology Services
 zfor...@vcu.edu - 804-828-4807
 Don't be a phishing victim - VCU and other reputable organizations will
 never use email to request that you reply with your password, social
 security number or confidential personal information. For more details
 visit http://infosecurity.vcu.edu/phishing.html



Re: Can't cancel restartable restore

2014-04-15 Thread Zoltan Forray
That is the problem. There is no active session on the client.

Zoltan Forray
TSM Software  Hardware Administrator
Virginia Commonwealth University
UCC/Office of Technology Services
zfor...@vcu.edu - 804-828-4807
Don't be a phishing victim - VCU and other reputable organizations will
never use email to request that you reply with your password, social
security number or confidential personal information. For more details
visit http://infosecurity.vcu.edu/phishing.html
On Apr 15, 2014 4:48 PM, Francisco Parrilla francisco.parri...@gmail.com
wrote:

 Could you try to block the node, so those sessions don't restarting again
 on automatic way.



 2014-04-15 12:02 GMT-05:00 Zoltan Forray zfor...@vcu.edu:

  TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1
 
  Is there a way to terminate with extreme prejudice a hung restore.
 
  12:58:21 PM   PROCESSOR : q restore
Sess Restore Elapsed Node Name Filespace
 FSID
  Number State   Minutes   Name
  -- --- --- - ---
 --
   1,067 Active8,753 GODEL.VCU.EDU /data7
   12
  -1 Restartable   1,361 GODEL.VCU.EDU /data7
   12
 
 
  I have tried numerous times to cancel restore 1067 to no avail.
 
  They users started the restore as another session and finished restoring
  and want to start backing up but now it won't backup due to the hung
  restore.
 
  --
  *Zoltan Forray*
  TSM Software  Hardware Administrator
  BigBro / Hobbit / Xymon Administrator
  Virginia Commonwealth University
  UCC/Office of Technology Services
  zfor...@vcu.edu - 804-828-4807
  Don't be a phishing victim - VCU and other reputable organizations will
  never use email to request that you reply with your password, social
  security number or confidential personal information. For more details
  visit http://infosecurity.vcu.edu/phishing.html
 



Re: Can't cancel restartable restore

2014-04-15 Thread Gee, Norman
Cancel restore -1

-Original Message-
From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of Zoltan 
Forray
Sent: Tuesday, April 15, 2014 1:56 PM
To: ADSM-L@VM.MARIST.EDU
Subject: Re: Can't cancel restartable restore

That is the problem. There is no active session on the client.

Zoltan Forray
TSM Software  Hardware Administrator
Virginia Commonwealth University
UCC/Office of Technology Services
zfor...@vcu.edu - 804-828-4807
Don't be a phishing victim - VCU and other reputable organizations will
never use email to request that you reply with your password, social
security number or confidential personal information. For more details
visit http://infosecurity.vcu.edu/phishing.html
On Apr 15, 2014 4:48 PM, Francisco Parrilla francisco.parri...@gmail.com
wrote:

 Could you try to block the node, so those sessions don't restarting again
 on automatic way.



 2014-04-15 12:02 GMT-05:00 Zoltan Forray zfor...@vcu.edu:

  TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1
 
  Is there a way to terminate with extreme prejudice a hung restore.
 
  12:58:21 PM   PROCESSOR : q restore
Sess Restore Elapsed Node Name Filespace
 FSID
  Number State   Minutes   Name
  -- --- --- - ---
 --
   1,067 Active8,753 GODEL.VCU.EDU /data7
   12
  -1 Restartable   1,361 GODEL.VCU.EDU /data7
   12
 
 
  I have tried numerous times to cancel restore 1067 to no avail.
 
  They users started the restore as another session and finished restoring
  and want to start backing up but now it won't backup due to the hung
  restore.
 
  --
  *Zoltan Forray*
  TSM Software  Hardware Administrator
  BigBro / Hobbit / Xymon Administrator
  Virginia Commonwealth University
  UCC/Office of Technology Services
  zfor...@vcu.edu - 804-828-4807
  Don't be a phishing victim - VCU and other reputable organizations will
  never use email to request that you reply with your password, social
  security number or confidential personal information. For more details
  visit http://infosecurity.vcu.edu/phishing.html
 



Re: Can't cancel restartable restore

2014-04-15 Thread Francisco Parrilla
And into the client there are some dsmc process on executing


2014-04-15 15:55 GMT-05:00 Zoltan Forray zfor...@vcu.edu:

 That is the problem. There is no active session on the client.

 Zoltan Forray
 TSM Software  Hardware Administrator
 Virginia Commonwealth University
 UCC/Office of Technology Services
 zfor...@vcu.edu - 804-828-4807
 Don't be a phishing victim - VCU and other reputable organizations will
 never use email to request that you reply with your password, social
 security number or confidential personal information. For more details
 visit http://infosecurity.vcu.edu/phishing.html
 On Apr 15, 2014 4:48 PM, Francisco Parrilla 
 francisco.parri...@gmail.com
 wrote:

  Could you try to block the node, so those sessions don't restarting again
  on automatic way.
 
 
 
  2014-04-15 12:02 GMT-05:00 Zoltan Forray zfor...@vcu.edu:
 
   TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1
  
   Is there a way to terminate with extreme prejudice a hung restore.
  
   12:58:21 PM   PROCESSOR : q restore
 Sess Restore Elapsed Node Name Filespace
  FSID
   Number State   Minutes   Name
   -- --- --- - ---
  --
1,067 Active8,753 GODEL.VCU.EDU /data7
12
   -1 Restartable   1,361 GODEL.VCU.EDU /data7
12
  
  
   I have tried numerous times to cancel restore 1067 to no avail.
  
   They users started the restore as another session and finished
 restoring
   and want to start backing up but now it won't backup due to the hung
   restore.
  
   --
   *Zoltan Forray*
   TSM Software  Hardware Administrator
   BigBro / Hobbit / Xymon Administrator
   Virginia Commonwealth University
   UCC/Office of Technology Services
   zfor...@vcu.edu - 804-828-4807
   Don't be a phishing victim - VCU and other reputable organizations will
   never use email to request that you reply with your password, social
   security number or confidential personal information. For more details
   visit http://infosecurity.vcu.edu/phishing.html
  
 



Re: Can't cancel restartable restore

2014-04-15 Thread Zoltan Forray
That ones not the problem. After I sent the message I did a 'cancel restore
all' which got rid of of the - 1 but the session 1067 is still there. I've
tried cancelling it numerous times and it won't go away.

Zoltan Forray
TSM Software  Hardware Administrator
Virginia Commonwealth University
UCC/Office of Technology Services
zfor...@vcu.edu - 804-828-4807
Don't be a phishing victim - VCU and other reputable organizations will
never use email to request that you reply with your password, social
security number or confidential personal information. For more details
visit http://infosecurity.vcu.edu/phishing.html
On Apr 15, 2014 4:59 PM, Gee, Norman norman@lc.ca.gov wrote:

 Cancel restore -1

 -Original Message-
 From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of
 Zoltan Forray
 Sent: Tuesday, April 15, 2014 1:56 PM
 To: ADSM-L@VM.MARIST.EDU
 Subject: Re: Can't cancel restartable restore

 That is the problem. There is no active session on the client.

 Zoltan Forray
 TSM Software  Hardware Administrator
 Virginia Commonwealth University
 UCC/Office of Technology Services
 zfor...@vcu.edu - 804-828-4807
 Don't be a phishing victim - VCU and other reputable organizations will
 never use email to request that you reply with your password, social
 security number or confidential personal information. For more details
 visit http://infosecurity.vcu.edu/phishing.html
 On Apr 15, 2014 4:48 PM, Francisco Parrilla 
 francisco.parri...@gmail.com
 wrote:

  Could you try to block the node, so those sessions don't restarting again
  on automatic way.
 
 
 
  2014-04-15 12:02 GMT-05:00 Zoltan Forray zfor...@vcu.edu:
 
   TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1
  
   Is there a way to terminate with extreme prejudice a hung restore.
  
   12:58:21 PM   PROCESSOR : q restore
 Sess Restore Elapsed Node Name Filespace
  FSID
   Number State   Minutes   Name
   -- --- --- - ---
  --
1,067 Active8,753 GODEL.VCU.EDU /data7
12
   -1 Restartable   1,361 GODEL.VCU.EDU /data7
12
  
  
   I have tried numerous times to cancel restore 1067 to no avail.
  
   They users started the restore as another session and finished
 restoring
   and want to start backing up but now it won't backup due to the hung
   restore.
  
   --
   *Zoltan Forray*
   TSM Software  Hardware Administrator
   BigBro / Hobbit / Xymon Administrator
   Virginia Commonwealth University
   UCC/Office of Technology Services
   zfor...@vcu.edu - 804-828-4807
   Don't be a phishing victim - VCU and other reputable organizations will
   never use email to request that you reply with your password, social
   security number or confidential personal information. For more details
   visit http://infosecurity.vcu.edu/phishing.html
  
 



Re: Can't cancel restartable restore

2014-04-15 Thread Skylar Thompson
I've gotten into a similar state. Sometimes if you wait a really really
long time (1+ day) the active restore will time out. Sometimes we have to
cycle the TSM server to clear it out.

On Tue, Apr 15, 2014 at 01:02:10PM -0400, Zoltan Forray wrote:
 TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1

 Is there a way to terminate with extreme prejudice a hung restore.

 12:58:21 PM   PROCESSOR : q restore
   Sess Restore Elapsed Node Name Filespace FSID
 Number State   Minutes   Name
 -- --- --- - --- --
  1,067 Active8,753 GODEL.VCU.EDU /data7  12
 -1 Restartable   1,361 GODEL.VCU.EDU /data7  12


 I have tried numerous times to cancel restore 1067 to no avail.

 They users started the restore as another session and finished restoring
 and want to start backing up but now it won't backup due to the hung
 restore.

 --
 *Zoltan Forray*
 TSM Software  Hardware Administrator
 BigBro / Hobbit / Xymon Administrator
 Virginia Commonwealth University
 UCC/Office of Technology Services
 zfor...@vcu.edu - 804-828-4807
 Don't be a phishing victim - VCU and other reputable organizations will
 never use email to request that you reply with your password, social
 security number or confidential personal information. For more details
 visit http://infosecurity.vcu.edu/phishing.html

--
-- Skylar Thompson (skyl...@u.washington.edu)
-- Genome Sciences Department, System Administrator
-- Foege Building S046, (206)-685-7354
-- University of Washington School of Medicine


Re: Can't cancel restartable restore

2014-04-15 Thread Francisco Parrilla
one note:

http://pic.dhe.ibm.com/infocenter/tsminfo/v6r4/index.jsp?topic=%2Fcom.ibm.itsm.srv.doc%2Ft_mgclinod_ccrs.html



2014-04-15 15:58 GMT-05:00 Gee, Norman norman@lc.ca.gov:

 Cancel restore -1

 -Original Message-
 From: ADSM: Dist Stor Manager [mailto:ADSM-L@VM.MARIST.EDU] On Behalf Of
 Zoltan Forray
 Sent: Tuesday, April 15, 2014 1:56 PM
 To: ADSM-L@VM.MARIST.EDU
 Subject: Re: Can't cancel restartable restore

 That is the problem. There is no active session on the client.

 Zoltan Forray
 TSM Software  Hardware Administrator
 Virginia Commonwealth University
 UCC/Office of Technology Services
 zfor...@vcu.edu - 804-828-4807
 Don't be a phishing victim - VCU and other reputable organizations will
 never use email to request that you reply with your password, social
 security number or confidential personal information. For more details
 visit http://infosecurity.vcu.edu/phishing.html
 On Apr 15, 2014 4:48 PM, Francisco Parrilla 
 francisco.parri...@gmail.com
 wrote:

  Could you try to block the node, so those sessions don't restarting again
  on automatic way.
 
 
 
  2014-04-15 12:02 GMT-05:00 Zoltan Forray zfor...@vcu.edu:
 
   TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1
  
   Is there a way to terminate with extreme prejudice a hung restore.
  
   12:58:21 PM   PROCESSOR : q restore
 Sess Restore Elapsed Node Name Filespace
  FSID
   Number State   Minutes   Name
   -- --- --- - ---
  --
1,067 Active8,753 GODEL.VCU.EDU /data7
12
   -1 Restartable   1,361 GODEL.VCU.EDU /data7
12
  
  
   I have tried numerous times to cancel restore 1067 to no avail.
  
   They users started the restore as another session and finished
 restoring
   and want to start backing up but now it won't backup due to the hung
   restore.
  
   --
   *Zoltan Forray*
   TSM Software  Hardware Administrator
   BigBro / Hobbit / Xymon Administrator
   Virginia Commonwealth University
   UCC/Office of Technology Services
   zfor...@vcu.edu - 804-828-4807
   Don't be a phishing victim - VCU and other reputable organizations will
   never use email to request that you reply with your password, social
   security number or confidential personal information. For more details
   visit http://infosecurity.vcu.edu/phishing.html
  
 



Re: Can't cancel restartable restore

2014-04-15 Thread Zoltan Forray
I will check with the owners but I am pretty sure they said there were no
DSMC processes running.

Zoltan Forray
TSM Software  Hardware Administrator
Virginia Commonwealth University
UCC/Office of Technology Services
zfor...@vcu.edu - 804-828-4807
Don't be a phishing victim - VCU and other reputable organizations will
never use email to request that you reply with your password, social
security number or confidential personal information. For more details
visit http://infosecurity.vcu.edu/phishing.html
On Apr 15, 2014 5:16 PM, Francisco Parrilla francisco.parri...@gmail.com
wrote:

 And into the client there are some dsmc process on executing


 2014-04-15 15:55 GMT-05:00 Zoltan Forray zfor...@vcu.edu:

  That is the problem. There is no active session on the client.
 
  Zoltan Forray
  TSM Software  Hardware Administrator
  Virginia Commonwealth University
  UCC/Office of Technology Services
  zfor...@vcu.edu - 804-828-4807
  Don't be a phishing victim - VCU and other reputable organizations will
  never use email to request that you reply with your password, social
  security number or confidential personal information. For more details
  visit http://infosecurity.vcu.edu/phishing.html
  On Apr 15, 2014 4:48 PM, Francisco Parrilla 
  francisco.parri...@gmail.com
  wrote:
 
   Could you try to block the node, so those sessions don't restarting
 again
   on automatic way.
  
  
  
   2014-04-15 12:02 GMT-05:00 Zoltan Forray zfor...@vcu.edu:
  
TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1
   
Is there a way to terminate with extreme prejudice a hung restore.
   
12:58:21 PM   PROCESSOR : q restore
  Sess Restore Elapsed Node Name Filespace
   FSID
Number State   Minutes   Name
-- --- --- - ---
   --
 1,067 Active8,753 GODEL.VCU.EDU /data7
 12
-1 Restartable   1,361 GODEL.VCU.EDU /data7
 12
   
   
I have tried numerous times to cancel restore 1067 to no avail.
   
They users started the restore as another session and finished
  restoring
and want to start backing up but now it won't backup due to the hung
restore.
   
--
*Zoltan Forray*
TSM Software  Hardware Administrator
BigBro / Hobbit / Xymon Administrator
Virginia Commonwealth University
UCC/Office of Technology Services
zfor...@vcu.edu - 804-828-4807
Don't be a phishing victim - VCU and other reputable organizations
 will
never use email to request that you reply with your password, social
security number or confidential personal information. For more
 details
visit http://infosecurity.vcu.edu/phishing.html
   
  
 



Re: Can't cancel restartable restore

2014-04-15 Thread Zoltan Forray
Well, option one has long passed since its been almost two and a half days.
If it doesn't go away soon I will have to bounce the server.

Zoltan Forray
TSM Software  Hardware Administrator
Virginia Commonwealth University
UCC/Office of Technology Services
zfor...@vcu.edu - 804-828-4807
Don't be a phishing victim - VCU and other reputable organizations will
never use email to request that you reply with your password, social
security number or confidential personal information. For more details
visit http://infosecurity.vcu.edu/phishing.html
On Apr 15, 2014 5:18 PM, Skylar Thompson skyl...@u.washington.edu wrote:

 I've gotten into a similar state. Sometimes if you wait a really really
 long time (1+ day) the active restore will time out. Sometimes we have to
 cycle the TSM server to clear it out.

 On Tue, Apr 15, 2014 at 01:02:10PM -0400, Zoltan Forray wrote:
  TSM Linux server - 6.3.4.200 - client is Linux/Centos 7.1.0.1
 
  Is there a way to terminate with extreme prejudice a hung restore.
 
  12:58:21 PM   PROCESSOR : q restore
Sess Restore Elapsed Node Name Filespace
 FSID
  Number State   Minutes   Name
  -- --- --- - ---
 --
   1,067 Active8,753 GODEL.VCU.EDU /data7
  12
  -1 Restartable   1,361 GODEL.VCU.EDU /data7
  12
 
 
  I have tried numerous times to cancel restore 1067 to no avail.
 
  They users started the restore as another session and finished restoring
  and want to start backing up but now it won't backup due to the hung
  restore.
 
  --
  *Zoltan Forray*
  TSM Software  Hardware Administrator
  BigBro / Hobbit / Xymon Administrator
  Virginia Commonwealth University
  UCC/Office of Technology Services
  zfor...@vcu.edu - 804-828-4807
  Don't be a phishing victim - VCU and other reputable organizations will
  never use email to request that you reply with your password, social
  security number or confidential personal information. For more details
  visit http://infosecurity.vcu.edu/phishing.html

 --
 -- Skylar Thompson (skyl...@u.washington.edu)
 -- Genome Sciences Department, System Administrator
 -- Foege Building S046, (206)-685-7354
 -- University of Washington School of Medicine



Re: Can't cancel restartable restore

2014-04-15 Thread Richard Sims
You may not have tried 'cancel session 1067' to see if that does any good.

TSM Expiration processing is supposed to clear defunct restartable restores, 
once they are restartable and have exceeded the Restoreinterval; but 
irregularities can prevail.

Richard Sims