jeltsch's blog

Dynamic DNS with DomainDiscount24 and pfsense

Many companies offer free dynamic DNS. But since I use DomainDiscount24, I also use their dynamic DNS service. To update the IP address of vpn.jeltsch.org, I need to send an https request to a specific URL, including a password and the hostname for which I want the update:
https://dynamicdns.key-systems.net/update.php?hostname=vpn.jeltsch.org&password=12345678&ip=auto

Reset admin password in Drupal 9

  1. Go to the base folder of the drupal installation
  2. Generate the hash for your password: php core/scripts/password-hash.sh 'newpasswd'
  3. Execute in mysql: UPDATE users_field_data SET pass='hash_result_from_previous_command_goes_here' WHERE uid = 1;
  4. Clear the cache: DELETE FROM cache_entity WHERE cid = 'values:user:1';

Pages