标签:随机密码 配置 自启动 tar 启动 bsp 测试 工作 ref
去官网下载MySQL:点我直达
百度云盘地址:链接: https://pan.baidu.com/s/1qBN4r6t8gvq-I4CFfQQ-EA 密码: hei3
若查询出结果,代码已经安装过MySQL,我们卸载Linux自带的版本
如果有,就执行rm -rf xxxx
若没有,则创建
务必记住初始化输出日志末尾的密码(数据库管理员临时密码)
./mysqld --initialize --user=mysql --datadir=/usr/local/mysql/data --basedir=/usr/local/mysql
[mysqld]
datadir=/usr/local/mysql/data
port = 3306
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
symbolic-links=0
max_connections=400
innodb_file_per_table=1
#表名大小写不明感,敏感为
lower_case_table_names=1
ln -s /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql
ln -s /usr/local/mysql/bin/mysql /usr/bin/mysql
service mysql restart
use mysql #访问mysql库
update user set host = ‘%‘ where user = ‘root‘; #使root能再任何host访问
FLUSH PRIVILEGES; #刷新
1、将服务文件拷贝到init.d下,并重命名为mysql
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
2、赋予可执行权限
chmod +x /etc/init.d/mysqld
3、添加服务
chkconfig --add mysqld
4、显示服务列表
chkconfig --list
标签:随机密码 配置 自启动 tar 启动 bsp 测试 工作 ref
原文地址:https://www.cnblogs.com/chenyanbin/p/13144042.html