{ "info": { "author": "UNKNOWN", "author_email": "UNKNOWN", "bugtrack_url": null, "classifiers": [ "Framework :: Buildout", "Framework :: Zope2", "License :: OSI Approved :: Zope Public License", "Programming Language :: Python" ], "description": "Overview\n========\n\nThis recipe creates and configures a ZEO server in parts. It also installs a\ncontrol script in the bin/ directory. The name of the control script is the\nname of the part in buildout.\n\nYou can use it with a part like this::\n\n [zeo]\n recipe = plone.recipe.zeoserver\n zeo-address = 8100\n\nThis will create a control script ``bin/zeo``.\n\nYou can either start the database in foreground mode via ``bin/zeo fg`` or use\nthe built-in zdaemon process control and use the ``start/stop/restart/status``\ncommands. The foreground mode is suitable for running the process under general\nprocess control software like supervisord.\n\nNote: Windows support for this recipe is currently limited.\n\nOptions\n-------\n\nThe following options all affect the generated zeo.conf. If you want to have\nfull control over the configuration file, see the ``zeo-conf`` option in the\nadvanced options.\n\nProcess\n-------\n\nzeo-address\n Give a port for the ZEO server (either specify the port number only (with\n '127.0.0.1' as default) or you use the format ``host:port``).\n Defaults to ``8100``.\n\neffective-user\n The name of the effective user for the ZEO process. Defaults to not setting\n an effective user. This causes the process to run under the user account the\n process has been started with.\n\nsocket-name\n The filename where ZEO will write its socket file.\n Defaults to ``var/zeo.zdsock``.\n\nStorage\n-------\n\nstorage-number\n The number used to identify a storage. Defaults to ``1``.\n\nfile-storage\n The filename where the ZODB data file will be stored.\n Defaults to ``var/filestorage/Data.fs``.\n\nblob-storage\n The folder where the ZODB blob data files will be stored.\n Defaults to ``var/blobstorage``.\n\nLogging\n-------\n\nzeo-log\n The filename of the ZEO log file. Defaults to ``var/log/${partname}.log``.\n\nzeo-log-format\n Format of logfile entries. Defaults to ``%(asctime)s %(message)s``.\n\nzeo-log-custom\n A custom section for the eventlog, to be able to use another\n event logger than ``logfile``. ``zeo-log`` is still used to set the logfile\n value in the runner section.\n\nAuthentication\n--------------\n\nauthentication-database\n The filename for a authentication database. Only accounts listed in this\n database will be allowed to access the ZEO server.\n\n The format of the database file is::\n\n realm \n :\n\n Where the hash is generated via::\n\n import sha\n string = \"%s:%s:%s\" % (username, realm, password)\n sha.new(string).hexdigest()\n\nauthentication-realm\n The authentication realm. Defaults to ``ZEO``.\n\nPacking\n-------\n\npack-days\n How many days of history should the zeopack script retain. Defaults to\n one day.\n\npack-gc\n Can be set to ``false`` to disable garbage collection as part of the pack.\n Defaults to ``true``.\n\npack-keep-old\n Can be set to ``false`` to disable the creation of ``*.fs.old`` files before\n the pack is run. Defaults to ``true``.\n\npack-user\n If the ZEO server uses authentication, this is the username used by the\n zeopack script to connect to the ZEO server.\n\npack-password\n If the ZEO server uses authentication, this is the password used by the\n zeopack script to connect to the ZEO server.\n\nMonitoring\n----------\n\nmonitor-address\n The address at which the monitor server should listen. The monitor server\n provides server statistics in a simple text format.\n\nPerformance\n-----------\n\ninvalidation-queue-size\n The invalidation-queue-size used for the ZEO server. Defaults to ``100``.\n\nCustomization\n-------------\n\nzeo-conf-additional\n Give additional lines to zeo.conf. Make sure you indent any lines after\n the one with the parameter. This allows you to use generated zeo.conf file\n but add some minor additional lines to it.\n\neggs\n Set if you need to include other packages as eggs e.g. for making\n application code available on the ZEO server side for performing\n conflict resolution (through the _p_resolveConflict() handler).\n\nextra-paths\n Specify additional directories which should be available to the control\n scripts. Use this only for non-eggified Python packages.\n\nzeo-conf\n A relative or absolute path to a zeo.conf file. This lets you provide a\n completely custom configuration file and ignore most of the options in\n this recipe.\n\nrepozo\n The path to the repozo.py backup script. A wrapper for this will be\n generated in bin/repozo, which sets up the appropriate environment for\n running this. Defaults to using the repozo script from the ZODB3 egg.\n Set this to an empty value if you do not want this script to be generated.\n\nzeopack\n The path to the zeopack.py backup script. A wrapper for this will be\n generated in bin/zeopack, which sets up the appropriate environment to\n run this. Defaults to using the zeopack script from the ZODB3 egg.\n Set this option to an empty value if you do not want this script to be\n generated.\n\nrelative-paths\n Set this to `true` to make the generated scripts use relative\n paths. You can also enable this in the `[buildout]` section.\n\n\nUsage\n-----\n\nzeopack\n A zeopack script will be generated for you in the buildout bin directory.\n If you'd like to use this script to pack a different mount point, you'll\n need to specify `-S mount_name`. You can also specify a `-B` option to not\n use the default blob directory.\n\n\nReporting bugs or asking questions\n----------------------------------\n\nWe have a shared bugtracker and help desk on Launchpad:\nhttps://bugs.launchpad.net/collective.buildout/\n\nChangelog\n=========\n\n2.0.4 (2011-11-15)\n------------------\n\n- Add files missing from sdist\n\n\n2.0.3 (2011-11-14)\n------------------\n\n- Fix a versioning mishap\n\n\n2.0.2 (2011-11-14)\n------------------\n\n- Add a list of imports for monkey patch injection:\n\n [zeoserver]\n eggs = isotoma.zope.groupreadableblobstorage\n import = isotoma.zope.groupreadableblobstorage\n\n\n2.0.0 - 2011-03-08\n------------------\n\n- Friendly fork to patch sys.path behaviour in our deployments.\n\n1.2.0 - 2010-10-18\n------------------\n\n- Only require a ``nt_svcutils`` distribution on Windows.\n [hannosch]\n\n1.1.1 - 2010-07-20\n------------------\n\n- Fixed -B option being required for along with the -S option.\n [vangheem]\n\n- Added documentation for using the zeopack script with mount points.\n [vangheem]\n\n1.1 - 2010-07-18\n----------------\n\n- No changes.\n\n1.1b1 - 2010-07-02\n------------------\n\n- Implemented Windows support and support for running ZEO as a Windows service.\n We depend on the new nt_svcutils distribution to provide this support.\n [baijum, hannosch]\n\n- The FileStorage component of ZODB 3.9 now supports blobs natively,\n so no need to use BlobStorage proxy for it anymore.\n [baijum, hannosch]\n\n- Added ``extra-paths`` option to add additional modules paths.\n [baijum]\n\n- Fixed ZEO packing of mounted storage.\n [vangheem]\n\n- Added -B option to the ``zeopack`` script to specify the location of the\n blob storage.\n [vangheem]\n\n1.1a2 - 2010-05-10\n------------------\n\n- Added support for the ``pack-keep-old`` option introduced in ZODB 3.9.\n [hannosch]\n\n1.1a1 - 2010-04-27\n------------------\n\n- Added support for the ``pack-gc`` option introduced in ZODB 3.9.\n [hannosch]\n\n- Always create a blob-storage by default.\n [hannosch]\n\n- Require at least ZODB 3.8 and simplify the ``zeopack`` script.\n [hannosch]\n\n- Various documentation updates.\n [hannosch]\n\n- Use the new ``zope.mkzeoinstance`` package, which makes the recipe compatible\n with ZODB 3.9.5+.\n [hannosch]\n\n- Removed unmaintained win32 specific tests and old zope2 test mockups.\n [hannosch]\n\n- Removed testing dependency on ``zope.testing`` and refactored testing setup.\n [hannosch]\n\n1.0 - 2010-04-05\n----------------\n\n- Depend on and always include ZopeUndo. While it's only needed for Zope 2, the\n distribution is so tiny, it doesn't hurt for non-Zope 2 ZEO servers.\n [hannosch]\n\n1.0b1 - 2010-03-19\n------------------\n\n- Fixed issue with egg paths for the zeopack script.\n [davisagli]\n\n- Added support for setting ZEO log level.\n [baijum]\n\n1.0a2 - 2009-12-03\n------------------\n\n* Set up logging configuration that is needed by ZODB.blob.\n [davisagli]\n\n* Set shared_blob_dir to True when initializing the ClientStorage used\n by the pack script, since it will be using the same blob directory\n as the ZEO server.\n [davisagli]\n\n1.0a1 - 2009-12-03\n------------------\n\n* Updated and cleaned up after renaming.\n [hannosch]\n\n* Added compatibility with eggified Zopes (Zope >= 2.12).\n [davisagli]\n\n* Initial implementation based on plone.recipe.zope2zeoserver.\n [plone]", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/isotoma.recipe.zeo", "keywords": "zope2 zeo zodb buildout", "license": "ZPL 2.1", "maintainer": null, "maintainer_email": null, "name": "isotoma.recipe.zeo", "package_url": "https://pypi.org/project/isotoma.recipe.zeo/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/isotoma.recipe.zeo/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://pypi.python.org/pypi/isotoma.recipe.zeo" }, "release_url": "https://pypi.org/project/isotoma.recipe.zeo/2.0.4/", "requires_dist": null, "requires_python": null, "summary": "Custom version of plone.recipe.zeoserver", "version": "2.0.4" }, "last_serial": 793493, "releases": { "1.2.0": [ { "comment_text": "", "digests": { "md5": "46b8e336d8df79f4d15047d866766116", "sha256": "9a25943f8f0e2d58306e794d1654c7b90e280acf3b455fd22c5fb091aaf87f0e" }, "downloads": -1, "filename": "isotoma.recipe.zeo-1.2.0.tar.gz", "has_sig": false, "md5_digest": "46b8e336d8df79f4d15047d866766116", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12457, "upload_time": "2011-03-08T14:01:36", "url": "https://files.pythonhosted.org/packages/4d/92/83706644fae05fd9d646dca1fabd1a9ddc1d86e433399168d6b02cf4d187/isotoma.recipe.zeo-1.2.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "e6651c4f2c75239f6a55a570ad10974d", "sha256": "5737e9765de623f2075f40e7b40b9239aef2106928c3471bf79f08dfbb767c7e" }, "downloads": -1, "filename": "isotoma.recipe.zeo-2.0.0.tar.gz", "has_sig": false, "md5_digest": "e6651c4f2c75239f6a55a570ad10974d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12827, "upload_time": "2011-03-08T14:41:01", "url": "https://files.pythonhosted.org/packages/64/8e/d05cbc4f35c0e094248ae59d86664b1bd384bcf4f12ff7239413b7170754/isotoma.recipe.zeo-2.0.0.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "c4a5691c707b0d36180cceadf73ab2c5", "sha256": "6f2dd3f93dcb2d1f393dbc30be03b5f89d444d54da68c90a8369c694e5ce3f81" }, "downloads": -1, "filename": "isotoma.recipe.zeo-2.0.2.zip", "has_sig": false, "md5_digest": "c4a5691c707b0d36180cceadf73ab2c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20288, "upload_time": "2011-11-14T18:31:00", "url": "https://files.pythonhosted.org/packages/c6/48/5e3e3eca79375d752a7d36bf6e7f89694666ce810f8610f726378eb516dd/isotoma.recipe.zeo-2.0.2.zip" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "671c030608a7ff2d4eeb4e7a034cbb79", "sha256": "5d20f1bc668be7c73afdb3fba5e7f829374a91f84a0b8f6784177b13bd30a6b8" }, "downloads": -1, "filename": "isotoma.recipe.zeo-2.0.3.zip", "has_sig": false, "md5_digest": "671c030608a7ff2d4eeb4e7a034cbb79", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20555, "upload_time": "2011-11-14T22:54:41", "url": "https://files.pythonhosted.org/packages/9f/56/ca02195e49cb96cd2b22885108ccfbe985f96611340b6e967e03316420a9/isotoma.recipe.zeo-2.0.3.zip" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "cfc0998bbfbd718c3a87781af9d8e6c8", "sha256": "c91f96c46cef4047c83f13fa51391c411057badfcd418f94ed3ff838dadd4f25" }, "downloads": -1, "filename": "isotoma.recipe.zeo-2.0.4.zip", "has_sig": false, "md5_digest": "cfc0998bbfbd718c3a87781af9d8e6c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22181, "upload_time": "2011-11-15T12:46:06", "url": "https://files.pythonhosted.org/packages/2c/2c/bdbc80b3c5fbb8a5631357c88098b23c688130e31c3d34f309e549cbd397/isotoma.recipe.zeo-2.0.4.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cfc0998bbfbd718c3a87781af9d8e6c8", "sha256": "c91f96c46cef4047c83f13fa51391c411057badfcd418f94ed3ff838dadd4f25" }, "downloads": -1, "filename": "isotoma.recipe.zeo-2.0.4.zip", "has_sig": false, "md5_digest": "cfc0998bbfbd718c3a87781af9d8e6c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22181, "upload_time": "2011-11-15T12:46:06", "url": "https://files.pythonhosted.org/packages/2c/2c/bdbc80b3c5fbb8a5631357c88098b23c688130e31c3d34f309e549cbd397/isotoma.recipe.zeo-2.0.4.zip" } ] }