Create new Private and Public key on Host machine (Ex.macOS) $ssh-keygen -t rsa # Enter location and file name like (/Users/pjadda/.ssh/minishift_rsa), do not use default files #Passphrase is optional Create .ssh folder in Guest OS even if it exists $ssh docker@192.168.64.3 mkdir -p .ssh
Drupal 8 Twig cheatsheet Getting Drupal 8 field values in Twig Image path: {{ file_url(content.field_name['#items'].entity.uri.value) }} Image title text: {{ node.field_name.title }} Entity Reference path: {{ content.field_tags[0]['#url'] }}
Reset mysql root password in Mac OS: First Stop MySQL: Go to: 'System Preferences' >> 'MySQL' and stop MySQL OR, sudo /usr/local/mysql/support-files/mysql.server start sudo /usr/local/mysql/support-files/mysql.server stop