摘要: version: "3.0" services: redis6379: image: redis:latest container_name: redis6379 ports: - "6379:6379" #挂载配置文件 volumes: - ./redis.conf:/etc/redis/redi 阅读全文
posted @ 2022-04-29 15:34 DaiWK 阅读(31) 评论(0) 推荐(0) 编辑
摘要: mysql8.0以前修改密码 update user set password=password('123456') where user='root'; flush privileges; mysql8.0后修改密码 update user set authentication_string='' 阅读全文
posted @ 2022-04-29 15:33 DaiWK 阅读(19) 评论(0) 推荐(0) 编辑