Category: Troubleshooting
-
MySQL replication: How to recover from “Event too small corruption” or “Slave SQL: Relay log read failure”
The basic principle is, just restart where the slave left off. The problem arises if a binary log, on the slave side, remains corrupt. The recovery is relatively simple, just follow the recipe: STOP SLAVE SHOW SLAVE STATUS Note down ‘Relay_Master_Log_File’ and ‘Exec_Master_Log_Pos’ entries. RESET SLAVE CHANGE MASTER TO ….. (use MASTER_LOG_FILE=relay_master_log_file and MASTER_LOG_POS=exec_master_log_pos from…
-
Android Studio 1.0 RC2 error: “Gradle DSL method not found: ‘runProguard()’”
After installing the RC2 upgrade (in my case i’ve upgraded directly from 0.8.something to 1.0 rc2) the following error could appear when reimporting/resyncing projects created with previous versions: Gradle DSL method not found: ‘runProguard()’
-
WebOS Emulator error E_ACCESSDENIED (0x80070005), The solution
I am currently evaluating development frameworks and mobile platforms for my company, so we can choose our path in our next multi-platform mobile applications (to develop specific apps for each platform is just too expensive). This took me to WebOS, clearly a small player, but with HP at the wheel, maybe it will get somewhere.…
-
Installing SQL Server 2005 Express in Windows Vista x64
When you try to install MSSQL Server 2005 Express with Advanced Services in Windows Vista x64, with IIS7 already installed, you will get two warning messages: “IIS Feature Requirement” and “ASP.Net Version Registration Requirement”. This should not happen if you try to install SQL Server 2005 Express alone, as it doesnt need IIS or ASP.net.