[[email protected] opt]# useradd -s /sbin/nologin mysql [[email protected] opt]# yum install libtermcap-devel #mysql 所需包 [[email protected] opt]# tar zxf mysql-5.1.52.tar.gz [[email protected] opt]# cd mysql-5.1.52 [[email protected] mysql-5.1.52]# ./configure > --prefix=/usr/local/mysql --enable-assembler > --with-mysqld-ldflags=-all-static > --with-client-ldflags=-all-static > --with-unix-socket-path=/usr/local/mysql/tmp/mysql.sock > --with-charset=utf8 > --with-collation=utf8_general_ci > --with-plugins=innobase > --with-extra-charsets=all [[email protected] mysql-5.1.52]# make && make install [[email protected] mysql-5.1.52]# cp support-files/my-medium.cnf /etc/my.cnf #复制配置文件到etc目录 [[email protected] mysql-5.1.52]# cd /usr/local/mysql [[email protected] mysql-5.1.52]# bin/mysql_install_db --user=mysql #安装mysql db [[email protected] mysql-5.1.52]# chown –R mysql /usr/local/mysql [[email protected] mysql-5.1.52]# bin/mysqld_safe --user=mysql & #启动mysql [[email protected] mysql-5.1.52]# cp share/mysql/mysql.server /etc/init.d/mysqld [[email protected] mysql-5.1.52]# chmod 755 /etc/init.d/mysqld [[email protected] mysql-5.1.52]# chkconfig -–add mysqld [[email protected] mysql-5.1.52]# chkconfig mysqld on #开机启动 [[email protected] mysql-5.1.52]# /etc/init.d/mysqld restart
2,my.cnf 配置,添加如下配置
max_allowed_packet = 16M skip-name-resolve #跳过dns查询 max_connections=1000 #log-bin=mysql-bin #如果不使用主从配置,可以注释 #binlog_format=mixed default-storage-engine=INNODB #设置默认引擎 thread_concurrency = 16 #CPU逻辑线程数的2-4倍,我们搭载的CPU为8核心 × 2
3, 设置密码
[[email protected] mysql]# bin/mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MySQL to secure it, we‘ll need the current password for the root user. If you‘ve just installed MySQL, and you haven‘t set the root password yet, the password will be blank, so you should just press enter here. Enter current password for root (enter for none): #密码为空 OK, successfully used password, moving on... Setting the root password ensures that nobody can log into the MySQL root user without the proper authorisation. Set root password? [Y/n] y #设置密码 New password: Re-enter new password: Password updated successfully! Reloading privilege tables.. ... Success! By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment. Remove anonymous users? [Y/n] y ... Success! Normally, root should only be allowed to connect from ‘localhost‘. This ensures that someone cannot guess at the root password from the network. Disallow root login remotely? [Y/n] y ... Success! By default, MySQL comes with a database named ‘test‘ that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment. Remove test database and access to it? [Y/n] y - Dropping test database... ... Success! - Removing privileges on test database... ... Success! Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? [Y/n] y ... Success! Cleaning up... All done! If you‘ve completed all of the above steps, your MySQL installation should now be secure. Thanks for using MySQL!
时间: 2024-10-10 06:43:48