Wesley13 Wesley13
3年前
mysql服务设置远程连接 解决1251 client does not support ..问题
一、前期准备1、虚拟机/物理机  mysql环境(非本机)2、本机navicat软件(验证远程连接)二、mysql配置1、在远程主机的本机 使用root用户连接mysqlmysqlurootp备注:mysqlu最高权限用户名p 再输入密码进入!(http
Stella981 Stella981
3年前
Git使用总结
生成密钥1.打开GitBash,运行  \_sshkeygen  \_2.密钥生成空间\_~/.ssh/id\_rsa  \_(C:/User/.ssh)3.输入密码(不输入增直接回车跳过)4._~/.ssh/id\_rsa.pub_ (公钥), _id\_rsa_ (私钥)下载代码到本地
Easter79 Easter79
3年前
SpringBoot中 集成 redisTemplate 对 Redis 的操作(二)
SpringBoot中集成redisTemplate对Redis的操作(二)List类型的操作1、向列表左侧添加数据LongleftPushredisTemplate.opsForList().leftPush("name",name);2、向列表右侧添加数据
Wesley13 Wesley13
3年前
mysql 安装使用
本节掌握内容:MySQL的介绍安装、启动windows上制作服务MySQL破解密码MySQL中统一字符编码_MySQL是一个关系型数据库管理系统,由瑞典MySQLAB公司开发,目前属于Oracle旗
Wesley13 Wesley13
3年前
unity 中Canvas MatchHeight
设置了UIScaleModeScaleWithScreenSize,ReferenceResolutionX1334,Y750,ScreenMatchModeMatchWidthOrHeight,MatchWidth0,Height1,\
Stella981 Stella981
3年前
Redis Sentinel 服务端实现原理
Redis主从复制master!(https://static.oschina.net/uploads/space/2018/0305/133617_GcUB_3777515.png)!(https://static.oschina.net/uploads/space/2018/0305/133644_Ygtr_3777515.pn
Stella981 Stella981
3年前
CentOS7 PHP+Redis实现Session共享
先yum简单的安装rediswgetO/etc/yum.repos.d/CentOSBase.repohttp://mirrors.aliyun.com/repo/epel7.repoyumyinstallredis简单配置一下:vim/etc/redis.confdaemonizeye
Stella981 Stella981
3年前
JEHC开源平台,其中Activiti可视化设计
演示地址:http://49.233.42.59(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2F49.233.42.59%2F)普通账号及密码:jehc/123456各版本如下:1.Idea开发工具,BOOT版本,多工程依赖,Maven版本:http
Stella981 Stella981
3年前
SpringBoot中 集成 redisTemplate 对 Redis 的操作(二)
SpringBoot中集成redisTemplate对Redis的操作(二)List类型的操作1、向列表左侧添加数据LongleftPushredisTemplate.opsForList().leftPush("name",name);2、向列表右侧添加数据
Wesley13 Wesley13
3年前
Java之面向对象3.1.3
publicclassPerson{      //成员变量   privateStringname; //姓名   privateintage;      //年龄      //公共的设置属性的方法:setter   publicvoidsetName(Stringname)