plone.recipe.zeoserver


Nameplone.recipe.zeoserver JSON
Version 3.0.1 PyPI version JSON
download
home_pagehttps://github.com/plone/plone.recipe.zeoserver
SummaryZC Buildout recipe for installing a ZEO server
upload_time2023-10-06 22:32:29
maintainer
docs_urlNone
authorHanno Schlichting
requires_python>=3.8
licenseZPL 2.1
keywords zope2 zeo zodb buildout
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Overview
========

This recipe creates and configures a ZEO server in parts. It also installs a
control script in the bin/ directory. The name of the control script is the
name of the part in buildout.

You can use it with a part like this::

  [zeo]
  recipe = plone.recipe.zeoserver
  zeo-address = 8100

This will create a control script ``bin/zeo``.

You can either start the database in foreground mode via ``bin/zeo fg`` or use
the built-in zdaemon process control and use the ``start/stop/restart/status``
commands. The foreground mode is suitable for running the process under general
process control software like supervisord.

Note: Windows support for this recipe is currently limited.

Options
-------

The following options all affect the generated zeo.conf. If you want to have
full control over the configuration file, see the ``zeo-conf`` option in the
advanced options.

Process
-------

zeo-address
  Give a port for the ZEO server (either specify the port number only (with
  '127.0.0.1' as default) or you use the format ``host:port``).
  Defaults to ``8100``.

effective-user
  The name of the effective user for the ZEO process. Defaults to not setting
  an effective user. This causes the process to run under the user account the
  process has been started with.

socket-name
  The filename where ZEO will write its socket file.
  Defaults to ``var/zeo.zdsock``.

Storage
-------

storage-number
  The number used to identify a storage. Defaults to ``1``.

file-storage
  The filename where the ZODB data file will be stored.
  Defaults to ``var/filestorage/Data.fs``.

blob-storage
  The folder where the ZODB blob data files will be stored.
  Defaults to ``var/blobstorage``.

Logging
-------

zeo-log
  The filename of the ZEO log file. Defaults to ``var/log/${partname}.log``.

zeo-log-level
  Control the logging level in the eventlog. Defaults to ``info``.

zeo-log-max-size
  Maximum size of ZEO log file. Enables log rotation.

zeo-log-old-files
  Number of previous log files to retain when log rotation is enabled. Defaults to ``1``.

zeo-log-format
  Format of logfile entries. Defaults to ``%(asctime)s %(message)s``.

zeo-log-custom
  A custom section for the eventlog, to be able to use another
  event logger than ``logfile``. ``zeo-log`` is still used to set the logfile
  value in the runner section.

Authentication
--------------

authentication-database
  The filename for a authentication database. Only accounts listed in this
  database will be allowed to access the ZEO server.

  The format of the database file is::

    realm <realm>
    <username>:<hash>

  Where the hash is generated via::

    import sha
    string = "%s:%s:%s" % (username, realm, password)
    sha.new(string).hexdigest()

authentication-realm
  The authentication realm. Defaults to ``ZEO``.

Packing
-------

pack-days
  How many days of history should the zeopack script retain. Defaults to
  one day.

pack-gc
  Can be set to ``false`` to disable garbage collection as part of the pack.
  Defaults to ``true``.

pack-keep-old
  Can be set to ``false`` to disable the creation of ``*.fs.old`` files before
  the pack is run. Defaults to ``true``.

pack-user
  If the ZEO server uses authentication, this is the username used by the
  zeopack script to connect to the ZEO server.

pack-password
  If the ZEO server uses authentication, this is the password used by the
  zeopack script to connect to the ZEO server.


ZRS
---

First off, you'll need to specify the recipe to install zc.zrs. To do so,
just slightly change the way the recipe option is specified in your zeoserver
buildout part::

    [zeoserver]
    recipe = plone.recipe.zeoserver[zrs]
    ...


replicate-to
    host:port combination this ZRS should listen to as a primary.
    ZRS Secondaries connect here to get replication data.

replicate-from
    host:port combination of a ZRS primary this ZRS should connect to as a secondary.
    This ZRS replicates the data it gets from the primary.

