0

Not able to create folders in integration services catalog SSIS 2012

Error:

Error Message

Sandeep Pulikonda
  • 774
  • 3
  • 13
  • 26

2 Answers2

3

Yes, the restore is the issue.

When you create your SSISDB, you specify a password which is used to create your database master key. You have restored the database to a different server and you need to get the keys in alignment on the restored machine

BOL covers this in detail: Backup, Restore, and Move the SSIS Catalog

   -- If you know what the password that was used when the catalog was created
   open master key 
   decryption by password = 'LS1Setup!' --'Password used when creating SSISDB'
   Alter Master Key 
   Add encryption by Service Master Key

Otherwise, you're going to need to use a hammer.

   Restore master key from file = 'c:\temp\RCTestInstKey'
   Decryption by password = 'LS2Setup!' -- 'Password used to encrypt the master key during SSISDB backup'
   Encryption by password = 'LS3Setup!' -- 'New Password'
   Force
billinkc
  • 59,250
  • 9
  • 102
  • 159
0

Now i can create folder in Catalogs

Resolve:

Check the login :##MS_SSISServerCleanupJobLogin##

enter image description here

that needs to be enabled Database RoleMembership for: SSISDB as public

enter image description here

Sandeep Pulikonda
  • 774
  • 3
  • 13
  • 26