Hi anybody,
I am trying to Remote BLOB Storage (RBS) with the FILESTREAM provider (SharePoint Server 2010)
When I install and Configure for 1st Content Database, things are really fine.
Whereas for 2nd time, It is failing; Failing in the sense, nothing happens when I execute below code, EXCEPT for GETTING ONE MSIEXEC WINDOW!!
msiexec/qn
/i
RBS_X64.msi
REMOTEBLOBENABLE=1
FILESTREAMPROVIDERENABLE=1
DBNAME=”Content_Database_2”
DBINSTANCE=”LOCALHOST”
ADDLOCAL=EnableRBS,FilestreamRunScript
FILESTREAMSTORENAME=FilestreamProvider_2
Installing & Configuring for 1<sup>st</sup> Content Database | Installing & Configuring for 2nd Content Database |
use [Content_Database_1] if not exists (select * from sys.symmetric_keys where name = N'##MS_DatabaseMasterKey##') create master key encryption by
password = N'Admin Key Password !2#4' | use[Content_Database_2] if not exists (select * from sys.symmetric_keys where name = N'##MS_DatabaseMasterKey##') create master key encryption by
password = N'Admin Key Password !2#4' |
| |
use[Content_Database_1] if not exists (select groupname from sysfilegroups
where groupname=N'RBSFilestreamProvider1')
alter database [Content_Database_1] add filegroup
RBSFilestreamProvider1 contains filestream | use[Content_Database_2] if not exists (select groupname from sysfilegroups
where groupname=N'RBSFilestreamProvider2') alter database [Content_Database_2] add filegroup
RBSFilestreamProvider2 contains filestream |
| |
use [Content_Database_1] alter database [Content_Database_1] add file (name =
RBSFilestreamFile1, filename =
'C:\Content_Database_1_BLOB_Storage') to filegroup
RBSFilestreamProvider1 | use [Content_Database_2] alter database [Content_Database_2] add file (name =
RBSFilestreamFile2, filename =
'C:\Content_Database_2_BLOB_Storage') to filegroup
RBSFilestreamProvider2 |
| |
msiexec/qn /lvx* rbs_install_log.txt
/i RBS_X64.msi TRUSTSERVERCERTIFICATE=true
FILEGROUP=PRIMARY DBNAME="Content_Database_1"
DBINSTANCE="LOCALHOST" FILESTREAMFILEGROUP=RBSFilestreamProvider FILESTREAMSTORENAME=FilestreamProvider_1 | msiexec/qn /i
RBS_X64.msi REMOTEBLOBENABLE=1 FILESTREAMPROVIDERENABLE=1 DBNAME=”Content_Database_2” DBINSTANCE=”LOCALHOST” ADDLOCAL=EnableRBS,FilestreamRunScript FILESTREAMSTORENAME=FilestreamProvider_2 |