keep-alive-delay
    In some network configurations, TCP connections are broken after extended
    periods of inactivity. This may even be done in a way that a client doesn't
    detect the disconnection. To prevent this, you can use the keep-alive-delay
    option to cause the secondary storage to send periodic no-operation
    messages to the server.


Monitoring
----------

monitor-address
  The address at which the monitor server should listen. The monitor server
  provides server statistics in a simple text format.

Performance
-----------

invalidation-queue-size
  The invalidation-queue-size used for the ZEO server. Defaults to ``100``.

Customization
-------------

var
  Used to configure the base directory for all things going into var.
  Defaults to ${buildout:directory}/var.

zeo-conf-additional
  Give additional lines to zeo.conf. Make sure you indent any lines after
  the one with the parameter. This allows you to use generated zeo.conf file
  but add some minor additional lines to it.

eggs
  Set if you need to include other packages as eggs e.g. for making
  application code available on the ZEO server side for performing
  conflict resolution (through the _p_resolveConflict() handler).

extra-paths
  Specify additional directories which should be available to the control
  scripts. Use this only for non-eggified Python packages.

zeo-conf
  A relative or absolute path to a zeo.conf file. This lets you provide a
  completely custom configuration file and ignore most of the options in
  this recipe.

repozo
  The path to the repozo.py backup script. A wrapper for this will be
  generated in bin/repozo, which sets up the appropriate environment for
  running this. Defaults to using the repozo script from the ZODB egg.
  Set this to an empty value if you do not want this script to be generated.

repozo-script-name
  The name of the wrapper script to generate in `bin/`. Defaults to `repozo`.
  Change this option if you have more than one instance of this recipe in
  the one buildout to create separate scripts and avoid any one script being
  overwritten.

zeopack
  The path to the zeopack.py backup script. A wrapper for this will be
  generated in bin/zeopack (unless you change `zeopack-script-name`), which
  sets up the appropriate environment to run this. Defaults to using the zeopack
  script from the ZODB egg.  Set this option to an empty value if you do not
  want this script to be generated.

zeopack-script-name
  The name of the wrapper script to generate in `bin/`. Defaults to `zeopack`.
  Change this option if you have more than one instance of this recipe in
  the one buildout to create separate scripts and avoid any one script being
  overwritten.

relative-paths
  Set this to `true` to make the generated scripts use relative
  paths. You can also enable this in the `[buildout]` section.

read-only
  Set zeoserver to run in read-only mode


Usage
-----

zeopack
  A zeopack script will be generated for you in the buildout bin directory,
  unless you change the `zeopack-script-name` option, in which case the script
  will be called the name you specify. If you'd like to use this script to pack
  a different mount point, you'll need to specify `-S mount_name`. You can also
  specify a `-B` option to not use the default blob directory.
  You may override the pack-days by adding "-D #" to the command line where
  "#" is the number of days to keep.


Version Information
-------------------

- 3.x -> Plone 6, Zope 5, Python 3.8+
- 2.x -> Plone 5, Zope 4, Python 2.7


Reporting bugs or asking questions
----------------------------------

We have a bugtracker and help desk on Github:
https://github.com/plone/plone.recipe.zeoserver/issues

Changelog
=========

.. You should *NOT* be adding new change log entries to this file.
   You should create a file in the news directory instead.
   For helpful instructions, please see:
   https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst

.. towncrier release notes start

3.0.1 (2023-10-07)
------------------

Internal:


- Update configuration files.
  [plone devs] (cfffba8c)


3.0.0 (2023-05-09)
------------------

Breaking changes:


