Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • License: SQL DM for MySQL ships with 1 year of free upgrades. After that you will be offered an upgrade with discount. Our website will always tell tells the terms and conditions. Also our website has a Portal for registered users from where you can download free upgrades and purchase upgrades after the expiry of the free upgrade period.
  • Technical: The automatic installers (the Windows version and the RPM build for Redhat type Linux) handles everything automatically. The gz-compressed build for other Linux's will required requires that you run execute a few installation scripts from a command shell. We constantly improve and simplify this. After extracting the tar.gz package, you will get a file called README. Please refer to that file for details.
  • Need to monitor more servers: You can upgrade anytime upgrade your SQL DM for MySQL installation from monitoring a certain number of servers to a higher numbers by opening the License Manager and enter a new license key. If you need this please first contact us through our ticket system. We will consider the value of your existing license and compensate you (details will depend on what license you have and what you need and how old your existing license is).
Note
titleNote

Don't Do not forget to backup whatever JavaScript you have edited, as they will be get overwritten when you upgrade. You can take a back-up of Counters.def and Udo.def located inside SQL DM for MySQL folder: MONyog for this. Alternatively, you can directly upgrade, after . After upgrade you will get your JS changes as a conflict in SQL DM for MySQL UI, you can resolve those and keep your changes.

...

Data folder: The connection configuration and collected data are kept here. There will be You can find directories named like 0001, 0002, 0003, etc.

...

If you have extracted SQL DM for MySQL package in a directory called MONyog the data stored will be is in:

Data folder: The connection configuration and collected data are kept here. There will be You can find directories named like 0001, 0002, 0003, etc.

...

The data folder specified above is the default settings only. You can store in any position on any mapped/mounted drive that is writeablewritable.

TOP

Anchor
FAQ-09
FAQ-09

9. How does SQL DM for MySQL store its data?

...

10. Can I move a SQL DM for MySQL installation to another computer while keeping the data stored in SQL DM for MySQL database?

Yes, this is quite simple actually. Just install SQL DM for MySQL on the 2nd machine. After install, stop the running MONyog(SQL DM for MySQL) service and copy the ..\MONyog\Data folder from the old installation. You may also copy the MONyog.log if you want. All the connection configuration and the data will be is located in 'data' directory. The error log is MONyog.log and setting settings are stored in 'MONyog.ini' and 'preferences.config'. If you have made any changes to monitors they will be are stored in 'Counters.def' and for CSO's in 'udo.def'. Copy all of them from your old installation onto new PC. After that start the service again.

...

11. Can SQL DM for MySQL be configured as a virtual host in my 'ordinary' Apache webserver?

Yes... , at least with Apache this is possible. In your Apache configuration file (httpd.conf) add something like this (where 'ip1.ip2.ip3.ip4' is the IP address you reserve for SQL DM for MySQL).

Code Block
themeConfluence
 <VirtualHost *:80> 
       ServerName  monyog.mydomain.com
       ServerAlias http://monyog.mydomain.com
       Redirect permanent /  https://monyog.mydomain.com
   </VirtualHost>
 
   NameVirtualHost *:443 
   <VirtualHost *:443> 
       ServerName  monyog.mydomain.com
       ProxyPreserveHost On 
       ProxyPass /  http://127.0.0.1:<MONyog-Port>/ 
       ProxyPassReverse /  http://127.0.0.1:<MONyog-Port>/ 
       SSLEngine On 
       SSLCertificateFile <path-to-ssl-certificate.crt> 
       SSLCertificateKeyFile <path-to-ssl-key.key> 
   </VirtualHost>

And

...

run

...

the

...

following

...

command

...

on

...

the

...

machine

...

running

...

Apache server:

Code Block
themeConfluence
/usr/sbin/setsebool httpd_can_network_connect=1

After changing the configuration, restart the apache Apache server.

TOP

Anchor
FAQ-12
FAQ-12

...

We can also access SQL DM for MySQL using Apache proxy. You need to follow these simple steps to configure your Apache server to support proxy.

Here, we will can setup Proxy in system A and we assume that SQL DM for MySQL is installed in system B, now you can access SQL DM for MySQL using, "http:///monyog/".

