Skip to main content

Run Iguana from the command line

If you are diagnosing a problem with Iguana, or want to check whether potential problems exist, you can run Iguana from the command line.

Open a command prompt/terminal with administrator rights and run the command:

Windows:

Use your path to the installation

"C:\Program Files\IguanaX\iguana" --run   

Run Iguana in safe mode to prevent components from automatically starting if set with #autostart:

"C:\Program Files\IguanaX\iguana" --run --safe_mode   

Linux/Mac OS:

cd into your installation directory, run iguana:

cd ~/iguana   
sudo ./iguana --run
  • In Linux, it may tell you to omit the “sudo”.

  • In Mac OS, the installation folder that contains iguana might be a custom installation folder you created or a path similar to /Applications/IguanaX.app/Contents/MacOS.

Run Iguana in safe mode to prevent components from automatically starting if set with #autostart:

cd ~/iguana   
sudo ./iguana --run --safe_mode