# SSH Usage

Each environment can have an SSH container that allows a list of various actions. It doesn’t give direct access to any of the application/database containers.

### Utilities that you can use: <a href="#utilities-that-you-can-use" id="utilities-that-you-can-use"></a>

1. Magento cli — magento commands that will be executed on your application pods `magento CMD`
2. MySQL cli tools — provides access to your database: `mysql`\
   \
   `// Make dump`\
   mysqldump magento --single-transaction --no-tablespaces | gzip > dump.sql.gz
3. Redis cli — provides access to your redis. To connect: `redis-cli -h redis -p 6379`
4. Tools for copying:
   * rsync — use to sync data on local and ssh container. For example, to sync media folder: `// From local to SSH container`\
     `rsync -azP media/ your-user@ssh.readymage.com:/home/magento/media/` \
     \
     `// From SSH container to local`\
     `rsync -azP your-user@ssh.readymage.com:/home/magento/media/media/`
   * scp — the same purpose as rsync.

     **NB:** the only directory that’s allowed to copy data is /home/magento. Copy database backups and media there only.
5. Tools for compressing files:
   * gzip
   * tar
   * zcat
   * dar
6. Useful tools:
   * cat
   * clear
   * curl
   * du
   * find
   * gpg
   * grep
   * head
   * jq
   * pv
   * tail
   * tmux
   * wget
   * nano


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.readymage.com/application-management/ssh-access/ssh-usage.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
