搭建 mysql 备忘 - myself
http://downloads.skysql.com/archive/index/p/mysql/v/5.1.52 1、安装VM虚拟机 2、安装SUSE9 linux版本 3、安装jdk环境 4、安装tomcat应用服务器 5、安装 linux mysql { RPM 安装 1、rpm -ivh MySQL* (对应mysql rpm包) 2、修改 etc目录下my.cnf文件 vi my.cnf 的sock指向 /var/lib/mysql/mysql.socket 重新初始化数据库 mysql_install_db --user=mysql --ldata=/new-data-location mysqld_safe --datadir=/new-data-location --user=mysql & 启动数据库 mysqld_safe start 登录数据库 并修改初始密码: mysql -u root password newpassword 赋远程登录权限 grant all on *.* to [email protected] grant all privileges on *.* to root @"%" identified by "hello"; flush privileges; 借助GUI操作mysql数据库 }
相关推荐
CoderToy 2020-11-16
emmm00 2020-11-17
bianruifeng 2020-11-16
云中舞步 2020-11-12
世樹 2020-11-11
暗夜之城 2020-11-11
Coder技术文摘 2020-09-29
huacuilaifa 2020-10-29
Gexrior 2020-10-22
tufeiax 2020-09-03
疯狂老司机 2020-09-08
王艺强 2020-11-17
aydh 2020-11-12
zry 2020-11-11
URML 2020-11-11
spurity 2020-11-10
yifangs 2020-10-13
Andrea0 2020-09-18
Ida 2020-09-16
ltd00 2020-09-12
xjd0 2020-09-10