cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2102
Views
0
Helpful
2
Replies

Cisco ISE Primary MNT disk repository 100% Used

Hi,

 

My Cisco ISE primary monitoring node which is 3495 hardware appliance running Cisco ISE 2.3 patch 3. it's disk repository says 100% used(in show disk output). Disk repository as in is it the local disk that is full? How do i lookup what is taking the space and how can i clean it up. 

 

Thanks a lot..

 

2 Replies 2

Alex Pfeil
Level 7
Level 7
You have to purge the database.

Please see previous thread:
https://community.cisco.com/t5/policy-and-access/free-up-space-cisco-ise/td-p/2213678

ajc
Level 7
Level 7

Another option:

 

Using CLI on that node (show running), check if you have a local repository like this:

ISENode/admin#show run

repository LocalDisk
  url disk://

ISENode/admin#

 

Check for data not being used that you can remove (on my case I have patches that are already installed so I can remove those files consuming space)

ISE/admin# show repository LocalDisk
ise-patchbundle-2.2.0.470-Patch1-205256.SPA.x86_64.tar.gz                      
ise-patchbundle-2.2.0.470-Patch2-214160.SPA.x86_64.tar.gz                      
ISE/admin#

ISE/admin# delete ?
  <WORD>  File name(use disk:/path) (Max Size - 240)

ISE/admin# delete disk://ise-patchbundle-2.2.0.470-Patch2-214160.SPA.x86_64.tar.gz
ISE/admin# show repository LocalDisk
ise-patchbundle-2.2.0.470-Patch1-205256.SPA.x86_64.tar.gz                      
ISE/admin#

 

If you do not have that local repository, you can create it and follow the steps above.