...

  1. Please check whether you have libxml2 installed in your system.
  2. Download mod_proxy_html.c from from 
    Newtab2
    aliashttp://apache.webthing.com/
    urlhttp://apache.webthing.com/
  3. Now build mod_proxy_html with apxs, apxs -c -I/usr/include/libxml2 -i mod_proxy_html.c
  4. You need to load the following modules, so add the following entries in [/etc/httpd/conf/httpd.conf].

    Code Block
    themeConfluence
      LoadModule proxy_module modules/mod_proxy.so 
      LoadModule proxy_http_module modules/mod_proxy_http.so 
      LoadModule headers_module modules/mod_headers.so 
      LoadModule deflate_module modules/mod_deflate.so 
      LoadFile /usr/lib/libxml2.so 
      LoadModule proxy_html_module modules/mod_proxy_html.so
  5. Add the following configuration in your Apache configuration file [/etc/httpd/conf/httpd.conf]

...

You can also access SQL DM for MySQL using nginx proxy. You need to follow these simple steps to configure your nginx server to support proxy. Here, we will can setup Proxy in system A and we assume that SQL DM for MySQL is installed in system B, now you can access SQL DM for MySQL both over HTTP("http://") and HTTPS("https://").

...

  1. Create a directory

    Code Block
    themeConfluence
    mkdir sslcert

    Now protect the directory,

    Code Block
    themeConfluence
    chmod 0700 sslcert
  2. Create two subdirectoriessub-directories

    Code Block
    themeConfluence
    mkdir certs private
  3. Create a database to keep track of each certificate

    Code Block
    themeConfluence
    echo '100001' >serial
    touch certindex.txt
  4. Create a custom config file for OpenSSL to use similar to openssl.cnf in your /etc/pki/tls folder.

    Code Block
    themeConfluence
         dir = .
            [ ca ]
            default_ca = CA_default
            [ CA_default ]
            serial = $dir/serial
            database = $dir/certindex.txt
            new_certs_dir = $dir/certs
            certificate = $dir/cacert.pem
            private_key = $dir/private/cakey.pem
            default_days = 365
            default_md = md5
            preserve = no
            email_in_dn = no
            nameopt = default_ca
            certopt = default_ca
            policy = policy_match
            [ policy_match ]
            countryName = match
            stateOrProvinceName = match
            organizationName = match
            organizationalUnitName = optional
            commonName = supplied
            emailAddress = optional
            [ req ]
            default_bits = 1024 # Size of keys
            default_keyfile = key.pem # name of generated keys
            default_md = md5 # message digest algorithm
            string_mask = nombstr # permitted characters
            distinguished_name = req_distinguished_name
            req_extensions = v3_req
            [ req_distinguished_name ]
            0.organizationName = Organization Name (company)
            organizationalUnitName = Organizational Unit Name (department, division)
            emailAddress = Email Address
            emailAddress_max = 40
            localityName = Locality Name (city, district)
            stateOrProvinceName = State or Province Name (full name)
            countryName = Country Name (2 letter code)
            countryName_min = 2
            countryName_max = 2
            commonName = Common Name (hostname, IP, or your name)
            commonName_max = 64
            0.organizationName_default = My Company
            localityName_default = My Town
            stateOrProvinceName_default = State or Providence
            countryName_default = US
            [ v3_ca ]
            basicConstraints = CA:TRUE
            subjectKeyIdentifier = hash
            authorityKeyIdentifier = keyid:always,issuer:always
            [ v3_req ]
            basicConstraints = CA:FALSE
            subjectKeyIdentifier = hash
  5. Create a root certificate. All other certificates you create will be based of this. Since this is not a commercial certificate software may complain when they use your certificates. You may give people the "public" certifcate certificate and your certifcate will work certificate works like the commercial ones when they import it. To create, while in the 'sslcert' directory type:

    Code Block
    themeConfluence
    openssl req -new -x509 -extensions v3_ca
    -keyout private/cakey.pem -out cacert.pem -days 365 -config ./openssl.cnf

    You will be prompted for information and a password. Do not lose this password, make sure it is a secure one and back-up the two files that are created.
    The two files that are created are cacert.pem, which is the one you can give to others for import in their browsers, and cakey.pem, which will be in the private directory.

  6. Create a key and signing request

    Code Block
    themeConfluence
    openssl req -new -nodes -out name-req.pem
    -keyout private/name-key.pem -config ./openssl.cnf

    You will be prompted for information. The critical part is the "Common Name". This must be the server's hostname, such as mail.your.domain or the IP address. If you want to cover all subdomains you can enter *.your.domain. Use the "Organizational Unit" to remind you what the certificate is for, such as "Web Server". This will generate generates two files:

    • name-req.pem - the request

    • name-key.pem - the private key in the private directory

  7. Sign the request. This will generate generates the certificate,:

    Code Block
    themeConfluence
    openssl ca -out name-cert.pem -config
    ./openssl.cnf -infiles name-req.pem

    You will be prompted for the password used when creating the root certificate. Two files are created:

    • <number.pem> - a copy of it in the certs directory 
    • name-cert.pem - which is the certificate
  8. Copy to the correct location For apache Apache 2.x on Red Hat using the default location, the directory is:

    1. For the name-key.pem: 

      Code Block
      themeConfluence
      cp 
      name-key.pem /etc/httpd/conf/ssl.key/
    2. For the certificate:

      Code Block
      themeConfluence
      cp
      name-cert.pem /etc/httpd/conf/ssl.crt/
  9. Create a Virtual Host

    Code Block
    themeConfluence
    <VirtualHost ip-system-A>:443> DocumentRoot /var/www/html
         ServerName myserver
         ErrorLog /etc/httpd/logs/ssl_error_log
         TransferLog /etc/httpd/logs/ssl_access_log
         SSLEngine On
         SSLCertificateFile /etc/httpd/conf/ssl.crt/name-cert.pem
         SSLCertificateKeyFile /etc/httpd/conf/ssl.key/name-key.pem
          </VirtualHost>
  10. Configure proxy in Apache described in FAQ 13 and restart Apache.
    Edit the Hosts file [/etc/hosts]

    Code Block
    themeConfluence
    <ip-system-A> myserver

