I have the following site: Plone 2.5.5, CMF-1.6.4, Zope (Zope 2.9.8-final,
python 2.4.4, linux2), Five 1.4.4, Python 2.4.4 (#1, Jun 16 2009, 12:19:17)
[GCC 4.3.2], PIL 1.1.6. I set it up initially as described in this article
http://plone.org/documentation/kb/multiple-plone-sites-per-zope-instance-using-separate-data-fs-files-for-each-one.
I modified the two zope.conf files, in /opt/Plone-2.5.5/zeocluster/
client1/etc/ and /opt/Plone-2.5.5/zeocluster/client2/etc/zope.conf to create
five separate sites. Both zope.conf  files contain:

<zodb_db main>
    # Main FileStorage database
  <zeoclient>
    server localhost:8100
    storage 1
    name zeostorage
    var $INSTANCE/var
  </zeoclient>
    mount-point /
</zodb_db>

<zodb_db temporary>
    # Temporary storage database (for sessions)
    <temporarystorage>
      name temporary storage for sessioning
    </temporarystorage>
    mount-point /temp_folder
    container-class Products.TemporaryFolder.TemporaryContainer
</zodb_db>

<zodb_db ahs_prod>
    # AHSnews production data storage
    <zeoclient>
        server localhost:8100
        storage 2
        name AHSnews_prod
        var $INSTANCE/var/ahs/prod
    </zeoclient>
    mount-point /ahs
</zodb_db>

<zodb_db ahs_dev>
    # AHSnews development data storage
    <zeoclient>
        server localhost:8100
        storage 3
        name AHSnews_dev
        var $INSTANCE/var/ahs/dev
    </zeoclient>
    mount-point /ahs_dev
</zodb_db>

<zodb_db ll>
    # AHSnews production data storage
    <zeoclient>
        server localhost:8100
        storage 4
        name ll_all
        var $INSTANCE/var/ll
    </zeoclient>
    mount-point /ll
</zodb_db>

<zodb_db heatwave>
    # AHSnews production data storage
    <zeoclient>
        server localhost:8100
        storage 5
        name club_heatwave
        var $INSTANCE/var/club
    </zeoclient>
    mount-point /club
</zodb_db>

I created the mount points in the ZMI and added the Plone sites, and
everything seemed to be working. I have been using the AHSnews sites for a
couple of years, and the Data.fs file has been growing as I would expect.  I
just started adding content to the heatwave site, and I discovered that the
main db is growing and not the heatwave database. I checked all the
permissions and they are identical. When I look on the file system, I see
that the main db has been written to, but the time stamp on the heatwave db
has not changed - still shows 2009-08-12. The index file has been updated.

My questions are:

1. What did I miss and how do I correct it?
2. How can I move the objects in main that belong to heatwave to heatwave
(same for the other databases)?
3. What does the Activity tab represent? When I store an image on the
ahs_prod site, I get object loads on the Activity tab for the main db, but
nothing for the ahs_prod db. However, when I look at the file system, I see
that the ahs_prod db file has been written to.

Thanks!
_______________________________________________
Setup mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/setup

Reply via email to