Is SSH access available for running artisan commands? Intoduction Managing a Laravel application often requires direct server access to run Artisan commands, clear caches, execute migrations, and perform other maintenance tasks. To support these needs, SSH (Secure Shell) access is available, allowing you to securely log in to your BigCloudy hosting account and interact with your server directly through the terminal. This guide explains what SSH is, how it works, and how you can use it on BigCloudy hosting to efficiently run Laravel Artisan commands and manage your application.What Is SSH?SSH is a secure protocol that lets you interact with your server via the command line. It’s particularly useful for running tasks like:Executing Laravel Artisan commandsRunning Composer or Git operationsManaging file permissionsAccessing logs and debuggingManaging a Laravel application often requires direct server access to run Artisan commands, clear caches, execute migrations, and perform other maintenance tasks. To support these needs, SSH (Secure Shell) access is available, allowing you to securely log in to your BigCloudy hosting account and interact with your server directly through the terminal. This guide explains what SSH is, how it works, and how you can use it on BigCloudy hosting to efficiently run Laravel Artisan commands and manage your application. Does BigCloudy Provide SSH Access?Yes, BigCloudy shared hosting provides SSH access for eligible hosting plans. You can enable or request SSH access from your hosting control panel (such as cPanel) or by contacting support.How to Connect via SSHLog in to your cPanel, and once you get in, go to the advanced section in that you need to open the terminal option to connect the SSH. Running Artisan CommandsOnce you’re connected via SSH, navigate to your Laravel project directory (where artisan exists): cd public_html/laravel-app Then, run any artisan command: php artisan migrate php artisan cache:clear php artisan config:cache ConclusionSSH access plays a crucial role in managing Laravel applications efficiently. It allows developers to run Artisan commands, install dependencies, clear caches, and perform maintenance tasks directly from the terminal, saving time and reducing manual effort.BigCloudy offers SSH access on Laravel hosting plans, making it easier to manage and optimize Laravel projects on shared hosting. Whether you’re handling migrations, caching configurations, or debugging your application, SSH provides the flexibility and control needed for a smoother development and deployment experience. Need Help? If you require assistance at any point while using this guide, our Support Team is here to help: Email: support@bigcloudy.com Submit a support ticket FAQ What is SSH access used for in Laravel hosting?SSH access allows you to securely connect to your server via the command line. It is commonly used for running Laravel Artisan commands, executing Composer installs, managing files, checking logs, and performing Git operations. Does BigCloudy shared hosting support SSH access?Yes. BigCloudy provides SSH access on eligible shared hosting plans. SSH can be enabled through the hosting control panel (such as cPanel) or by contacting BigCloudy support. Is SSH access enabled by default?SSH access may not be enabled by default on all plans. You can enable it from your control panel or request activation from the support team if your plan supports it. Can I run all Laravel Artisan commands via SSH?Yes. Once connected via SSH and inside your Laravel project directory, you can run standard Artisan commands such as migrations, cache clearing, configuration caching, queue management, and more. Is SSH access secure?Yes. SSH uses encrypted communication, making it a secure way to access your server. Always use strong passwords or SSH keys and avoid sharing your credentials.