...

They have similarities (in which they both differ from server-side scripts used for monitoring): they both make use of a HTTP service, a database and both use a web-browser for reporting. Important differences are however,

...

However, important differences are:

  • SQL DM for MySQL needs no installation (of 'agents') on the server where the MySQL servers are running. Other does.
  • SQL DM for MySQL 'has everything in itself' - the webserver, the database, the MySQL client. It does not depend on the existence of other webservers, runtimes/Virtual Machines (like JAVA) and needs no separate database install. Other monitoring tools requires a full JDK (java), a TOMCAT server and a MySQL server instance for itself. Due to this simplified architecture install, configuration and first of all maintenance and upgrade is much simpler with SQL DM for MySQL. Download packages and disk storage required are much smaller with SQL DM for MySQL.

...

SQL DM for MySQL is developed by the Webyog Softworks that also created the most popular GUI for data management with the MySQL server - SQLyog Enterprise. We have more than 10 years of experience with designing MySQL related software. We have expanded our team with highly qualified developers ever since we started. We are devoted to constantly extending our knowledge and understanding of MySQL internals. What more would you expect? 

TOP

Anchor
FAQ-17
FAQ-17

17. How does SQL DM for MySQL connect to MySQL?

...

18. Windows warns after installation that SQL DM for MySQL may not have installed properly.

This may can happen on some versions of Windows (Vista and higher) if you install a recent version of SQL DM for MySQL on top of an older version. The reason for this is that recent versions of Windows include a software called "Program Compatibility Assistant" (PCA) which tries to detect if an installer is running. It warns the user that the software might not have been correctly installed if the installer does not register a new uninstaller. The PCA is unable to detect changes made to an existing, registered uninstaller, which is what the new SQL DM for MySQL installers do. And thus, the warning is displayed. You can safely ignore this warning, but if it bothers you, you may just uninstall SQL DM for MySQL before upgrading to 3.5+. All collected data in the SQL DM for MySQL's data folder will is still be available after reinstall. However, you should -:

  • Backup the connections.data file before uninstalling
  • Restore the old connections.data after the new install. After a restart, SQL DM for MySQL will recognize recognizes the connection settings in the old connections.data.

...

20. SQL DM for MySQL throws an error when trying to connect to MySQL.

Please go through through 

Newtab2
aliasError when trying to connect to MySQL
. The same as here
urlhttp://faq.webyog.com/category/7/connection-issues.html
. The same applies to SQL DM for MySQL as the client code is exactly the same in both programs. Observe however that everything related to HTTP-tunneling with SQLyog is not relevant for SQL DM for MySQL.

...

Ensure that the host specified resolves to an IP-adressaddress. This error occurs with some Linux distributions (most important Debian) when specifying 'lcoalhostlocalhost'. The system will map maps this to a Unix SOCKET file. SQL DM for MySQL connects through TCP and not to SOCKET. Try the ip IP '127.0.0.1' instead.

TOP

Anchor
FAQ-22
FAQ-22

...

You may have noticed that, while using the PROCESSLIST-based sniffer, SQL DM for MySQL increases the load on the CPU as well as the I/O subsystem of the system on which it is installed - even when the MySQL server is idle. Don't Do not panic: it 's is normal. When using the PROCESSLIST-based sniffer, SQL DM for MySQL continually queries the MySQL server at the end of each time interval, which you can be specified by youspecify. It then retrieves the results and stores them in an internal sniffer database before displaying the results back to you. Now, if you set a very short time interval, one that almost approaches 0, then in actuality SQL DM for MySQL will almost be can get stuck in an infinite loop! Consequently, the load on the CPU and I/O subsystem will increase increases exponentially. We generally recommend an interval of not more than 0.1sec 1 seconds times the number of servers for which Processlist-based sniffers are enabled. However, if you 're are worried that you may miss out on some important queries running on the MySQL server, use the Performance Schem or MySQL Proxy mode. The LUA script supplied with SQL DM for MySQL should handle the task for MySQL proxy. For more information on using MySQL Proxy with SQL DM for MySQL, click herereview

Newtab2
aliasMySQL Proxy
urlhttps://downloads.mysql.com/docs/mysql-proxy-en.pdf
.

TOP

Anchor
FAQ-23
FAQ-23

23. Why is display of queries truncated in Query Analyzer?

...

Check if the server is filtered based on a particular state, change your server filter to All Servers and now you will be able to can see your server amongst between the servers if you had successfully registered it. You can also use the search bar next to the server filter to search for your server name or tag name to get to your server.

Image RemovedImage Added


TOP

Anchor
FAQ-25
FAQ-25

25. Now, anybody will be able to connect to my SQL DM for MySQL server and retrieve details about MySQL servers.

Of course not! The No, the SQL DM for MySQL authentication system will ensure that only those people that should have access have.

...

For every registered server SQL DM for MySQL collects data independently. That is also the case when a server has been registered twice. Even if they were registered at the same time and even if the chosen sample interval is the same too, the connection and the server will have some latency and data will is not be retrieved simultaneously. For that reason SQL DM for MySQL may (or rather will) retrieve and store slightly different values for each connection. This is most visible in the 'Delta' timeframe and least visible in the 'Current/all' timeframe. For GROUPING with 'History/Trends' the difference for each GROUP will depend depends on the selected grouping interval. Due to laws of statistics the difference will be is less the longer the time interval (theoretically/statistically they will converge more and more the closer time interval and/or the no. number of samples comes to infinity). Practically, you will rarely need more than around 20 samples in a GROUP for the difference to be negligible.

TOP

Anchor
FAQ-27
FAQ-27

27.

...

Does it affect the performance of a server if SQL DM for MySQL connects to it?

It will practically does not affect on real 'live' servers. The queries sent by SQL DM for MySQL use almost no resources. We do not query data stored on disk and what we do query is stored in memory on the server. However if you are testing SQL DM for MySQL using a server instance that does almost nothing else and if you retrieve data at very short intervals the impact of SQL DM for MySQL may be slightly observable. The special Processlist feature (unique) may take a little more resources if there are lots of processes/client threads running. But SQL DM for MySQL only sends queries related to this when the corresponding SQL DM for MySQL client interface (the SQL DM for MySQL 'processlist' page) is open. Switching to another page or closing the browser will stop stops sending the queries populating the SQL DM for MySQL processlist.

