Failed to start Rovo Dev CLI: The file lock 'C:\Users\myuser\.rovodev\config.yml.lock' could not be acquired.
✗ Error: failed to execute the command
help me fix it please
Updated to : v0.13.47
Welcome to Rovo Dev, Atlassian's AI coding agent.
Here are some quick tips:
• Ask Rovo Dev anything in your own words - from "explain this repository" to "add dark mode to this app".
• Use /help for more information and /exit to quit.
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Claude Sonnet 4.6 is now available in Rovo Dev! 🚀
Sonnet 4.6 is now available for all users - try it out today by running /models
────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Working in C:\
✔ Using model: auto
✔ Started 3 MCP servers
Working !
Same here, deleting config.yaml.lock not helping
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
same issue. This happened after recent rovodev cli update (v0.13.46). I have updated acli to latest version(1.3.13-stable).But issue still persist.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
is there an alternative approach?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Van Madhavan I couldn't find any.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you find the solve or is it an acli problem
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
wait can you install prev versions ? and if yes will it work
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Bobi Ae Business I don't think so, rovodev automatically updates when we run it. (not sure if we can turn it off)
@SkillDeveloper Static its acli problem, caused by update by the looks it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you cannot downgrade or upgrade rovo dev versions manually. it automatically update itself
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey everyone!
We have a release going out soon to fix this!
Apologies for this!
Please try again in a couple of hours!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
same here, not solved even with acli upgrade
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same here
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same here. its probably a BUG Atlassian needs to fix in Rovodev CLI.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
same here not working even on MAC. Seems like you are on windows.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've tested on mac, windows and ubuntu, no luck
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Workaround I found for the `config.yml.lock` / guard-lock issue (Linux/WSL)
This bypasses the file locking calls that seem to get stuck, by preloading a tiny shared lib that no-ops flock() and fcntl(F_SETLK/F_SETLKW). Not ideal, but it got me unblocked.
1) Clear any stuck processes + remove the global guard lock
pkill -f "rovodev|acli" || true
rm -f /tmp/rovodev_global.lock
2) Build the preload library
cat > /tmp/nolock.c <<'C'
#define _GNU_SOURCE
#include <dlfcn.h>
#include <stdarg.h>
#include <sys/file.h>
#include <fcntl.h>
#include <stddef.h> // for NULL
int flock(int fd, int operation) { (void)fd; (void)operation; return 0; }
int fcntl(int fd, int cmd, ...) {
static int (*real_fcntl)(int,int,...) = NULL;
if (!real_fcntl) real_fcntl = dlsym(RTLD_NEXT, "fcntl");
va_list ap; va_start(ap, cmd);
void *arg = va_arg(ap, void*);
va_end(ap);
if (cmd == F_SETLK || cmd == F_SETLKW) return 0;
return real_fcntl(fd, cmd, arg);
}
C
gcc -shared -fPIC -o /tmp/nolock.so /tmp/nolock.c -ldl
ls -la /tmp/nolock.so
If `ls -la` shows the file exists, LD_PRELOAD should work.
3) Run Rovo Dev with the preload (test run)
LD_PRELOAD=/tmp/nolock.so acli rovodev run
Notes:
- This is a workaround (it disables locking), so use at your own risk.
- Sharing in case it helps others while Atlassian investigates the root cause.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
guys thats a major problem , its not individual to anyone (btw no one paid me to write it)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Mismo problema
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same problem , I reinstalled and install it in unbunto but nothing works , I hope they fix the problem soon
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is Rovodev aware of the bug? I hope they fix this problem soon.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
almost 12 hours and still no fix,
thats rediculos to update it and break it for so long lol Atlassian customer service + quality is low
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i think we will be forced to wait till monday for the official working days😒😒😒
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same thing, please help
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the same also
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i got the same issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
the same for me
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.