From a5d2a76a3151b7e255b4f0e18851467670bc5099 Mon Sep 17 00:00:00 2001 From: Agabekov Roman Date: Tue, 1 Dec 2020 14:32:38 +0000 Subject: [PATCH] Changed sign up url and added link to blog --- README.md | 10 ++++++---- mysqlconfigurer.sh | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5c669cd..8ed687f 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,14 @@ [![Build Status - Master](https://travis-ci.com/releem/mysqlconfigurer.svg?branch=master)](https://travis-ci.com/releem/mysqlconfigurer) + ## Description **MySQLConfigurer** is a script that will assist you prepare performance optimized configuration of your MySQL server based on the MySQLTuner report (MySQL status and system information). **Releem** is an online service for automatic optimization MySQL configuration to improve performance and reduce costs. Releem analyzes the MySQLTuner report, MySQL status and system information of your server and provides settings recommendations in the form of a MySQL configuration file. +To get your Releem API Key please [sign up](https://releem.com/?utm_source=github&utm_medium=link&utm_campaign=signup#rec221377760). + ## Support Join the Releem Community on [Slack](https://mysqlcommunity.slack.com/archives/C01FFDYTWTW) and [Telegram](https://t.me/releemhq). @@ -61,11 +64,10 @@ password=[your password] We tested the results with Sysbench on a virtual server running Debian 9 (2 CPU, 2GB Ram) the table contained 10 million entries. Two configurations were tested, the MySQL default configuration and the configuration recommended by the **Releem** service. The tests were two-step: read (test1) only and read/write (test2). -Recommended configuration delivered a 30% boost to MySQL performance compared to the default configuration. Follow this link to see test results: -https://docs.google.com/spreadsheets/d/1J9FDgBGbvNA356d74WKYBaEzSwK7H-wgjHEQgYh8CMI/edit?usp=sharing +Recommended configuration delivered a 30% boost to MySQL performance compared to the default configuration. Follow this [link](https://releem.com/blog/how-to-improve-performance-mysql57-default-configuration) to see test results. ## Options -**-k [Releem API KEY]** - used for authorization to Releem platform. To get your Releem API Key please sign up on https://app.releem.com/ +**-k [Releem API KEY]** - used for authorization to Releem platform. To get your Releem API Key please [sign up](https://releem.com/?utm_source=github&utm_medium=link&utm_campaign=signup#rec221377760). **-m [MYSQL_MEMORY_LIMIT]** - set maximum memory limit for MySQL. Used when there are installed different applications on the server. @@ -92,7 +94,7 @@ https://docs.google.com/spreadsheets/d/1J9FDgBGbvNA356d74WKYBaEzSwK7H-wgjHEQgYh8 ```bash /bin/bash mysqlconfigurer.sh -k [RELEEM_API_KEY] ``` - - **RELEEM_API_KEY** - To get your Releem API Key please sign up on https://app.releem.com/ + - **RELEEM_API_KEY** - To get your Releem API Key please [sign up](https://releem.com/?utm_source=github&utm_medium=link&utm_campaign=signup#rec221377760). 4. In the /tmp/.mysqlconfigurer folder you could see ```bash root@mysqlconfigurer# ls -l /tmp/.mysqlconfigurer/ diff --git a/mysqlconfigurer.sh b/mysqlconfigurer.sh index 27ece14..a6c6185 100644 --- a/mysqlconfigurer.sh +++ b/mysqlconfigurer.sh @@ -19,7 +19,7 @@ done # Check RELEEM_API_KEY is not empty if [ -z "$RELEEM_API_KEY" ]; then - echo >&2 "RELEEM_API_KEY is empty please sign up at https://app.releem.com/ to get your Releem API key. Aborting." + echo >&2 "RELEEM_API_KEY is empty please sign up at https://releem.com/appsignup to get your Releem API key. Aborting." exit 1; fi