Advertisement
Guest User

49094911-misc

a guest
Mar 5th, 2018
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. ulimit -a
  2. core file size (blocks, -c) 0
  3. data seg size (kbytes, -d) unlimited
  4. scheduling priority (-e) 0
  5. file size (blocks, -f) unlimited
  6. pending signals (-i) 200543
  7. max locked memory (kbytes, -l) 64
  8. max memory size (kbytes, -m) unlimited
  9. open files (-n) 100000
  10. pipe size (512 bytes, -p) 8
  11. POSIX message queues (bytes, -q) 819200
  12. real-time priority (-r) 0
  13. stack size (kbytes, -s) 8192
  14. cpu time (seconds, -t) unlimited
  15. max user processes (-u) 200543
  16. virtual memory (kbytes, -v) unlimited
  17. file locks (-x) unlimited
  18.  
  19.  
  20.  
  21.  
  22.  
  23. iostat -x
  24. Linux 3.10.0-693.17.1.el7.x86_64 (vmi162141.contaboserver.net) 03/05/2018 _x86_64_ (10 CPU)
  25.  
  26. avg-cpu: %user %nice %system %iowait %steal %idle
  27. 6.15 0.00 0.14 0.19 0.03 93.48
  28.  
  29. Device: rrqm/s wrqm/s r/s w/s rkB/s wkB/s avgrq-sz avgqu-sz await r_await w_await svctm %util
  30. sda 0.40 7.21 1.39 8.14 393.04 8760.61 1919.74 2.06 215.75 24.47 248.43 2.12 2.02
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38. cat /etc/my.cnf.d/*
  39. #
  40. # These two groups are read by the client library
  41. # Use it for options that affect all clients, but not the server
  42. #
  43.  
  44.  
  45. [client]
  46.  
  47. # This group is not read by mysql client library,
  48. # If you use the same .cnf file for MySQL and MariaDB,
  49. # use it for MariaDB-only client options
  50. [client-mariadb]
  51.  
  52. #
  53. # !include this file into your my.cnf (or any of *.cnf files in /etc/my.cnf.d)
  54. # and it will enable data at rest encryption. This is a simple way to
  55. # ensure that everything that can be encrypted will be and your
  56. # data will not leak unencrypted.
  57. #
  58. # DO NOT EDIT THIS FILE! On MariaDB upgrades it might be replaced with a
  59. # newer version and your edits will be lost. Instead, add your edits
  60. # to the .cnf file after the !include directive.
  61. #
  62. # NOTE that you also need to install an encryption plugin for the encryption
  63. # to work. See https://mariadb.com/kb/en/mariadb/data-at-rest-encryption/#encryption-key-management
  64. #
  65. [mariadb]
  66. aria-encrypt-tables
  67. encrypt-binlog
  68. encrypt-tmp-disk-tables
  69. encrypt-tmp-files
  70. loose-innodb-encrypt-log
  71. loose-innodb-encrypt-tables
  72. #
  73. # These groups are read by MariaDB command-line tools
  74. # Use it for options that affect only one utility
  75. #
  76.  
  77. [mysql]
  78.  
  79. [mysql_upgrade]
  80.  
  81. [mysqladmin]
  82.  
  83. [mysqlbinlog]
  84.  
  85. [mysqlcheck]
  86.  
  87. [mysqldump]
  88.  
  89. [mysqlimport]
  90.  
  91. [mysqlshow]
  92.  
  93. [mysqlslap]
  94.  
  95. #
  96. # These groups are read by MariaDB server.
  97. # Use it for options that only the server (but not clients) should see
  98. #
  99. # See the examples of server my.cnf files in /usr/share/mysql/
  100. #
  101.  
  102. # this is read by the standalone daemon and embedded servers
  103. [server]
  104.  
  105. # this is only for the mysqld standalone daemon
  106. [mysqld]
  107.  
  108. #
  109. # * Galera-related settings
  110. #
  111. [galera]
  112. # Mandatory settings
  113. #wsrep_on=ON
  114. #wsrep_provider=
  115. #wsrep_cluster_address=
  116. #binlog_format=row
  117. #default_storage_engine=InnoDB
  118. #innodb_autoinc_lock_mode=2
  119. #
  120. # Allow server to accept connections on all interfaces.
  121. #
  122. #bind-address=0.0.0.0
  123. #
  124. # Optional setting
  125. #wsrep_slave_threads=1
  126. #innodb_flush_log_at_trx_commit=0
  127.  
  128. # this is only for embedded server
  129. [embedded]
  130.  
  131. # This group is only read by MariaDB servers, not by MySQL.
  132. # If you use the same .cnf file for MySQL and MariaDB,
  133. # you can put MariaDB-only options here
  134. [mariadb]
  135.  
  136. # This group is only read by MariaDB-10.1 servers.
  137. # If you use the same .cnf file for MariaDB of different versions,
  138. # use this group for options that older servers don't understand
  139. [mariadb-10.1]
  140.  
  141. [mariadb]
  142. # See https://mariadb.com/kb/en/how-to-enable-tokudb-in-mariadb/
  143. # for instructions how to enable TokuDB
  144. #
  145. # See https://mariadb.com/kb/en/tokudb-differences/ for differences
  146. # between TokuDB in MariaDB and TokuDB from http://www.tokutek.com/
  147.  
  148. #plugin-load-add=ha_tokudb.so
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement