zhouu 发表于 2018-10-11 07:45:04

centos6.5 yum安装MySQL5.6-CanonInD

# service mysqld strat  
用法:/etc/init.d/mysqld {start|stop|status|restart|condrestart|try-restart|reload|force-reload}
  
# service mysqld start
  
初始化 MySQL 数据库: 2016-05-11 10:15:01 0 TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).2016-05-11 10:15:01 0 /usr/sbin/mysqld (mysqld 5.6.30) starting as process 2843 ...2016-05-11 10:15:01 2843 InnoDB: Using atomics to ref count buffer pool pages2016-05-11 10:15:01 2843 InnoDB: The InnoDB memory heap is disabled2016-05-11 10:15:01 2843 InnoDB: Mutexes and rw_locks use GCC atomic builtins2016-05-11 10:15:01 2843 InnoDB: Memory barrier is not used2016-05-11 10:15:01 2843 InnoDB: Compressed tables use zlib 1.2.32016-05-11 10:15:01 2843 InnoDB: Using Linux native AIO2016-05-11 10:15:01 2843 InnoDB: Using CPU crc32 instructions2016-05-11 10:15:01 2843 InnoDB: Initializing buffer pool, size = 128.0M2016-05-11 10:15:01 2843 InnoDB: Completed initialization of buffer pool2016-05-11 10:15:01 2843 InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!2016-05-11 10:15:01 2843 InnoDB: Setting file ./ibdata1 size to 12 MB2016-05-11 10:15:01 2843 InnoDB: Database physically writes the file full: wait...2016-05-11 10:15:01 2843 InnoDB: Setting log file ./ib_logfile101 size to 48 MB2016-05-11 10:15:01 2843 InnoDB: Setting log file ./ib_logfile1 size to 48 MB2016-05-11 10:15:02 2843 InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile02016-05-11 10:15:02 2843 InnoDB: New log files created, LSN=457812016-05-11 10:15:02 2843 InnoDB: Doublewrite buffer not found: creating new2016-05-11 10:15:02 2843 InnoDB: Doublewrite buffer created2016-05-11 10:15:02 2843 InnoDB: 128 rollback segment(s) are active.2016-05-11 10:15:02 2843 InnoDB: Creating foreign key constraint system tables.2016-05-11 10:15:02 2843 InnoDB: Foreign key constraint system tables created2016-05-11 10:15:02 2843 InnoDB: Creating tablespace and datafile system tables.2016-05-11 10:15:02 2843 InnoDB: Tablespace and datafile system tables created.2016-05-11 10:15:02 2843 InnoDB: Waiting for purge to start2016-05-11 10:15:02 2843 InnoDB: 5.6.30 started; log sequence number 02016-05-11 10:15:03 2843 Binlog end2016-05-11 10:15:03 2843 InnoDB: FTS optimize thread exiting.2016-05-11 10:15:03 2843 InnoDB: Starting shutdown...2016-05-11 10:15:05 2843 InnoDB: Shutdown completed; log sequence number 16259772016-05-11 10:15:05 0 TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).2016-05-11 10:15:05 0 /usr/sbin/mysqld (mysqld 5.6.30) starting as process 2866 ...2016-05-11 10:15:05 2866 InnoDB: Using atomics to ref count buffer pool pages2016-05-11 10:15:05 2866 InnoDB: The InnoDB memory heap is disabled2016-05-11 10:15:05 2866 InnoDB: Mutexes and rw_locks use GCC atomic builtins2016-05-11 10:15:05 2866 InnoDB: Memory barrier is not used2016-05-11 10:15:05 2866 InnoDB: Compressed tables use zlib 1.2.32016-05-11 10:15:05 2866 InnoDB: Using Linux native AIO2016-05-11 10:15:05 2866 InnoDB: Using CPU crc32 instructions2016-05-11 10:15:05 2866 InnoDB: Initializing buffer pool, size = 128.0M2016-05-11 10:15:05 2866 InnoDB: Completed initialization of buffer pool2016-05-11 10:15:05 2866 InnoDB: Highest supported file format is Barracuda.2016-05-11 10:15:05 2866 InnoDB: 128 rollback segment(s) are active.2016-05-11 10:15:05 2866 InnoDB: Waiting for purge to start2016-05-11 10:15:05 2866 InnoDB: 5.6.30 started; log sequence number 16259772016-05-11 10:15:06 2866 Binlog end2016-05-11 10:15:06 2866 InnoDB: FTS optimize thread exiting.2016-05-11 10:15:06 2866 InnoDB: Starting shutdown...2016-05-11 10:15:07 2866 InnoDB: Shutdown completed; log sequence number 1625987PLEASE 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 mysql-1 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 isstrongly recommended for production servers.
  

  
See the manual for more instructions.
  

  
Please report any problems at http://bugs.mysql.com/The latest information about MySQL is available on the web at
  

  
http://www.mysql.comSupport MySQL by buying support/licenses at http://shop.mysql.comNote: new default config file not created.
  
Please make sure your config file is current
  

  
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
  

  
                                                         [确定]
  
正在启动 mysqld:                                          [确定]


页: [1]
查看完整版本: centos6.5 yum安装MySQL5.6-CanonInD