...

SQL DM for MySQL is a client. When it connects, the MySQL server will start starts a connection thread. And that connection will be is reported by SQL DM for MySQL. That cannot be avoided. The processlist feature has an option to 'filter out' SQL DM for MySQL connection - as well as other connections from other clients if you want - using a simple SELECT statement.

...

Regarding customizing SQL DM for MySQL counters refer to Customization. For scripting examples refer Customization Scripting Examples.

TOP

Anchor
FAQ-30
FAQ-30

30. I cannot sit watching a browser all the time - Can I get alerts if something goes wrong?

...

By default MONyog(SQL DM for MySQL) service runs under Local System Account. If you are having Slow query or General query log in a Mapped Network Drive, SQL DM for MySQL will is not be able to reach it. If SQL DM for MySQL has to access the file present in a Mapped Network Drive, you have to convert the path into shared path (accessed with UNC notation: \system\share) and then follow these steps:

  1. Click

...

  1. the Start menu, then click

...

  1. Run and then type,

    Code Block
    themeConfluence
    services.msc
  2. After

...

  1. the Services

...

  1. window pops up with a list of all the services running in your system.

  2. Search for Monyog and then right click --> Properties.
  3. Click

...

  1. the Log On

...

  1. tab and then you can see that SQL DM for MySQL is using

...

  1. Local System Account

...

  1. .
  2. You need to use

...

  1. This account

...

  1. option and then give the credentials that you use to log on to the system with

...

  1. Administrative

...

  1. privilege.
  2. Save the settings, restart MONyog (SQL DM for MySQL) service.
  3. After following the above steps try to access the file which is shared across network.
Note
titleNote

The shared path should be accessed with UNC notation (\system\share). SQL DM for MySQL cannot identify if destination of the log file is on a Mapped Network Drive (this is a restriction with services on Windows and not with SQL DM for MySQL).


TOP

Anchor
FAQ-32
FAQ-32

32. Failed to connect to MySQL: Unknown MySQL server host... What can

...

I do about this?

You get this error if SQL DM for MySQL cannot resolve the hostname of a MySQL server. Ensure that other programs like ping, telnet, MySQL shell client are able to resolve the hostname to an IP-address. If yes, check "/etc/nsswitch.conf" of SQL DM for MySQL host. If the hosts section reads "files mdns4_minimal [NOTFOUND=return] dns mdns4", please change it to "files mdns4_minimal dns mdns4" or "files dns". This is introduced in some current Linux distribution. If other programs are not able to resolve the hostname, please check if host to ip IP resolution is properly defined inside "/etc/host" or in DNS server.

...

SQL DM for MySQL can fetch the queries from the Slow Query log and General query log on Amazon RDS instance using the RDS REST APIs. SQL DM for MySQL requires the AWS access keys to fetch the file-based logs. Go to the Edit Server->Advanced->MySQL Query log and enable the option of "Monitor MySQL Query Log". Click on the Fetch logs(down arrow) button and provide the AWS access key and secret access key to enable SQL DM for MySQL to monitor the log files.

...

SQL DM for MySQL is an important product for us. We plan to add new features as well as to 'refine' existing features. With the latest release we have completed what we originally planned for SQL DM for MySQL (and a little more actually).

  • It is now possible to get OS metrics from Amazon RDS/Aurora
  • Added more notification channels (Slack, Pagerduty and Syslog) for SQL DM for MySQL alerts."

These features have all been requested by users. SQL DM for MySQL development has always been and will continue continues to be very attentive to user requests. We will update information here when plans for future developments have been decided.

...

35. How do I get help and report problems?

Four ways:

  • Website Intercom httpIntercom 
    Newtab2
    aliashttps://www.
    webyog
    idera.com
    /
    urlhttps://www.idera.com/
  • Post in our Forums Post in our Forums
    Newtab2
    alias http://community.idera.com/
    url
    http://
    www
    community.
    webyog
    idera.com/
    forums
  • Create ticket: support@webyog ideramysqlsupport@idera.com
  • SQL DM for MySQL UI intercom

...

