Skip to main content
17
results
Andrew Fletcher
Lando is a local development environment tool, and it might not directly support the installation of system-wide packages like libGL. However, you can make sure that the required dependencies are included in your application's environment by modifying its configuration.   Here's a general approach to include libGL in your Lando configuration   Create a .lando.yml Configuration File If you don't have a .lando.yml file in your project, create one at the root of your project. If you...
Andrew Fletcher
Lando is a development environment tool that makes it easier to set up and...
Andrew Fletcher
Create a Lando setup running Drupal 10. The command you provided appears to be a...
Andrew Fletcher
Setting up the admin password.   Process: 1. Edit jetty.xml To begin you...
Andrew Fletcher
This is a relatively quick process, beginning with dropping the database...
Andrew Fletcher
Import a database lando db-import doj.sqlEnter the MySQL database lando mysql -h database This action will change the prompt as you are now in mysql.  The prompt will start with mysql>Now change to the database that you want to use use doj;If you want to know what databases exist, then run show databases;Response +--------------------+ | Database | +--------------------+ | information_schema | | doj | | mysql | | performance_schema | | sys ...
Andrew Fletcher
Find by file name To perform a find command in terminal use find / -name...
Andrew Fletcher
In this article I'll walk through the steps I went through to install Solr on...
Andrew Fletcher
Looking to install Solr on your server?  Not sure if it worth the...
Andrew Fletcher
As a web developer, you will most likely need to run local copies of a bunch of...
Andrew Fletcher
On your local OSX environment using Terminal or iTerm you can create a MySQL database, database user, and password, as well as, assign all privileges to the user for the database. Knowing your credentials, before beginning you will need to know the following: user: {user} password: {password} database: {database} For my local environment, I'll be using these credentials user root password root database safs   Walkthrough the steps to build your database: The initial step is to...
Andrew Fletcher
This article assumes that you are running Docker and Lando already.  Don't...
Andrew Fletcher
While working with lando, I had the following error ERROR: for safs_appserver_1...
Andrew Fletcher
I installed Lando 3.6.2 and Laravel 9.  When I visit the web page, I...
Andrew Fletcher
Working in Lando and you have hit the situation where you need to view the log...