2017-09-13 39 views
1

默認情況下,Plastic SCM將本地存儲庫放在Program Files下。在C盤是一個小型SSD的情況下,並且有一個較大的次級(讓我們假設D)盤,我需要做些什麼才能將現有倉庫移到和/或在D盤上建立新的倉庫?如何配置Plastic SCM Cloud將Jet數據庫存儲在另一個驅動器上?

+0

這個問題特別針對雲版本,但是如果步驟與標準版本相同,或者某人能夠提供涵蓋_both_版本的答案,那麼我會更新這個問題的標題以反映這一點。 –

回答

1

您需要在Plastic SCM服務器目錄(通常爲Windows上的「C:\ Program Files \ PlasticSCM5 \ server」)中創建一個「jet.conf」文件(如果您還沒有)將「basepath」值設置爲要存儲jet數據庫文件的路徑位置。我給大家舉一個例子:

jet.conf:

basepath=D:\jetdbs 

您還可以配置以下額外的參數:

**prefix**: prefix to be added to the db files 
**suffix**: Suffix to be added to the db files 
**maxcachedtrees**: Max value of trees (changeset strucure) to be cached in RAM. 
**datafilesize**: Used to split the blob file (where the revisions content are stored) in pieces based on the size you set here (GB). 

(詳細信息可以在官方文檔中找到:https://www.plasticscm.com/documentation/administration/plastic-scm-version-control-administrator-guide.shtml#ConfigurePlasticSCMwithJet

相關問題