2013-04-22 4 views
0

통합 설치 프로그램으로 plone 4.3을 설치할 때 그룹이 존재하더라도 gid를 찾지 못했다고 표시됩니다. 폰 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'은 뭐래? 설치 프로그램에서 제공하는 사용자가 이미 그룹에 속해 있다고 가정 할 수도 있습니다. –

+0

plone_group : x : 5011 : –

답변

1

설치 프로그램은 기본 그룹에 대한 plone_group을 가지고 데몬 사용자를 원한다. 기존 사용자에게는 이미 자체 기본 그룹이 있습니다.

해결 방법 설치 관리자가 새 데몬 사용자를 만들도록하거나 plone_daemon을 사용하도록하십시오.

그리고 버그 티켓으로 http://dev.plone.org에 제출하십시오. 운영 체제 및 버전에 대한 세부 정보를 포함하십시오. 티켓의 구성 요소를 "설치 관리자"로 설정하십시오. 그것은 즉각적인주의를 끌 것입니다.

+0

항공권을 추가했습니다. https://dev.plone.org/ticket/13545 찾을 수있는 '구성 요소'옵션이 없습니다. –

+0

plone_daemon을 어떻게 사용하게합니까? –

+0

install.sh 명령 줄에서 "--user = admin"을 제거하면됩니다. "admin"은 어떤 경우에도 프로세스에 사용할 잘못된 ID입니다. – SteveM

관련 문제