Cuba Studio project load error - user limit of inotify watches reached

Hi.

I unable to load project in Cuba Studio
Screenshot_20180413_075824

My repository settings
Screenshot_20180413_075859

I changed gradle setting to:

maven {
    url 'https://dl.bintray.com/cuba-platform/main'

}
maven {
    url 'https://cuba-platform.bintray.com/premium'
    credentials {
        username(rootProject.hasProperty('premiumRepoUser') ? rootProject['premiumRepoUser'] : System.getenv('CUBA_PREMIUM_USER'))
        password(rootProject.hasProperty('premiumRepoPass') ? rootProject['premiumRepoPass'] : System.getenv('CUBA_PREMIUM_PASSWORD'))
    }
}

but this did not help.

Regards
Marcin

1 Like

Hi,

can you please show the logs, if there was made some in cuba?

Regards

Hi,

It seems that you should increase inotify limits in your Linux OS: tail - User limit of inotify watches reached on Ubuntu 16.04 - Ask Ubuntu

CUBA Studio watches file changes and depends on inotify subsystem.

1 Like

Thank you.

I changed limit to 32768 and this did help.

Regard
Marcin

1 Like