失效链接处理 |
linux mysql5.5 一主多从配置 PDF 下载
本站整理下载:
提取码:nesj
相关截图:
主要内容:
安装前必须删除原来的安装
需要检查 以下文件是否存在 ,如果存储则要删除之
/etc/my.cnf
/etc/init.d/mysqld
mysql 依赖的库
shell> yum search libaio # search for info
shell> yum install libaio # install library
创建mysql 与用户组,-s /bin/false 表示该用户不能登录
shell> groupadd mysql
shell> useradd -r -g mysql -s /bin/false mysql
解压安装包至指定目录
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
为 mysql 用户添加权限
shell> chown -R mysql ./
shell> chgrp -R mysql ./
#创建data目录并添加权限
shell> mkdir -p /data/mysql
shell> chown -R mysql:mysql /data/mysql
拷贝配置文件
shell> cp ${basedir}/support-files/my-medium.cnf /etc/my.cnf
#修改配置
[mysqld]
basedir=/home/cbt/svr/mysql
datadir=/data/mysql
character-set-server=utf8
shell> cp support-files/mysql.server /etc/init.d/mysql
初始化 mysql 库
shell> ./scripts/mysql_install_db --user=mysql --basedir=/home/cbt/svr/mysql --datadir=/data/mysql
#添加环境变量
shell> vi /etc/profile
PATH=/home/cbt/svr/mysql/bin:$PATH
export PATH
#让刚才的修改生效
shell> source /etc/profile
启动及其它配置 #启动数据库
service mysql start
#开机启动
chkconfig mysqld on
#初始化mysql的一些设置
mysql_secure_installation
#回车
Enter current password for root (enter for none):
#y,设置mysql的root密码
Set root password?[Y/n] y
|