首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
您找到你想要的搜索结果了吗?
是的
没有找到

数据库介绍与分类

1、sql nosql:not only sql 2、mariadb的默认引擎用XtraDB来替代mysql的InnoDB 3、redis string,list,set,zset,push/pop,add/remove 使用内存缓存,支持持久化存储,数据类型丰富,主从 4、mongodb 5、mysql有企业版和社区版之分,生产环境一般GA版 下载地址;http://mirrors.sohu.com/mysql/ 6、数据库禁止用kill -9 强制删除 7、path=xx:$path 8、mysql -u -p -h -P 9、mysqladmin -u root password 'xxxx' alter user 'xx'@'' identified by 'xx'; grant all privileges on . to xx@xx identified by xx update mysql.user set authentication_string=password("new password") where User="username" and Host="localhost"; flush privileges; 10、用户表 select user.host from mysql.user; drop user root@':1' drop database test; 11、错误日志 [mysqld_safe] log-error

04
领券