Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.75 KB | None | 0 0
  1. #
  2. # This section determines which DIRAC components will be installed and where
  3. #
  4. LocalInstallation
  5. {
  6. #
  7. # These are options for the installation of the DIRAC software
  8. #
  9. # DIRAC release version (this is an example, you should find out the current
  10. # production release)
  11. Release = v6r16p3
  12. # Python version of the installation
  13. PythonVersion = 27
  14. # To install the Server version of DIRAC (the default is client)
  15. InstallType = server
  16. # LCG python bindings for SEs and LFC. Specify this option only if your installation
  17. # uses those services
  18. # LcgVer = 2012-02-20
  19. # If this flag is set to yes, each DIRAC update will be installed
  20. # in a separate directory, not overriding the previous ones
  21. UseVersionsDir = yes
  22. # The directory of the DIRAC software installation
  23. TargetPath = /opt/dirac
  24. # DIRAC extra modules to be installed (Web is required if you are installing the Portal on
  25. # this server).
  26. # Only modules not defined as default to install in their projects need to be defined here:
  27. # i.e. LHCb, LHCbWeb for LHCb
  28. Externals = WebApp
  29.  
  30. #
  31. # These are options for the configuration of the installed DIRAC software
  32. # i.e., to produce the initial dirac.cfg for the server
  33. #
  34. # Give a Name to your User Community, it does not need to be the same name as in EGI,
  35. # it can be used to cover more than one VO in the grid sense
  36. # VirtualOrganization = TestVO
  37. # Site name
  38. SiteName = DIRACGEANT.cern.ch
  39. # Setup name
  40. Setup = MyDIRAC-Production
  41. # Default name of system instances
  42. InstanceName = Production
  43. # Flag to skip download of CAs, on the first Server of your installation you need to get CAs
  44. # installed by some external means
  45. SkipCADownload = yes
  46. # Flag to use the server certificates
  47. UseServerCertificate = yes
  48. # Configuration Server URL (This should point to the URL of at least one valid Configuration
  49. # Service in your installation, for the primary server it should not used )
  50. # ConfigurationServer = dips://myprimaryserver.name:9135/Configuration/Server
  51. # Configuration Name
  52. ConfigurationName = MyConfiguration
  53.  
  54. #
  55. # These options define the DIRAC components to be installed on "this" DIRAC server.
  56. #
  57. #
  58. # The next options should only be set for the primary server,
  59. # they properly initialize the configuration data
  60. #
  61. # Name of the Admin user (default: None )
  62. AdminUserName = admin
  63. # DN of the Admin user certificate (default: None )
  64. # In order the find out the DN that needs to be included in the Configuration for a given
  65. # host or user certificate the following command can be used::
  66. #
  67. # openssl x509 -noout -subject -enddate -in <certfile.pem>
  68. #
  69. AdminUserDN = /C=RU/O=RDIG/OU=users/OU=ihep.su/CN=Ivan Razumov
  70. # Email of the Admin user (default: None )
  71. AdminUserEmail = *****
  72. # Name of the Admin group (default: dirac_admin )
  73. AdminGroupName = dirac_admin
  74. # DN of the host certificate (*) (default: None )
  75. HostDN = /DC=ch/DC=cern/OU=computers/CN=diracgeant.cern.ch
  76. # Define the Configuration Server as Master for your installations
  77. ConfigurationMaster = yes
  78.  
  79. #
  80. # The following options define components to be installed
  81. #
  82. # Name of the installation host (default: the current host )
  83. # Used to build the URLs the services will publish
  84. # For a test installation you can use 127.0.0.1
  85. # Host = dirac.cern.ch
  86. Host =diracgeant.cern.ch
  87. # List of DataBases to be installed
  88. Databases = InstalledComponentsDB
  89. Databases += ResourceStatusDB
  90. # List of Services to be installed
  91. Services = Configuration/Server
  92. Services += Framework/ComponentMonitoring
  93. Services += Framework/SystemAdministrator
  94. Services += ResourceStatus/ResourceStatus
  95. # Flag determining whether the Web Portal will be installed
  96. WebPortal = yes
  97. #
  98. # The following options defined the MySQL DB connectivity
  99. #
  100. # The following option define if you want or not install the mysql that comes with DIRAC on the machine
  101. InstallMySQL = True
  102. Database
  103. {
  104. # User name used to connect the DB server
  105. User = Dirac # default value
  106. # Password for database user acess. Must be set for SystemAdministrator Service to work
  107. Password = *****
  108. # Password for root DB user. Must be set for SystemAdministrator Service to work
  109. RootPwd = *****
  110. # location of DB server. Must be set for SystemAdministrator Service to work
  111. Host = localhost
  112. # There are 2 flags for small and large installations Set either of them to True/yes when appropriated
  113. # MySQLSmallMem: Configure a MySQL with small memory requirements for testing purposes
  114. # innodb_buffer_pool_size=200MB
  115. # MySQLLargeMem: Configure a MySQL with high memory requirements for production purposes
  116. # innodb_buffer_pool_size=10000MB
  117. }
  118. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement