windows - How can I configure Plastic SCM Cloud to store Jet databases on another drive? -
by default, plastic scm puts local repositories under program files. in situation c drive small ssd, , there secondary (let's assume d) drive larger, need in order move existing repositories and/or establish new repositories on d drive?
you'll need create (if don't have yet) "jet.conf" file inside plastic scm server directory (typically "c:\program files\plasticscm5\server" on windows) , set "basepath" value path location want store jet database files. let me give example:
jet.conf:
basepath=d:\jetdbs
you can configure following parameters:
**prefix**: prefix added db files **suffix**: suffix added db files **maxcachedtrees**: max value of trees (changeset strucure) cached in ram. **datafilesize**: used split blob file (where revisions content stored) in pieces based on size set here (gb).
(detailed info can found @ official doc: https://www.plasticscm.com/documentation/administration/plastic-scm-version-control-administrator-guide.shtml#configureplasticscmwithjet)
Comments
Post a Comment