SQL DM for MySQL does not support the key generated from PuTTY for SSH connection. However, there is a workaround for it that you can use, you can convert the private key generated from "PuTTY key generator" into an open SSH key, and then you can use this key in SQL DM for MySQL to connect to the server. Here are the steps to follow:

  • Go to PuTTY key generator, and generate a public/private key on your local system (refer the screenshot). Click on the Generate button to generate the keys.

Image Modified

  • Copy the public key generated under the "Key" space to the authorized_keys file, which is located in the .ssh directory on the remote host that you want to connect to.
  • Go to "Conversions" in PuTTY key generator and click on "Export openssh key" and save the new converted private key in a file.
  • Now open the file containing the converted OpenSSH private key, copy this key and paste in the "Private key" field in SQL DM for MySQL (Edit server -> SSH settings -> Private key).

TOP

Anchor
FAQ-37
FAQ-37

37. Steps to auto-start MONyog(SQL DM for MySQL) service with OS reboot in Ubuntu and Debian systems.

Users can make use of the "MONyog" script shipped with the Monyog(SQL DM for MySQL) package to auto-start MONyog(SQL DM for MySQL) service with OS reboot. The SQL DM for MySQL script is located at " /MONyog/bin/". Please follow the steps below steps:

  • Copy the 'Monyog' to "/etc/init.d/" from " /MONyog/bin/"
  • Open the 'Monyog' script located at "/etc/init.d/" and edit the variable "curdir" (line number 15) and set it to the path of bin. After editing, it should look like this: curdir="/home/Users/Downloads/MONyog/bin/"
  • Make the script executable by 'chmod +x /etc/init.d/MONyog'
  • Use debian utility update-rc.d to install the script: update- rc .d MONyog defaults

...

The SQL DM for MySQL binaries are shipped in 3 packages: .tar, .rpm and .exe. The upgrade process is simple and depends on your package. The below steps will help you Follow the steps below to upgrade to the latest version of SQL DM for MySQL version without a hassle:

For .rpm package :

Code Block
themeConfluence
rpm -Uvh <MONyog_package>.rpm

This command will install installs the latest build on top of your current installation.

...

For Windows (.exe) package:

Executing the file will install installs SQL DM for MySQL on top of the current installation.

All SQL DM for MySQL data and the configuration files are stored in an a SQLite repository. In some of the SQL DM for MySQL GA releases, we modify/change the monitor definition in the SQLite files due to some bug or enhancements. In such cases, on upgrading, all the local changes made by the user in the previous version gets get replaced with the default shipped value and these local changes are shown as a conflict. You can see the conflicts as a notification on the top right-hand corner.

...

You can resolve these conflicts from the “Settings Settings -> Manage changes” changespage, herein you get 2 options for all the listed conflicts: Use your changes/Discard your changes. 1- Use your changes will restore , restores the local modifications which you had made in the previous version. 2- Discard your changes, will replace replaces your changes with the default values.

...

Uncomment the below lines in the file to enable web interface. You can login to the web interface using the username as ‘admin’ and password as ‘monit’.

Code Block
themeConfluence
set httpd port 2812 and
use address localhost  # only accept connection from localhost
allow localhost        # allow localhost to connect to the server and
allow admin:monit      # require user 'admin' with password 'monit'

Also add the below lines in the config configuration file to enable the monitoring of MONyog(SQL DM for MySQL) service:

...

Code Block
themeConfluence
sudo monit reload


TOP



Scroll pdf ignore
Newtabfooter
aliasIDERA
urlhttp://www.idera.com
Newtabfooter
aliasProducts
urlhttps://www.idera.com/productssolutions/sqlserver
Newtabfooter
aliasPurchase
urlhttps://www.idera.com/buynow/onlinestore
|
Newtabfooter
aliasSupport
urlhttps://idera.secure.force.com/
|
Newtabfooter
aliasCommunity
urlhttp://community.idera.com
|
Newtabfooter
aliasResources
urlhttp://www.idera.com/resourcecentral
|
Newtabfooter
aliasAbout Us
urlhttp://www.idera.com/about/aboutus
|
Newtabfooter
aliasLegal
urlhttps://www.idera.com/legal/termsofuse
IDERA Website | Products | Buy | Support | Community | About Us | Resources | Legal