0

当使用统一安装程序安装 plone 4.3 时,它说它没有找到 gid,即使该组存在。

root@adrian:/home/Plone-4.3-UnifiedInstaller# ./install.sh --password=xxx --target=/home/Plone-4.3 --user=admin standalone

Testing /usr/bin/python2.7 for Zope/Plone requirements....
/usr/bin/python2.7 looks OK. We'll try to use it.

Root install method chosen. Will install for use by users:
  ZEO & Client Daemons:      admin
  Code Resources & buildout: plone_buildout

Detailed installation log being written to /home/Plone-4.3-UnifiedInstaller/install.log
Installing Plone 4.3 at /home/Plone-4.3

Using useradd and groupadd to create users and groups.
User 'admin' already exists. No need to create it.
id for admin returned
uid=5006(admin) gid=5007(admin) groups=5007(admin)
Expected to find uid for admin and gid for plone_group but did not.
Please use your system tools to create/edit users and groups, then try again.

当我尝试按照建议做时:

root@adrian:/home# groupadd plone_group
groupadd: group 'plone_group' already exists
4

1 回答 1

1

安装程序希望守护程序用户将 plone_group 作为其默认组。您正在使用的预先存在的用户已经有自己的默认组。

作为一种解决方法,请尝试让安装程序创建一个新的守护程序用户(或让它使用 plone_daemon)。

并且,请在http://dev.plone.org将其作为 bug 票提交。包括有关您的操作系统和版本的详细信息。将组件(用于票证)设置为“安装程序”。它会得到及时的关注。

于 2013-04-22T15:04:37.433 回答