### Install OctoMesh with Core Profile Source: https://github.com/meshmakers/getting-started/blob/main/README.md Installs the OctoMesh platform using the default core profile, which includes all services except Data Refinery Studio. This is the basic installation command. ```pwsh # Install with core profile (default) ./om-install.ps1 ``` -------------------------------- ### Start OctoMesh with Full Profile Source: https://github.com/meshmakers/getting-started/blob/main/README.md Starts the OctoMesh Docker containers using the 'full' deployment profile. This command should be used after installation when you need to run all services, including Data Refinery Studio. ```pwsh # Start/Stop with specific profile ./om-start.ps1 -DeploymentProfile full ``` -------------------------------- ### Start OctoMesh Platform Source: https://github.com/meshmakers/getting-started/blob/main/README.md Navigate to the scripts directory and execute the om-install.ps1 script to start the OctoMesh platform with its associated databases and services. ```pswsh cd scripts ./om-install.ps1 ``` -------------------------------- ### Setup Identity Service Source: https://github.com/meshmakers/getting-started/blob/main/README.md Run this command after logging in to set up client definitions for Data Refinery Studio, specifically when using the 'full' deployment profile. ```powershell ./om-setupIdentityService-local.ps1 ``` -------------------------------- ### Verify Octo-CLI Installation Source: https://github.com/meshmakers/getting-started/blob/main/README.md Run the octo-cli command to confirm that the installation was successful. ```pwsh octo-cli ``` -------------------------------- ### Install OctoMesh with Full Profile Source: https://github.com/meshmakers/getting-started/blob/main/README.md Installs the OctoMesh platform with the 'full' profile, which includes all services, including Data Refinery Studio. Use this command when Data Refinery Studio is required. ```pwsh # Install with full profile (includes Data Refinery Studio) ./om-install.ps1 -DeploymentProfile full ``` -------------------------------- ### Install Octo-CLI using Chocolatey Source: https://github.com/meshmakers/getting-started/blob/main/README.md Install the OctoMesh CLI tool using the Chocolatey package manager. ```pwsh # Install the OctoMesh CLI choco install octo-cli ``` -------------------------------- ### Log in to OctoMesh CLI (Include Reporting) Source: https://github.com/meshmakers/getting-started/blob/main/README.md Log in to OctoMesh CLI and include Reporting Services for a full profile. This is necessary if you installed with the 'full' deployment profile. ```powershell # Include Reporting Services (for full profile) ./om-login-local.ps1 -includeReporting $true ``` -------------------------------- ### Log in to OctoMesh CLI (Custom Tenant and Reporting) Source: https://github.com/meshmakers/getting-started/blob/main/README.md Log in to OctoMesh CLI using both a custom tenant ID and including Reporting Services for a full profile. ```powershell # Both parameters ./om-login-local.ps1 -tenantId "mytenant" -includeReporting $true ``` -------------------------------- ### Log in to OctoMesh CLI (Custom Tenant) Source: https://github.com/meshmakers/getting-started/blob/main/README.md Log in to OctoMesh CLI with a custom tenant ID. The default tenant is 'meshtest'. ```powershell # Custom tenant ID ./om-login-local.ps1 -tenantId "mytenant" ``` -------------------------------- ### Verify OpenSSL Availability Source: https://github.com/meshmakers/getting-started/blob/main/README.md Ensure that the openssl command-line tool is available in your system's PATH. ```bash openssl ``` -------------------------------- ### Log in to OctoMesh CLI (Default) Source: https://github.com/meshmakers/getting-started/blob/main/README.md Use this command for the default login to OctoMesh CLI, which targets the 'meshtest' tenant and does not include reporting services. ```powershell # Default login (tenant: meshtest, no reporting) ./om-login-local.ps1 ``` -------------------------------- ### Add Host Entry for OctoMesh Identity Services Source: https://github.com/meshmakers/getting-started/blob/main/README.md Edit your hosts file to add an entry for OctoMesh Identity Services, mapping 127.0.0.1 to octo-identity-services. ```bash # OctoMesh Identity Services 127.0.0.1 octo-identity-services # end OctoMesh Identity Services ``` -------------------------------- ### Uninstall OctoMesh Platform Source: https://github.com/meshmakers/getting-started/blob/main/README.md Run this PowerShell script to uninstall the OctoMesh platform. ```powershell ./om-uninstall.ps1 ``` -------------------------------- ### Clone Meshmakers Repository Source: https://github.com/meshmakers/getting-started/blob/main/README.md Clone the Meshmakers repository to your local machine using either HTTP or SSH protocols. ```bash # using http https://github.com/meshmakers/getting-started.git # using ssh git@github.com:meshmakers/getting-started.git ``` -------------------------------- ### Stop OctoMesh with Full Profile Source: https://github.com/meshmakers/getting-started/blob/main/README.md Stops all running OctoMesh Docker containers using the 'full' deployment profile. This command ensures all services are shut down gracefully without removing data. ```pwsh ./om-stop.ps1 -DeploymentProfile full ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.