logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

docker 启动nexus 出现的问题

问题1:启动nexus时,没有权限操作宿主机文件夹docker run -d -p 8082:8082 -v /home/nexus-data/:/nexus-data/ --name nexus1 sonatype/nexus3Warning:Cannot open log file: ../sonatype-work/nexus3/log/jvm.logWarning:F...

redis 与 数据库(Mysql)同步

最近接触 redis,发现其读取速度快,突然想到,redis 怎么和数据库同步呢,怎么能把数据库的所有数据存到redis里面,能使用户更快速的查找。方法1:mysql 同步到redis:解析mysql的binlog,然后做同步处理,可以使用的库有:open-replicator(https://github.com/whitesock/open-replicator)方法2:同步redis数据到m

#数据库#mysql#redis
redis 与 数据库(Mysql)同步

最近接触 redis,发现其读取速度快,突然想到,redis 怎么和数据库同步呢,怎么能把数据库的所有数据存到redis里面,能使用户更快速的查找。方法1:mysql 同步到redis:解析mysql的binlog,然后做同步处理,可以使用的库有:open-replicator(https://github.com/whitesock/open-replicator)方法2:同步redis数据到m

#数据库#mysql#redis
docker启动mysql 连不上数据库 (2003:Can’t connect to MySQL server (10060))

# docker进入mysql容器docker exec -it mysql /bin/bash# 进入mysqlmysql# 执行命令grant all privileges on *.* to 'root'@'%' identified by '密码';flush privileges;# 重启mysql容器docker restart mysql...

redis 与 数据库(Mysql)同步

最近接触 redis,发现其读取速度快,突然想到,redis 怎么和数据库同步呢,怎么能把数据库的所有数据存到redis里面,能使用户更快速的查找。方法1:mysql 同步到redis:解析mysql的binlog,然后做同步处理,可以使用的库有:open-replicator(https://github.com/whitesock/open-replicator)方法2:同步redis数据到m

#数据库#mysql#redis
到底了