MySQL: fresh startup script

[ root @ dbversity : /tmp ] cat mysql_fresh_start.sh
service mysql stop &
sleep 10;
cd /var/lib/mysql
rm -rf /var/lib/mysql/*
mysql_install_db &
sleep 10;
chown mysql:mysql /var/lib/mysql/ -R
echo -e “\n”
service mysql start &
sleep 5;
echo -e “\n”
mysql -e “GRANT ALL PRIVILEGES ON *.* TO fabric@’%’; GRANT ALL PRIVILEGES ON *.* TO root@’%’; FLUSH PRIVILEGES;”
echo -e “\n”
echo “MySQL Slave status …”
mysql -e “show slave status\G” > /tmp/mysql_status.txt
echo -e “\n”
echo “MySQL Master status …”
mysql -e “show master status\G” >> /tmp/mysql_status.txt
cat /tmp/mysql_status.txt
[ root @ dbversity : /tmp ]
[ root @ dbversity : /tmp ]

[ root @ dbversity : /tmp ] sh mysql_fresh_start.sh
Shutting down MySQL.. SUCCESS!
Installing MySQL system tables…2015-07-01 04:29:39 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use –explicit_defaults_for_timestamp server option (see documentation for more details).
2015-07-01 04:29:39 0 [Note] /usr/sbin/mysqld (mysqld 5.6.25-log) starting as process 24631 …
2015-07-01 04:29:39 24631 [Note] InnoDB: Using atomics to ref count buffer pool pages
2015-07-01 04:29:39 24631 [Note] InnoDB: The InnoDB memory heap is disabled
2015-07-01 04:29:39 24631 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2015-07-01 04:29:39 24631 [Note] InnoDB: Memory barrier is not used
2015-07-01 04:29:39 24631 [Note] InnoDB: Compressed tables use zlib 1.2.3
2015-07-01 04:29:39 24631 [Note] InnoDB: Using Linux native AIO
2015-07-01 04:29:39 24631 [Note] InnoDB: Using CPU crc32 instructions
2015-07-01 04:29:39 24631 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2015-07-01 04:29:39 24631 [Note] InnoDB: Completed initialization of buffer pool
2015-07-01 04:29:39 24631 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
2015-07-01 04:29:39 24631 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
2015-07-01 04:29:39 24631 [Note] InnoDB: Database physically writes the file full: wait…
2015-07-01 04:29:39 24631 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
2015-07-01 04:29:39 24631 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
2015-07-01 04:29:39 24631 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
2015-07-01 04:29:39 24631 [Warning] InnoDB: New log files created, LSN=45781
2015-07-01 04:29:39 24631 [Note] InnoDB: Doublewrite buffer not found: creating new
2015-07-01 04:29:39 24631 [Note] InnoDB: Doublewrite buffer created
2015-07-01 04:29:39 24631 [Note] InnoDB: 128 rollback segment(s) are active.
2015-07-01 04:29:39 24631 [Warning] InnoDB: Creating foreign key constraint system tables.
2015-07-01 04:29:39 24631 [Note] InnoDB: Foreign key constraint system tables created
2015-07-01 04:29:39 24631 [Note] InnoDB: Creating tablespace and datafile system tables.
2015-07-01 04:29:39 24631 [Note] InnoDB: Tablespace and datafile system tables created.
2015-07-01 04:29:39 24631 [Note] InnoDB: Waiting for purge to start
2015-07-01 04:29:39 24631 [Note] InnoDB: 5.6.25 started; log sequence number 0
2015-07-01 04:29:39 24631 [Warning] Bootstrap mode disables GTIDs. Bootstrap mode should only be used by mysql_install_db which initializes the MySQL data directory and creates system tables.
2015-07-01 04:29:39 24631 [Note] Binlog end
2015-07-01 04:29:39 24631 [Note] InnoDB: FTS optimize thread exiting.
2015-07-01 04:29:39 24631 [Note] InnoDB: Starting shutdown…
2015-07-01 04:29:41 24631 [Note] InnoDB: Shutdown completed; log sequence number 1625977
OK

Filling help tables…2015-07-01 04:29:41 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use –explicit_defaults_for_timestamp server option (see documentation for more details).
2015-07-01 04:29:41 0 [Note] /usr/sbin/mysqld (mysqld 5.6.25-log) starting as process 24653 …
2015-07-01 04:29:41 24653 [Note] InnoDB: Using atomics to ref count buffer pool pages
2015-07-01 04:29:41 24653 [Note] InnoDB: The InnoDB memory heap is disabled
2015-07-01 04:29:41 24653 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2015-07-01 04:29:41 24653 [Note] InnoDB: Memory barrier is not used
2015-07-01 04:29:41 24653 [Note] InnoDB: Compressed tables use zlib 1.2.3
2015-07-01 04:29:41 24653 [Note] InnoDB: Using Linux native AIO
2015-07-01 04:29:41 24653 [Note] InnoDB: Using CPU crc32 instructions
2015-07-01 04:29:41 24653 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2015-07-01 04:29:41 24653 [Note] InnoDB: Completed initialization of buffer pool
2015-07-01 04:29:41 24653 [Note] InnoDB: Highest supported file format is Barracuda.
2015-07-01 04:29:41 24653 [Note] InnoDB: 128 rollback segment(s) are active.
2015-07-01 04:29:41 24653 [Note] InnoDB: Waiting for purge to start
2015-07-01 04:29:41 24653 [Note] InnoDB: 5.6.25 started; log sequence number 1625977
2015-07-01 04:29:41 24653 [Warning] Bootstrap mode disables GTIDs. Bootstrap mode should only be used by mysql_install_db which initializes the MySQL data directory and creates system tables.
2015-07-01 04:29:41 24653 [Note] Binlog end
2015-07-01 04:29:41 24653 [Note] InnoDB: FTS optimize thread exiting.
2015-07-01 04:29:41 24653 [Note] InnoDB: Starting shutdown…
2015-07-01 04:29:43 24653 [Note] InnoDB: Shutdown completed; log sequence number 1625987
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password ‘new-password’
/usr/bin/mysqladmin -u root -h dbversity password ‘new-password’

Alternatively you can run:

/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:

cd /usr ; /usr/bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl

cd mysql-test ; perl mysql-test-run.pl

Please report any problems at http://bugs.mysql.com/

The latest information about MySQL is available on the web at

http://www.mysql.com

Support MySQL by buying support/licenses at http://shop.mysql.com

WARNING: Found existing config file /usr/my.cnf on the system.
Because this file might be in use, it was not replaced,
but was used in bootstrap (unless you used –defaults-file)
and when you later start the server.
The new default config file was created as /usr/my-new.cnf,
please compare it with your file and take the changes you need.

WARNING: Default config file /etc/my.cnf exists on the system
This file will be read by default by the MySQL server
If you do not want to use this, either remove it, or use the
–defaults-file argument to mysqld_safe when starting the server

Starting MySQL. SUCCESS!
MySQL Slave status …
MySQL Master status …
*************************** 1. row ***************************
File: dbversity.000003
Position: 628
Binlog_Do_DB:
Binlog_Ignore_DB:
Executed_Gtid_Set: 569bf6e9-1fcb-11e5-9cd9-005056bb627d:1-3
[ root @ dbversity : /tmp ]

  • Ask Question