One of the drawbacks of using MySQL community is the lack of tools to analyze the server and queries, but with a little help from the Percona Toolkit, this gets a little bit easier.
Telldus/Tellstick Local API with PHP
21.01.2016 Telldus announced a closed beta for their Local API on the ZNet Lite. 24.05.2016 they opened the Local API to public beta. Local API let’s you connect and fetch data directly from the Tellstick ZNet without going through Telldus Live, which can be a huge advantage as it’s faster and more stable.
jQuery Plugin Boilerplate
Just to make it easier for me to find, I’m posting a Jquery boilerplate from Stefan Gabos.
Setting up CS:GO dedicated server with eBot – on Ubuntu 16.04
This little project took me about 25 hours, because of a lot of debugging and very little documentation for error messages regarding eBot. With this tutorial I will hopefully help someone else (and future me) to do this in 1-2 hours instead 🙂 My setup Ubuntu 16.04 running as a VM in ESXi 6 eBot v3.1 My local IP for the server …
Setting up external hotspot with Ubiquiti (ubnt) and debugging
My setup: Webserver: Ubuntu 16.04 with default Apache2, PHP7 and MySQL. The webserver also has a local issued certificate with HTTPS. UniFi Controller: 4.8.18 (Running on a Windows 10 client) Laptop with wireless, running Windows 10, for testing. This article will focus more on debugging than on the setup itself, as there are multiple of howto-guides everywhere on the Internet. My guest …
How to Secure Apache with Let’s Encrypt on CentOS 6
Install the Let’s Encrypt client $ git clone https://github.com/letsencrypt/letsencrypt $ cd letsencrypt I didn’t have git installed, so I just downloaded it from Github and added it under /opt/letsencrypt on the server. So to the Centos 6 «fix» You’ll need to run the client in Pyhon 2.7. $ yum install centos-release-SCL $ yum install python27 Your python version should …
Setting up a Raspberry Pi 3
My last Pi’s was one of the first ones (2x USB) from around 2012/13. I just bought the new Pi 3, but not all was straight forward… First of all, the filesystem is limited to 3,5 GB of my 16GB SD Card – after creating it with the Win32 Disk Imager and the default Raspbian image. «df -h» shows that …
Create a bootable USB to Install ISO from (Linux/Windows…)
Rufus is a easy program that does this for you Download Rufus Run program. Check that the Device is correct. Select ISO (by clicking small CD-rom button at the left… Where it’s written «Create a bootable disk using…») Click Start. The other way Check this link, to do it the hard commando-line-style way – or check one of my old blog post (in Norwegian). …
WebGUI on ESXi (Howto)
Just installed installed ESXi Embedded host client on my ESXi server to get a Web GUI, instead of using the vSphare console. See my post about my ESXi here (Written in Norwegian). Guide: Download here: https://labs.vmware.com/flings/esxi-embedded-host-client See this video: https://www.youtube.com/watch?v=JRb2BeWSI_4 If video doesn’t work, or you just wan’t a short step-by-step: Download the ESXi Embedded host client. Upload the file …
Centos7 – Something filling up the disk space
When a webserver uses 100% of the diskspace, there is not enough space to create a session in PHP. In other words people cannot login to your web-application. I had some problems with the httpd logs (/var/log/httpd) over some time with one single webserver. The access log can take up to mulitple gigabytes. After deleting the logs, everything worked fine. After …