Monday 16 January 2023

Sunsetting Upsource

Well, we're using Upsource of JetBrains in our organisation (sinds 4 June 2019, apparently), but it seems the Product is ending.

According to [1], they're transitioning to a more complete and integrated solution called JetBrains Space [2].

I'm kind of interested what direction our organisation is going to choose.

References

[1] The Upsource Blog - Sunsetting Upsource
https://blog.jetbrains.com/upsource/2022/01/31/upsource-end-of-sales-announcement/
[2] JetBrains Space - JetBrains Space is a complete software development platform
https://www.jetbrains.com/space/

Thursday 5 January 2023

Connecting remotely to a local MySQL Server

So I tried it, and it works. Here's some notes.

ssh -N -L 3306:127.0.0.1:3306 mrbear@bears.jelastic.eapps.com -p 3022
mysql -u root -p mrbeardb —port=3306

References

Linuxize - How to Connect to MySQL through SSH Tunnel
https://linuxize.com/post/mysql-ssh-tunnel/