码迷,mamicode.com
首页 >  
搜索关键字:unable to set localhost    ( 74051个结果
7 Redis部署
redis学习 五大数据类型,开发必会的技能 老师的博客 https://www.cnblogs.com/pyyu/p/9467279.html string,字符串类型 hash,哈希类型,如同python的dict Set,无序集合 Zset,有序集合 List,双向队列,向左插入数据,向右插入 ...
分类:其他好文   时间:2021-06-19 18:53:25    阅读次数:0
用户组管理
用户组管理 1 用户管理命令 1 useradd # 添加用户 2 userdel # 删除用户 3 usermod # 修改用户信息 ? # 创建用户 [root@localhost ~]# useradd user1 # 查看用户 [root@localhost ~]# id user1 uid ...
分类:其他好文   时间:2021-06-19 18:44:29    阅读次数:0
解决mysql:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO/YES)
一、问题 有时候我们登录Mysql输入密码的时候,会出现这种情况 mysql -u root -p Enter Password > '密码' 错误:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using passwo ...
分类:数据库   时间:2021-06-18 20:10:32    阅读次数:0
unity3d给某个对象添加材质
unity3d给某个对象添加材质 public void SetMaterial() { GameObject indexGameObject=list_topIfcSlabs[5]; Renderer[] renders = indexGameObject.GetComponentsInChild ...
分类:编程语言   时间:2021-06-18 20:10:10    阅读次数:0
Swagger
1.简介 RestFul API文档在线自动生成工具 => API文档与API定义同步更新 直接运行,可以在线测试API接口 2.在项目使用Swagger需要springfox swagger2 ui 3.SpringBoot集成Swagger2 在pom.xml中导入依赖 <!-- https:/ ...
分类:其他好文   时间:2021-06-18 20:07:05    阅读次数:0
实验六
from turtle import * def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for ...
分类:其他好文   时间:2021-06-18 20:05:27    阅读次数:0
服务器 安装docker
#更新yum软件管理器 yum -y update #安装docker yum install -y docker 2.配置docker 加速器 curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://f1361 ...
分类:其他好文   时间:2021-06-18 20:01:26    阅读次数:0
[PHP] 理解依赖注入容器
容器就是个存东西的地方 依赖注入,就是通过构造函数,属性或者set方法传递对象的方式 如果依赖的类太多了,那么通过上面的方式传递对象就很繁琐 那么我们就可以直接传进去一个容器,需要的时候就在容器里面去拿就简单多了 这就是我们的容器类 //简单容器类 class Container { private ...
分类:Web程序   时间:2021-06-18 20:00:39    阅读次数:0
实验六
from turtle import *def moveto(x,y): penup() goto(x,y) pendown()def main(): setup(800, 600) speed(0) for radius in range(20, 200, 20): moveto(0, -radi ...
分类:其他好文   时间:2021-06-18 20:00:08    阅读次数:0
DI依赖注入
DI依赖注入 set方式注入【重点】 依赖注入:set注入 依赖:bean对象的创建依赖于容器 注入:bean对象中的所有属性,由容器来注入 【环境搭建】 1.真实测试对象 2.复杂类型 @Data public class Student { private String name; privat ...
分类:其他好文   时间:2021-06-18 19:53:42    阅读次数:0
74051条   上一页 1 ... 10 11 12 13 14 ... 7406 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!