Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2017
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. innobackupex --defaults-file="/etc/xtrabackup_client/backup.cnf"
  2. --socket="..." --extra-lsndir="/etc/xtrabackup_client/"
  3. --stream=xbstream /tmp |
  4. ssh "$backup_username@$backup_server" "cat - | xbstream -x -C /var/backups/xtrabackup/"
  5.  
  6. innobackupex --defaults-file="$mysql_defaults_file"
  7. --socket="..." --extra-lsndir="/etc/xtrabackup_client" --stream=xbstream
  8. --incremental --incremental-lsn="$to_lsn" /tmp |
  9. ssh "$backup_username@$backup_server" "cat - | xbstream -x -C /var/backups/xtrabackup_incremental/"
  10.  
  11. [client]
  12. user=backup
  13. password=secret
  14.  
  15. sudo -u mysql /usr/sbin/mysqld --basedir=/usr
  16. --datadir=/var/db/mysql --plugin-dir=/usr/lib/mysql/plugin
  17. --user=mysql --pid-file=/var/run/mysqld/mysqld.pid
  18. --socket=/var/run/mysqld/mysqld.sock --port=3306
  19.  
  20. 2017-01-03 18:55:41 140551642929088 [Note] /usr/sbin/mysqld (mysqld 10.1.20-MariaDB-1~trusty) starting as process 24455 ...
  21. 2017-01-03 18:55:41 140551642929088 [Note] Using unique option prefix 'myisam_recover' is error-prone and can break in the future. Please use the full name 'myisam-recover-options' instead.
  22. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: Using mutexes to ref count buffer pool pages
  23. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: The InnoDB memory heap is disabled
  24. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
  25. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: GCC builtin __atomic_thread_fence() is used for memory barrier
  26. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: Compressed tables use zlib 1.2.8
  27. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: Using Linux native AIO
  28. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: Using SSE crc32 instructions
  29. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: Initializing buffer pool, size = 256.0M
  30. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: Completed initialization of buffer pool
  31. 2017-01-03 18:55:41 140551642929088 [Note] InnoDB: Highest supported file format is Barracuda.
  32. InnoDB: No valid checkpoint found.
  33. InnoDB: If you are attempting downgrade from MySQL 5.7.9 or later,
  34. InnoDB: please refer to http://dev.mysql.com/doc/refman/5.6/en/upgrading-downgrading.html
  35. InnoDB: If this error appears when you are creating an InnoDB database,
  36. InnoDB: the problem may be that during an earlier attempt you managed
  37. InnoDB: to create the InnoDB data files, but log file creation failed.
  38. InnoDB: If that is the case, please refer to
  39. InnoDB: http://dev.mysql.com/doc/refman/5.6/en/error-creating-innodb.html
  40. 2017-01-03 18:55:41 140551642929088 [ERROR] Plugin 'InnoDB' init function returned error.
  41. 2017-01-03 18:55:41 140551642929088 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
  42. 2017-01-03 18:55:41 140551642929088 [Note] Plugin 'FEEDBACK' is disabled.
  43. 2017-01-03 18:55:41 140551642929088 [ERROR] Unknown/unsupported storage engine: InnoDB
  44. 2017-01-03 18:55:41 140551642929088 [ERROR] Aborting
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement