Borland®
Community
[an error occurred while processing this directive]  ENTERA DEVELOPER SUPPORT

Frequently Asked Questions

Repository will not start

Question:

Why won't the repository start for me?

Answer:

One possible cause is that the repository is readable but not
writable by the user attempting to run the process.  By default
the user who installed AppCenter will have write permission on
the repository.

For these examples assume ~appcenter is the directory where
AppCenter is installed.

Possible fixes:

Change the owner of the repository to the same user as the user
who is running it.

e.g. > chown -R <user> ~appcenter/repos

Also if possible the repository should be readable and writable
only by this same user

e.g. > find ~appcenter/repos -type f -exec chmod 600 '{}' \;
e.g. > find ~appcenter/repos -type d -exec chmod 700 '{}' \;