wss1051 发表于 2018-9-30 10:44:59

glibc方式安装mysql

  下载安装包mysql-5.6.38-linux-glibc2.12-x86_64.tar.gz
  创建mysql用户
  useradd -r mysql -s /sbin/nologin
  解压文件
  tar -zxvf mysql-5.6.38-linux-glibc2.12-x86_64.tar.gz -C /opt/
  改名
  mv /opt/mysql-5.6.38-linux-glibc2.12-x86_64/ /opt/mysql-5.6
  创建数据目录
  mkdir /data
  更改目录属组
  

chown -R mysql.mysql /data  
chown -R mysql.mysql /opt/mysql-5.6/
  

  安装mysql
  

cd /opt/mysql-5.6/scripts/  ./mysql_install_db --basedir=/opt/mysql-5.6/ --datadir=/data --user=mysql --pid-file=/opt/mysql-5.6/mysql.pid
  

  安装mysql报错
  FATAL ERROR: please install the following Perl modules before executing
  缺少autoconf包
  yum-y install autoconf
  error while loading shared libraries: libaio.so.1:
  缺少libaio-devel包
  yum -y install libaio-devel
  添加启动脚本
  cp /opt/mysql-5.6/support-files/mysql.server /etc/init.d/mysqld
  修改配置文件
  

vi /etc/my.cnf  

  basedir = /opt/mysql-5.6
  datadir = /data
  socket = /tmp/mysql.sock
  pid-file =/opt/mysql-5.6/mysql.pid
  log-bin=mysql-bin
  binlog_format=mixed
  character-set-server = utf8
  max_connections = 3000
  default_storage_engine = InnoDB
  innodb_file_per_table = 1
  innodb_open_files = 500
  innodb_buffer_pool_size = 64M
  innodb_write_io_threads = 4
  innodb_read_io_threads = 4
  innodb_thread_concurrency = 0
  innodb_purge_threads = 1
  innodb_flush_log_at_trx_commit = 2
  innodb_log_buffer_size = 2M
  innodb_log_file_size = 32M
  innodb_log_files_in_group = 3
  innodb_max_dirty_pages_pct = 90
  innodb_lock_wait_timeout = 120
  interactive_timeout = 28800
  wait_timeout = 28800
  lower_case_table_names=1
  event_scheduler=1
  skip-name-resolve=1
  

  quick
  max_allowed_packet = 32M
  

  启动mysql
  

/etc/init.d/mysqld start  

  修改root密码
  

cd /opt/mysql-5.6  
./bin/mysqladmin -u root password '123'
  

  登录mysql
  

cd/opt/mysql-5.6  
./bin/mysql -uroot -p'123'
  

  删除空用户和空密码
  

delete from mysql.user where user='';  
delete from mysql.db where user='';
  

  报错
  

ERROR 2002 (HY000): Can't connect to local MySQL server through socket  
'/tmp/mysql.sock' (2)
  

  找到mysql.sock文件,然后做个软连接
  ln -s /opt/mysql-5.6/mysql.sock /tmp/mysql.sock


页: [1]
查看完整版本: glibc方式安装mysql