Categories
ubuntu

Ubuntu 22.04, mariaDB, dbeaver and auth fail error

So lately I switched to ubuntu 22.04 and tried a fresh installation with mariadb. When trying to connect to the database server with dbeaver i got stuck with the message in Dbeaver: Can’t initialize tunnel Cannot establish tunnel to x.x.x.x:22 Cannot establish tunnel to x.x.x.x:22 Auth fail Auth fail Looking in the journal control I […]

Categories
ubuntu

Install composer on ubuntu 20.04

To quickly install composer on ubuntu 20.04 you want to run the following commands. Make sure you are in your own home directory. sudo apt install wget php-cli php-zip unzip -y wget -O composer-setup.php https://getcomposer.org/installer sudo php composer-setup.php –install-dir=/usr/bin –filename=composer Look at the –install-dir=/usr/bin. A lot of guides tell you to install it into the […]

Categories
ubuntu

Renew a certificate with certbot behind Cloudflare

So today I was installing a server with a domain that was behind a Cloudflare dns server. When trying to create a certificate with certbot it was failing constantly. certbot certonly -d www.domain.tld –standalone The problem is that certbot is using port 80. By default Cloudflare has “Always Use HTTPS” turned on. If you turn […]

Categories
safari

Remove the coloured background in the toolbar in safari 15

So now that safari 15 is the new browser for MacOs 12 Monterey is available for developers we noticed that something has changed in the toolbar. It now changes color depending in the website by default. For example, the PayPal website turns your safari into an blue monstrosity. You can simply turn that off in […]

Categories
ubuntu

Cloning a github repository with a ssh key on ubuntu 20.04

As you may have seen in your mail. Cloning a github repository with username and password will be removed later in 2021. As a developer it was a bit weird when you are used to a username and password in your terminal for all those years. If you are wondering what I mean, check this […]