Showing entries 8081 to 8090 of 44041
« 10 Newer Entries | 10 Older Entries »
New Query Analysis Features in MONyog

While looking to optimize your MySQL, you are needing to spot slow/bad queries at a glance and get deep insights about them with ease.

The latest update of MONyog brings new easier ways to find problem SQL in Real-Time, Wayback Machine and sniffer based Query Analyser using Performance Schema. Here is what’s new:

Query Execution Status and Full Table Scan Count
View success/failure status of every query executed and also the number of ‘full table scans’ for queries in a single glance.

The latest update also has an option to switch between Performance Schema and Processlist in Real-Time making it easy for you to enable/disable Performance Schema or Processlist.

Get the latest update now to enjoy these features.Existing customers can download MONyog 6.52 from Customer Area. To evaluate MONyog 6.52, please …

[Read more]
MySQL Load Balancing with ProxySQL - an Overview

Year 2015 was a good year for proxies in MySQL environments. First, MariaDB released a GA version of MaxScale, a new proxy that understands MySQL Replication and Galera topologies and supports read-write splitting. Later in the year, at Percona Live Europe in Amsterdam, ProxySQL was announced as GA by its creator, René Cannaò.

ProxySQL was created for DBAs by René, himself a DBA trying to solve issues when working with complex replication topologies.

In this blog, we’ll give you an overview of ProxySQL, and show you how to install and configure it.

Installation of ProxySQL

Initial installation is pretty simple - all you need to do is grab the latest binaries from the site:

https://github.com/sysown/proxysql/releases/

[Read more]
The Binlog Server

Mon, 2016-03-07 07:49massimiliano_pinto_gMaxScale as a replication proxy, aka the Binlog Server

In database setups with a large number of users reading data, the Binlog Server can be used to offload traffic to the Master, make Master failover easier to handle and in general simplify replication. In this blog I will describe the benefits of Binlog Server and how to set up MaxScale as a Binlog Server.

In a traditional MariaDB/MySQL replication setup a single master server is created and a set of slaves of MariaDB/MySQL servers are configured to pull the binlog files from the master, putting a lot of load on the master. Introducing a layer between the master server and the slave servers can reduce the load on the master by only serving MaxScale’s Binlog Server instead of all the slaves. The slaves will only need to be aware of the Binlog Server and not the real master server. Removing the requirement for the slaves to have knowledge …

[Read more]
How to get rid of orphaned tables in MySQL?

This post is about situation where comments in BUG reports are really valuable in term of learning and getting some internal view of going process.
Let’s take a look at -> http://bugs.mysql.com/bug.php?id=80183

The report is about how you can not drop general tablespace if it was a crash of MySQL instant while running alter statement.


mysql> create tablespace ts1 add datafile '/var/lib/mysql_tablespaces/ts1.ibd' engine=innodb;
Query OK, 0 rows affected (0,02 sec)

Kill -9 process while altering:


mysql> alter table sbtest1 tablespace ts1;
ERROR 2013 (HY000): Lost connection to MySQL server during query

CREATE TABLE `sbtest1` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`k` int(10) unsigned NOT NULL DEFAULT '0',
`c` char(120) NOT NULL …

[Read more]
How to resolve Laravel blank page on server

When i was created my laravel 52 application and i upload application on live GoDaddy server But i found blank page I think First you have to check php version on live server if you run laravel 5 application then make sure your PHP version at least strong classpathPHP 55strong But ag

How to use DB transactions in Laravel

First Lets undestand why we are use transactions in laravel project But db transactions is very important concept and very usefull because it securely manage laravel 5 also provide to transactions commit rollback etc functions How to use transactions in my project so I an going to give you on

Angular scopeform value undefined on submit in ionic framework

When i was working first time in ionic framework with search module i fetch one issue i cant get ngmodel value in angular js controller on submit form i was try like scopeform because if you work on angular JS before then you can get all post data using scopeform directly But i try with bel

PHP Image upload without refreshing page using jquery example

In this post i show you how to image upload without page reload using jquery ajax jquery ajax through you can upload image and store record into database in php i use jqueryform plugin for image uploading So you can do by following few step of file uploading ajax jquerystrongPreivewstrong

How to Mitigate DROWN CVE-2016-0800

This blog post will discuss how to Mitigate DROWN CVE-2016-0800.

Unless you’ve been living in a cave you’ll have heard (or likely to hear about soon) the drown attack. From the Red Hat site:

“A padding oracle flaw was found in the Secure Sockets Layer version 2.0 (SSLv2) protocol. An attacker can potentially use this flaw to decrypt RSA-encrypted cipher text from a connection using a newer SSL/TLS protocol version, allowing them to decrypt such connections. This cross-protocol attack is publicly referred to as DROWN.

Find out more about CVE-2016-0800 from the MITRE CVE dictionary dictionary and …

[Read more]
How to create middleware for XSS protection in Laravel

XSSCross Site Scripting protection must need in your site because if you do not XSS protection then your site is not secure XSS filter through you can remove html tag from your input value and it is very important to remove html tag for security in your laravel 52 application you can implement

Showing entries 8081 to 8090 of 44041
« 10 Newer Entries | 10 Older Entries »