> For the complete documentation index, see [llms.txt](https://help.readymage.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.readymage.com/application-management/ssh-access/ssh-usage.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
