-
Notifications
You must be signed in to change notification settings - Fork 6
Troubleshooting
Some common problems have been identified. For extended information on known bugs and their solutions, please check this section for quick interventions.
A fundamental aspect of deploying Summer House in your local environment (Linux, WSL) is the use of ports. Problems have been detected due to port blocking by other applications. This can cause DDEV start-up problems and lead to others problems during the installation process of the main website, you can get errors just like:
[error] Drupal\Core\Config\ConfigImporterException: There were errors validating the config synchronization.
Entities exist of type <em class="placeholder">Shortcut link</em> and <em class="placeholder">Shortcut set</em> <em class="placeholder">Default</em>. These entities need to be deleted before importing. in Drupal\Core\Config\ConfigImporter->validate() (line 750 of /var/www/html/backend_drupal/core/lib/Drupal/Core/Config/ConfigImporter.php).
DDEV operates with ports used by other resources, such as 80 or 443. Check that they are not in use (you do not have Apache running on your system).
Summer House obtains a lot of resources through the Internet in order to get its own download, installation, configuration and other resources. From the first git clone
command to the latest composer install
execution, you will get a lot of stuff from external sources. For instance, the Portainer container is built from a docker-compose.yml file retrieved from an external repository in Github, by doing:
wget https://raw.githubusercontent.com/drud/ddev-contrib/master/docker-compose-services/portainer/docker-compose.portainer.yaml
So sometimes you can get errors when trying to get external resources:
A MkDocs service file has been located in your system.
fatal: unable to access 'https://github.com/davidjguru/summerhouse.wiki.git/': Could not resolve host: github.com
Task failed: Exec command '([ -d ./mkdocs/docs ] && cd ./mkdocs/docs && git pull origin) || (git clone https://github.com/davidjguru/summerhouse.wiki.git ./mkdocs/docs)'
(We're building up the mkdocs container from a git clone of the repository wiki).
This is the key: Could not resolve host: github.com
, As Summer House makes intensive use of Internet connections, you need to check in these cases your assigned DNS servers (or those of your ISP), to ensure that they are functioning normally. These are not problems specific to Summer House, but they are problems with your Internet connectivity.
When you're installing Summer House in macOS, some people have reported errors in prompt from some commands execution. Specifically, errors derived from some commands used in the installation process not available in macOS, for instance:
bash: xdg-open: command not found
Task failed: Exec command 'xdg-open "$(ddev drush uli admin)"' on the host: exit status 127
A task failure does not mean that ddev failed, but your hook configuration has a command that failed.
At the end of the installation process when we're launching the sites in browser using command xdg-open
. As far as I can remember (I think, I guess) the equivalent command in macOS would be just open
, so you can try to change this command in `.ddev/config.yaml', lines 34 to 38. Then re-run Summer House and see if it works.
And:
Task failed: Exec command 'sed -i '12s/restart: "no"/restart: "on-failure"/' ./.ddev/docker-compose.portainer.yaml' on the host: exit status 1
...When we're altering the restarting policies for the Portainer Container by using the sed
command.