Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions best-practices/haproxy-best-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,18 @@ haproxy --help
| `-vv` | Displays the version, build options, libraries versions and usable pollers. |
| `-d` | Enables debug mode. |
| `-db` | Disables background mode and multi-process mode. |
| `-dM [<byte>]` | Forces memory poisoning, which means that each and every memory region allocated with malloc() or pool_alloc2() will be filled with \<byte> before being passed to the caller. |
| `-dM [<byte>]` | Forces memory poisoning, which means that each and every memory region allocated with malloc() or pool_alloc2() will be filled with `<byte>` before being passed to the caller. |
| `-V` | Enables verbose mode (disables quiet mode). |
| `-D` | Starts as a daemon.|
| `-C <dir>` | Changes to directory \<dir> before loading configuration files. |
| `-C <dir>` | Changes to directory `<dir>` before loading configuration files. |
| `-W` | Master-worker mode. |
| `-q` | Sets "quiet" mode: This disables some messages during the configuration parsing and during startup. |
| `-c` | Only performs a check of the configuration files and exits before trying to bind. |
| `-n <limit>` | Limits the per-process connection limit to \<limit>. |
| `-m <limit>` | Limits the total allocatable memory to \<limit> megabytes across all processes. |
| `-N <limit>` | Sets the default per-proxy maxconn to \<limit> instead of the builtin default value (usually 2000). |
| `-L <name>` | Changes the local peer name to \<name>, which defaults to the local hostname. |
| `-p <file>` | Writes all processes' PIDs into \<file> during startup. |
| `-n <limit>` | Limits the per-process connection limit to `<limit>`. |
| `-m <limit>` | Limits the total allocatable memory to `<limit>` megabytes across all processes. |
| `-N <limit>` | Sets the default per-proxy maxconn to `<limit>` instead of the builtin default value (usually 2000). |
| `-L <name>` | Changes the local peer name to `<name>`, which defaults to the local hostname. |
| `-p <file>` | Writes all processes' PIDs into `<file>` during startup. |
| `-de` | Disables the use of epoll(7). epoll(7) is available only on Linux 2.6 and some custom Linux 2.4 systems. |
| `-dp` | Disables the use of poll(2). select(2) might be used instead. |
| `-dS` | Disables the use of splice(2), which is broken on older kernels. |
Expand Down
4 changes: 2 additions & 2 deletions sql-statements/sql-statement-revoke-privileges.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ category: reference
aliases: ['/docs/v2.1/reference/sql/statements/revoke-privileges/']
---

# REVOKE <privileges>
# `REVOKE <privileges>`

This statement removes privileges from an existing user.

Expand Down Expand Up @@ -81,6 +81,6 @@ This statement is understood to be fully compatible with MySQL. Any compatibilit

## See also

* [GRANT <privileges>](/sql-statements/sql-statement-grant-privileges.md)
* [`GRANT <privileges>`](/sql-statements/sql-statement-grant-privileges.md)
* [SHOW GRANTS](/sql-statements/sql-statement-show-grants.md)
* [Privilege Management](/privilege-management.md)
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-set-names.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,5 @@ This statement is understood to be fully compatible with MySQL. Any compatibilit
## See also

* [SHOW \[GLOBAL|SESSION\] VARIABLES](/sql-statements/sql-statement-show-variables.md)
* [SET <variable>](/sql-statements/sql-statement-set-variable.md)
* [`SET <variable>]`(/sql-statements/sql-statement-set-variable.md)
* [Character Set Support](/character-set-and-collation.md)
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-set-transaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ mysql> SHOW SESSION VARIABLES like 'transaction_isolation';

## See also

* [SET \[GLOBAL|SESSION\] <variable>](/sql-statements/sql-statement-set-variable.md)
* [`SET [GLOBAL|SESSION] <variable>`](/sql-statements/sql-statement-set-variable.md)
* [Isolation Levels](/transaction-isolation-levels.md)
2 changes: 1 addition & 1 deletion sql-statements/sql-statement-show-privileges.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ This statement is understood to be fully compatible with MySQL. Any compatibilit
## See also

* [SHOW GRANTS](/sql-statements/sql-statement-show-grants.md)
* [GRANT <privileges>](/sql-statements/sql-statement-grant-privileges.md)
* [`GRANT <privileges>`](/sql-statements/sql-statement-grant-privileges.md)