There are two possible ways of installing CleverMaps Shell - locally and using Docker.

  1. To install it locally, you have to:
    1. Install Java Development Kit - JDK
    2. Download Shell .jar file
    3. Run it in cmd.exe or Terminal
  2. To install using Docker:
    1. Download and install the Docker platform
    2. Pull the latest Shell image
    3. Run it in a Docker container

In both cases, you will need a CleverMaps account first. Sign up to CleverMaps using social login (Facebook, LinkedIn, Google) will not provide you the credentials that are used to log in to Shell. To create your own CleverMaps projects, you have to sign up using an email address and a password. Sign up here.

Local installation

CleverMaps Shell runs in Terminal on Unix systems (Linux, Mac OS) and in cmd.exe on Windows systems. If you're not familiar with these tools, we recommend to complete a basic usage tutorial on the web.

We've encountered character encoding problems on Windows 7. It is recommended to use Windows 8 or higher.

To run Shell locally, your machine must have the Java Development Kit, version 8+ installed. To check if you have JDK installed, open Terminal or cmd.exe and run this command. 

Linux/Mac/Windows

java -version

If you receive a version number back - you have installed JDK already and you can skip to the next step.

Otherwise, we recommend to download Java Development Kit - JDK 11 from Oracle:

Choose the installation file according to your platform, and follow the installation instructions. You can also opt for the open source version - OpenJDK.

After you have successfully installed JDK, download the Shell executable file from this page. Navigate to the folder where you've downloaded the Shell, and run it using a script distributed with the executable .jar file. The script must be located in the same folder as the .jar file.

Linux/MacWindows

cd <path>

bash can_shell.sh

cd <path>

can_shell.bat

Where <path> is the path to the folder where you've downloaded Shell to.

Alternatively, run it directly using the java command:

Linux/Mac/Windows

cd <path>

java -jar ./can-shell-1.3.0-RELEASE-exec.jar

Where the actual name of the jar (can-shell-1.3.0-RELEASE-exec.jar) may be different - depends on the version you've downladed.

Configuration

After you have successfully started Shell, we recommend you to set up your config and credentials, so you don't have to enter them each time you log in. 

To do that, run Shell and use the setup command.

Linux/Mac

setup --email john@email.com --password SECRET_PW --dumpDirectory /home/john/CleverMaps

Windows

setup --email john@email.com --password SECRET_PW --dumpDirectory C:\Users\john\CleverMaps


Your credentials and config files will be stored in your home folder in the .cleverMaps directory.

Are you connecting through a proxy server? Set your proxy config using: setup --proxyHost proxy.example.com --password proxyPort 3128

Docker installation

To run Shell in Docker, your machine must have the Docker container platform installed and running. You can get Docker here.

This image runs the lightweight Alpine Linux and already contains the Java Development Kit. It's always distributed with the latest version of Shell.

Linux/Mac

docker run --rm --name cm-shell --volume /tmp/dumps:/work:z --env-file /home/user/.cleverMaps/credentials -ti clevermaps/shell:latest

Windows

docker run --rm --name cm-shell --volume C:\dumps:/work:z --env-file C:\Users\user\.cleverMaps\credentials -ti clevermaps/shell:latest

Where:


Depending on your Docker system configuration, you may be required to preface the docker run command with sudo.

In that case, all files saved to the directory you specified in --volume have to be edited by the root user. Make sure you run your text editor under root user as well, or change the dump directory file permissions accordingly, e.g.: by using sudo chmod -R 777 /tmp/dumps/.


If you've already pulled the image and Shell tells you that you're using an old version during startup, update it by using:

Linux/Mac/Windows

docker pull clevermaps/shell:latest

Usage tips

Shell Docker images are hosted in this DockerHub repository.

There are some useful tricks, which will make the work with Shell much easier:


Having trouble with installation or configuration of CleverMaps Shell? Don't hesitate to contact us at support@clevermaps.io.

To learn more about Shell and the platform - please complete the CleverMaps tutorials. Detailed command description of Shell commands can be found in the command list article.