- Update Codebase to python 3.8+.
  Update required version ``zope.mkzeoinstance = 5.1.1``.
  [petschki] (#45)


Bug fixes:


- Fix lost dependencies when defining additional ``eggs`` in buildout part.
  [petschki] (#45)


2.0.3 (2020-08-14)
------------------

Bug fixes:


- Removing ZODB3_HOME variable from runzeo.bat and zeoservice.py.in files, Fix for windows machine (#41)
- fix for "ValueError: Attempted relative import in non-package" - In windows build (#42)


2.0.2 (2020-04-21)
------------------

Bug fixes:


- Minor packaging updates. (#1)


2.0.1 (2019-02-08)
------------------

Bug fixes:


- Python 3 compatibility for generated bin/zeopack script [ajung] (#36)


2.0.0 (2018-12-03)
------------------

Breaking changes:

- Drop support for ``ZODB3`` but require ``ZODB >= 5``.

New features:

- Add support for Python 3.6 and 3.7.


1.4.2 (2018-06-04)
------------------

Bug fixes:

- Move Recipe from __init__.py to a new module to get rid of the dependency on
  zc.recipe.egg in control scripts
  [tschorr]

1.4.1 (2018-02-05)
------------------

Bug fixes:

- Fixed Travis tests by installing the ``hyperlink`` package.  [maurits]

- Fixed zeopack script for ZEO >= 5 (backport from original ZEO's script) [mamico]


1.4.0 (2017-06-16)
------------------

New features:

- Requires zope.mkzeoistance > 4.0 in order to work cleanly with latest ZODB.
  [jensens]

Bug fixes:

- Cleanup: utf8 headers, isort, pep8.
  [jensens]


1.3.1 (2017-04-08)
------------------

Bug fixes:

- Fix tests to run with current Twisted version.


1.3 (2017-02-15)
----------------

New features:

- Add support for log rotation.
  [hvelarde]

Bug fixes:

- Typo in documentation. [ale-rt]


1.2.9 (2016-05-26)
------------------

Fixes:

- Updated documentation.  [mamico, gforcada]


1.2.8 (2015-04-18)
------------------

- Add default storage number in zeopack script
  [mamico]


1.2.7 (2015-01-05)
------------------

- Postpone computation of working set until recipe is ran
  [gotcha]

- Add support for initialization in main script.
  [mamico]

- Add support for Pip-installed Buildout
  [aclark]

- Add "-D" argument to zopepack options to allow override of pack days.
  [smcmahon]


1.2.6 (2013-06-04)
------------------

- add support for setting zeoserver as read only
  [vangheem]

- Add integration with ZRS
  [vangheem]


1.2.5 (2013-05-23)
------------------

- Nothing changed yet.


1.2.4 (2013-04-06)
------------------

- Adding ability to control output script name for repozo. Use the
  ``repozo-script-name`` option to change the script name.
  [do3cc]


1.2.3 (2012-10-03)
------------------

- Adding ability to control output script name for zeopack. Use the
  ``zeopack-script-name`` option to change the script name.
  [davidjb]

- Fix zeopack connection handling. The previous fix to abort after a failed
  connection attempt only worked by chance and caused zeopack to exit before
  the packing finished. Now failed connections are correctly detected and
  zeopack waits until the packing is finished.
  [gaudenz]

1.2.2 (2011-11-24)
------------------

- Fix custom zeo.conf support under windows.
  [rossp]


1.2.1 - 2011-09-12
------------------

- When the zeoserver is not running, the zeopack script cannot do
  anything.  So when zeopack cannot connect, it now quits with an
  error message.  Formerly it would wait forever.
  [maurits]

- Added 'var' option like it is in plone.recipe.zope2instance.
  [garbas]

1.2.0 - 2010-10-18
------------------

- Only require a ``nt_svcutils`` distribution on Windows.
  [hannosch]

1.1.1 - 2010-07-20
------------------

- Fixed -B option being required for along with the -S option.
  [vangheem]

- Added documentation for using the zeopack script with mount points.
  [vangheem]

1.1 - 2010-07-18
----------------

- No changes.

1.1b1 - 2010-07-02
------------------

- Implemented Windows support and support for running ZEO as a Windows service.
  We depend on the new nt_svcutils distribution to provide this support.
  [baijum, hannosch]

- The FileStorage component of ZODB 3.9 now supports blobs natively,
  so no need to use BlobStorage proxy for it anymore.
  [baijum, hannosch]

- Added ``extra-paths`` option to add additional modules paths.
  [baijum]

- Fixed ZEO packing of mounted storage.
  [vangheem]

- Added -B option to the ``zeopack`` script to specify the location of the
  blob storage.
  [vangheem]

1.1a2 - 2010-05-10
------------------

- Added support for the ``pack-keep-old`` option introduced in ZODB 3.9.
  [hannosch]

1.1a1 - 2010-04-27
------------------

- Added support for the ``pack-gc`` option introduced in ZODB 3.9.
  [hannosch]

- Always create a blob-storage by default.
  [hannosch]

- Require at least ZODB 3.8 and simplify the ``zeopack`` script.
  [hannosch]

- Various documentation updates.
  [hannosch]

- Use the new ``zope.mkzeoinstance`` package, which makes the recipe compatible
  with ZODB 3.9.5+.
  [hannosch]

- Removed unmaintained win32 specific tests and old zope2 test mockups.
  [hannosch]

- Removed testing dependency on ``zope.testing`` and refactored testing setup.
  [hannosch]

1.0 - 2010-04-05
----------------

- Depend on and always include ZopeUndo. While it's only needed for Zope 2, the
  distribution is so tiny, it doesn't hurt for non-Zope 2 ZEO servers.
  [hannosch]

1.0b1 - 2010-03-19
------------------

- Fixed issue with egg paths for the zeopack script.
  [davisagli]

- Added support for setting ZEO log level.
  [baijum]

1.0a2 - 2009-12-03
------------------

* Set up logging configuration that is needed by ZODB.blob.
  [davisagli]

* Set shared_blob_dir to True when initializing the ClientStorage used
  by the pack script, since it will be using the same blob directory
  as the ZEO server.
  [davisagli]

1.0a1 - 2009-12-03
------------------

* Updated and cleaned up after renaming.
  [hannosch]

* Added compatibility with eggified Zopes (Zope >= 2.12).
  [davisagli]

* Initial implementation based on plone.recipe.zope2zeoserver.
  [plone]

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/plone/plone.recipe.zeoserver",
    "name": "plone.recipe.zeoserver",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "zope2 zeo zodb buildout",
    "author": "Hanno Schlichting",
    "author_email": "hannosch@plone.org",
    "download_url": "https://files.pythonhosted.org/packages/c1/6f/9c08f51b6acebbe470ab05dffeec4c73fec9fa7ef235fc0cb91f77d9b444/plone.recipe.zeoserver-3.0.1.tar.gz",
    "platform": null,
    "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-level\n  Control the logging level in the eventlog. Defaults to ``info``.\n\nzeo-log-max-size\n  Maximum size of ZEO log file. Enables log rotation.\n\nzeo-log-old-files\n  Number of previous log files to retain when log rotation is enabled. Defaults to ``1``.\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 <realm>\n    <username>:<hash>\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\n\nZRS\n---\n\nFirst off, you'll need to specify the recipe to install zc.zrs. To do so,\njust slightly change the way the recipe option is specified in your zeoserver\nbuildout part::\n\n    [zeoserver]\n    recipe = plone.recipe.zeoserver[zrs]\n    ...\n\n\nreplicate-to\n    host:port combination this ZRS should listen to as a primary.\n    ZRS Secondaries connect here to get replication data.\n\nreplicate-from\n    host:port combination of a ZRS primary this ZRS should connect to as a secondary.\n    This ZRS replicates the data it gets from the primary.\n\nkeep-alive-delay\n    In some network configurations, TCP connections are broken after extended\n    periods of inactivity. This may even be done in a way that a client doesn't\n    detect the disconnection. To prevent this, you can use the keep-alive-delay\n    option to cause the secondary storage to send periodic no-operation\n    messages to the server.\n\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\nvar\n  Used to configure the base directory for all things going into var.\n  Defaults to ${buildout:directory}/var.\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 ZODB egg.\n  Set this to an empty value if you do not want this script to be generated.\n\nrepozo-script-name\n  The name of the wrapper script to generate in `bin/`. Defaults to `repozo`.\n  Change this option if you have more than one instance of this recipe in\n  the one buildout to create separate scripts and avoid any one script being\n  overwritten.\n\nzeopack\n  The path to the zeopack.py backup script. A wrapper for this will be\n  generated in bin/zeopack (unless you change `zeopack-script-name`), which\n  sets up the appropriate environment to run this. Defaults to using the zeopack\n  script from the ZODB egg.  Set this option to an empty value if you do not\n  want this script to be generated.\n\nzeopack-script-name\n  The name of the wrapper script to generate in `bin/`. Defaults to `zeopack`.\n  Change this option if you have more than one instance of this recipe in\n  the one buildout to create separate scripts and avoid any one script being\n  overwritten.\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\nread-only\n  Set zeoserver to run in read-only mode\n\n\nUsage\n-----\n\nzeopack\n  A zeopack script will be generated for you in the buildout bin directory,\n  unless you change the `zeopack-script-name` option, in which case the script\n  will be called the name you specify. If you'd like to use this script to pack\n  a different mount point, you'll need to specify `-S mount_name`. You can also\n  specify a `-B` option to not use the default blob directory.\n  You may override the pack-days by adding \"-D #\" to the command line where\n  \"#\" is the number of days to keep.\n\n\nVersion Information\n-------------------\n\n- 3.x -> Plone 6, Zope 5, Python 3.8+\n- 2.x -> Plone 5, Zope 4, Python 2.7\n\n\nReporting bugs or asking questions\n----------------------------------\n\nWe have a bugtracker and help desk on Github:\nhttps://github.com/plone/plone.recipe.zeoserver/issues\n\nChangelog\n=========\n\n.. You should *NOT* be adding new change log entries to this file.\n   You should create a file in the news directory instead.\n   For helpful instructions, please see:\n   https://github.com/plone/plone.releaser/blob/master/ADD-A-NEWS-ITEM.rst\n\n.. towncrier release notes start\n\n3.0.1 (2023-10-07)\n------------------\n\nInternal:\n\n\n- Update configuration files.\n  [plone devs] (cfffba8c)\n\n\n3.0.0 (2023-05-09)\n------------------\n\nBreaking changes:\n\n\n- Update Codebase to python 3.8+.\n  Update required version ``zope.mkzeoinstance = 5.1.1``.\n  [petschki] (#45)\n\n\nBug fixes:\n\n\n- Fix lost dependencies when defining additional ``eggs`` in buildout part.\n  [petschki] (#45)\n\n\n2.0.3 (2020-08-14)\n------------------\n\nBug fixes:\n\n\n- Removing ZODB3_HOME variable from runzeo.bat and zeoservice.py.in files, Fix for windows machine (#41)\n- fix for \"ValueError: Attempted relative import in non-package\" - In windows build (#42)\n\n\n2.0.2 (2020-04-21)\n------------------\n\nBug fixes:\n\n\n- Minor packaging updates. (#1)\n\n\n2.0.1 (2019-02-08)\n------------------\n\nBug fixes:\n\n\n- Python 3 compatibility for generated bin/zeopack script [ajung] (#36)\n\n\n2.0.0 (2018-12-03)\n------------------\n\nBreaking changes:\n\n- Drop support for ``ZODB3`` but require ``ZODB >= 5``.\n\nNew features:\n\n- Add support for Python 3.6 and 3.7.\n\n\n1.4.2 (2018-06-04)\n------------------\n\nBug fixes:\n\n- Move Recipe from __init__.py to a new module to get rid of the dependency on\n  zc.recipe.egg in control scripts\n  [tschorr]\n\n1.4.1 (2018-02-05)\n------------------\n\nBug fixes:\n\n- Fixed Travis tests by installing the ``hyperlink`` package.  [maurits]\n\n- Fixed zeopack script for ZEO >= 5 (backport from original ZEO's script) [mamico]\n\n\n1.4.0 (2017-06-16)\n------------------\n\nNew features:\n\n- Requires zope.mkzeoistance > 4.0 in order to work cleanly with latest ZODB.\n  [jensens]\n\nBug fixes:\n\n- Cleanup: utf8 headers, isort, pep8.\n  [jensens]\n\n\n1.3.1 (2017-04-08)\n------------------\n\nBug fixes:\n\n- Fix tests to run with current Twisted version.\n\n\n1.3 (2017-02-15)\n----------------\n\nNew features:\n\n- Add support for log rotation.\n  [hvelarde]\n\nBug fixes:\n\n- Typo in documentation. [ale-rt]\n\n\n1.2.9 (2016-05-26)\n------------------\n\nFixes:\n\n- Updated documentation.  [mamico, gforcada]\n\n\n1.2.8 (2015-04-18)\n------------------\n\n- Add default storage number in zeopack script\n  [mamico]\n\n\n1.2.7 (2015-01-05)\n------------------\n\n- Postpone computation of working set until recipe is ran\n  [gotcha]\n\n- Add support for initialization in main script.\n  [mamico]\n\n- Add support for Pip-installed Buildout\n  [aclark]\n\n- Add \"-D\" argument to zopepack options to allow override of pack days.\n  [smcmahon]\n\n\n1.2.6 (2013-06-04)\n------------------\n\n- add support for setting zeoserver as read only\n  [vangheem]\n\n- Add integration with ZRS\n  [vangheem]\n\n\n1.2.5 (2013-05-23)\n------------------\n\n- Nothing changed yet.\n\n\n1.2.4 (2013-04-06)\n------------------\n\n- Adding ability to control output script name for repozo. Use the\n  ``repozo-script-name`` option to change the script name.\n  [do3cc]\n\n\n1.2.3 (2012-10-03)\n------------------\n\n- Adding ability to control output script name for zeopack. Use the\n  ``zeopack-script-name`` option to change the script name.\n  [davidjb]\n\n- Fix zeopack connection handling. The previous fix to abort after a failed\n  connection attempt only worked by chance and caused zeopack to exit before\n  the packing finished. Now failed connections are correctly detected and\n  zeopack waits until the packing is finished.\n  [gaudenz]\n\n1.2.2 (2011-11-24)\n------------------\n\n- Fix custom zeo.conf support under windows.\n  [rossp]\n\n\n1.2.1 - 2011-09-12\n------------------\n\n- When the zeoserver is not running, the zeopack script cannot do\n  anything.  So when zeopack cannot connect, it now quits with an\n  error message.  Formerly it would wait forever.\n  [maurits]\n\n- Added 'var' option like it is in plone.recipe.zope2instance.\n  [garbas]\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]\n",
    "bugtrack_url": null,
    "license": "ZPL 2.1",
    "summary": "ZC Buildout recipe for installing a ZEO server",
    "version": "3.0.1",
    "project_urls": {
        "Download": "https://pypi.org/project/plone.recipe.zeoserver",
        "Homepage": "https://github.com/plone/plone.recipe.zeoserver"
    },
    "split_keywords": [
        "zope2",
        "zeo",
        "zodb",
        "buildout"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd6a3cf50f93cb2eab99feb3dbc14d7ac3eeb66c681b186e1fd2deca057bb9dc",
                "md5": "564b932e10c1327b7be75c14f4574631",
                "sha256": "0588988356e59aeaa199a5c76fe299f0825ff7c22fa25c19195454822474805a"
            },
            "downloads": -1,
            "filename": "plone.recipe.zeoserver-3.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "564b932e10c1327b7be75c14f4574631",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 21158,
            "upload_time": "2023-10-06T22:32:27",
            "upload_time_iso_8601": "2023-10-06T22:32:27.235141Z",
            "url": "https://files.pythonhosted.org/packages/cd/6a/3cf50f93cb2eab99feb3dbc14d7ac3eeb66c681b186e1fd2deca057bb9dc/plone.recipe.zeoserver-3.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c16f9c08f51b6acebbe470ab05dffeec4c73fec9fa7ef235fc0cb91f77d9b444",
                "md5": "e96a329ce4570cd1cecdcd976b4b42c0",
                "sha256": "75080ebbc1309d49a2629409b63ed845fab7547fa1097905ba4f61e4b767b2d3"
            },
            "downloads": -1,
            "filename": "plone.recipe.zeoserver-3.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e96a329ce4570cd1cecdcd976b4b42c0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 25744,
            "upload_time": "2023-10-06T22:32:29",
            "upload_time_iso_8601": "2023-10-06T22:32:29.245027Z",
            "url": "https://files.pythonhosted.org/packages/c1/6f/9c08f51b6acebbe470ab05dffeec4c73fec9fa7ef235fc0cb91f77d9b444/plone.recipe.zeoserver-3.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-06 22:32:29",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "plone",
    "github_project": "plone.recipe.zeoserver",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "plone.recipe.zeoserver"
}
        
Elapsed time: 0.11920s