Pone 4.3 uid和gid没有找到

问题描述:

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

[email protected]:/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. 

当我尝试做的建议:

[email protected]:/home# groupadd plone_group 
groupadd: group 'plone_group' already exists 
+0

'grep plone/etc/group'说什么?我怀疑安装程序可能会假设,如果您自己没有创建它,那么您提供的用户就已经属于该组了? – 2013-04-22 06:28:10

+0

plone_group:x:5011: – 2013-04-24 03:26:01

安装程序想要守护用户具有其默认组plone_group。您正在使用的预先存在的用户已经拥有自己的默认组。

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

然后,请将其作为错误票证邮寄给http://dev.plone.org。在您的操作系统和版本中包含详细信息。将组件(对于票证)设置为“安装程序”。它会得到及时的关注。

+0

已添加票。 https://dev.plone.org/ticket/13545没有我能找到的'组件'选项。 – 2013-04-24 03:54:31

+0

我如何让它使用plone_daemon? – 2013-04-24 04:38:36

+0

只需从install.sh命令行中删除“--user = admin”即可。在任何情况下,“admin”都是一个用于进程的错误ID。 – SteveM 2013-04-24 14:41:10