- 博客(77)
- 资源 (16)
- 问答 (1)
- 收藏
- 关注
原创 default_authentication_plugin‘ is deprecated and will be removed in a future release. Please use aut
mysql 服务已经启动成功。mysql 服务正在启动 …
2023-05-25 15:45:43
4346
2
原创 your password has expired,to log in you must change ti using a client that supports expired password
解决办法。
2023-05-20 17:19:31
2208
原创 centos7 安装部署 gitlab-ce-14
第一步:rpm -ivh gitlab-ce-14.0.3-ce.0.el7.x86_64.rpm第二步:vim /etc/gitlab/gitlab.rb修改这里:external_url ‘http://192.168.80.13:9000’第三步[root@localhost ~]# sudo gitlab-ctl reconfigure**这个步骤非常耗费内存,执行reconfigure期间如果内存不足会出现ruby_block[authorize Grafana with GitLab]
2023-05-13 16:24:10
29574
原创 wget -c 当网络下载缓慢或者文件非常大的时候,或在不小心ctrl+c 截断了下载,往往一个文件还没有下载完,连接就已经被切断,此时就需要断点续传
wget -c 当网络下载缓慢或者文件非常大的时候,或在不小心ctrl+c 截断了下载,往往一个文件还没有下载完,连接就已经被切断,此时就需要断点续传
2023-05-07 21:31:15
1930
原创 resolve centos 7 can‘t watch video
Installed:Complete!Installed:Complete!Installed:Complete!Installed:
2023-05-07 01:39:31
582
原创 遍历JSONArray String转换成json 然后再遍历获取key
System.out.println(“遍历lengthAarry,获取数组中的name属性值:”+arryJSONObject.get(“name”));System.out.println(“遍历lengthAarry,获取数组中的code属性值:”+arryJSONObject.get(“code”));String json = “[{“name”:“张钊”,“code”:“444”},{“name”:“刘备”,“code”:“456”}]”;* 遍历JSONArray。
2023-05-02 22:08:58
760
原创 重新封装 map 的key和value
mapDriver.put(“作者”,atashMap.get(key));atashMap.put(“三国演义”,“罗贯中”);// map.put(“李四”,15);// map.put(“王五”,12);// map.put(“赵六”,10);atashMap.put(“水浒传”,“施耐庵”);atashMap.put(“西游记”,“吴承恩”);atashMap.put(“红楼梦”,“曹雪芹”);// map.put(“张三”,1);
2023-03-12 10:17:41
242
原创 Cannot deserialize instance of java.lang.Integer out of START_OBJECT token
Cannot deserialize instance of java.lang.Integer out of START_OBJECT token
2022-06-30 10:52:58
1300
原创 Cannot deserialize value of type `java.util.Date` from String \“2022-05-12 09:53:08\“: not a valid
JSON parse error: Cannot deserialize value of type java.util.Date from String “2022-05-12 09:53:08”: not a valid representation (error: Failed to parse Date value ‘2022-05-12 09:53:08’: Cannot parse date “2022-05-12 09:53:08”: while it seems to fit format
2022-05-31 13:51:53
1973
原创 Failed to introspect Class [org.springframework.cloud.context.properties.ConfigurationPropertiesBean
Failed to introspect Class [org.springframework.cloud.context.properties.ConfigurationPropertiesBeans] from ClassLoader [sun.misc.Launcher$AppClassLoader@18b4aac2]at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean
2022-01-29 10:27:32
3354
原创 Relying upon circular references is discouraged and they are prohibited by default. Update your
Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-cir
2022-01-28 15:49:06
7054
2
原创 warning: LF will be replaced by CRLF in ytlab_log/log_debug.log. The file will have its original lin
$ git add .warning: LF will be replaced by CRLF in ytlab_log/log_debug.log.The file will have its original line endings in your working directoryAdministrator@PC09O5 MINGW64 /f/code6/hee/新建文件夹/hee (master)$ git config --global core.autocrlf false...
2021-07-01 19:26:51
136
原创 org.springframework.security.core.userdetails.UsernameNotFoundException: admin
找不到用户org.springframework.security.core.userdetails.UsernameNotFoundException: admin你需要重写这个接口public interface UserDetailsService { UserDetails loadUserByUsername(String var1) throws UsernameNotFoundException;}-=========================...
2021-06-30 14:14:20
3513
1
原创 GIT :error: remote origin already exists.
Administrator@PC-5O5 MINGW64 /f/code6/newworld (dev)$ git remote add origin https://gitee.com/weivihaha/machine.giterror: remote origin already exists.提示远程origin 已经存在,那么要删除他Administrator@PC-55 MINGW64 /f/code6/newworld (dev)$ git remote rm origin.
2021-06-24 19:04:22
416
原创 【git常见问题】fatal: Not a valid object name: ‘latest_branch‘.
F:\newtests\dbhee>git branch latestbranchfatal: Not a valid object name: 'latest_branch'.原因是没有提交一个对象,要先commit之后才会真正建立master分支,此时才可以建立其它分支。F:\newtests\dbhee>git add .F:\newtests\dbhee>git commit -m "message"[latest_branch (root-commit) fc..
2021-06-23 18:50:14
347
原创 2021-04-20Expected one result(or null) to be returned by selectOne(),but found :45 idea 控制台报错!!
Expected one result(or null) to be returned by selectOne(),but found :48你查下的不是一条数据,是48条数据返回多条数据是多个map 多个map 用List<Map<String,Object> > 来接收多条数据;
2021-04-20 20:36:23
229
原创 2021-04-19用idea 测试接口数据 报错 Required request body is missing
用idea 测试接口数据 报错 Required request body is missing后台用@RequestBody注解来接受参数 postman 请求报Required request body is missing 解决办法:postman 请求的时候在body里面 选择raw的方式 ,并选择json 格式来传送数据!!...
2021-04-19 16:22:48
429
原创 2021-04-19Incorrect table definition; there can be only one auto column and it must be defined as a
SQL 错误 [1075] [42000]: Incorrect table definition; there can be only one auto column and it must be defined as a key意思是:设为自增的字段必须是主键,而我用的是客户端,表是批量从SQLServer复制到MySQL的,导致最后MySQL表中主键丢失,设置id为主键并设为自增后,保存成功,问题解决。...
2021-04-19 14:50:42
408
原创 IntelliJ IDEA 删除项目 清空项目缓存
IntelliJ IDEA 删除项目IntelliJ IDEA 删除项目,先关闭项目(close project),然后界面上不会是有项目例表,鼠标移到你想要删除的项目上(不要点击,一点就打开了),然后按DELETE键
2017-09-21 08:15:47
22363
原创 Active connection path: /org/freedesktop/NetworkManager/ActiveConnection/12 Error: Timeout 90 sec ex
网卡1重启失败,原因是由于RedHat自己开发的NetworkManager管理工具和/etc/sysconfig/network-scripts/ifcfg-ethx配置不同步造成的。消除这个提示,请关闭NetworkManager服务即可:Bringing up interface eth1: Active connection state: activatingActive con
2016-12-21 13:50:23
3489
1
原创 java基础学习
面向对象编程,面向物体编程对象是具体的事物,类是对对象的抽象面向对象 编程的本质,以类的方式组织代码,以对象的方式组织(封装)数据ooa 面向对象分析,ood 面向对象设计抽出像的部分,比如农民,地主,工人比如天使,抽象出他们的共同点:有翅膀,女孩,善良。类可以看成是一类对象的模板,对象可以看成是改类的一个具体实例类中定义
2016-11-22 14:07:44
313
原创 Result: PRVF-4007 : User equivalence check failed for user "grid"
[grid@rac1 bin]$ ./cluvfy stage -pre nodeadd -n rac3 -fixup -verbose Performing pre-checks for node addition Checking node reachability...Check: Node reachability from node "rac1"
2016-08-06 20:32:22
3295
原创 Bringing up interface eth0: Error: No suitable device found: no device found for connection 'System
[root@mytestdb rules.d]# service network restartShutting down loopback interface: [ OK ]Bringing up loopback interface: [ OK ]Bringing up
2016-07-30 11:06:03
671
原创 Bringing up interface Auto_eth3: Error: Connection activation failed: Device not managed by Network
[root@rac1 Desktop]# chkconfig NetworkManager off[root@rac1 Desktop]# chkconfig network on[root@rac1 Desktop]# service NetworkManager stopStopping NetworkManager daemon:
2016-07-28 22:18:00
1324
原创 UDEV模式下添加删除创建ASM磁盘
添加UDEV新磁盘规则root@rac2 ~]# cat /etc/udev/rules.d/99-oracle-asmdevices.rules KERNEL=="sd*", BUS=="scsi", PROGRAM=="/sbin/scsi_id -g -u -s %p", RESULT=="SATA_VBOX_HARDDISK_VBc95e5d3a-1aca6dfd_",NAME
2016-07-26 17:28:53
3687
原创 安装grid时,task resolv.conf integrity failed
This task checks consistency of file /etc/resolv.conf file across nodes (more details) Check Failed on Nodes: [rac2] Check Succeeded On Nodes: [rac1] 如果没有配置DNS(只在hosts文件里标明),检测/etc/resolv.con
2016-07-24 17:47:43
10534
原创 [INS-060001]Failed to perform operation due to internal driver error.
[root@rac2 grid]# ssh rac1 dateThe authenticity of host 'rac1 (192.168.4.10)' can't be established.RSA key fingerprint is 24:8d:ee:9a:ac:2a:0d:bb:01:40:c4:c6:77:0c:86:fe.Are you sure you want to
2016-07-23 20:21:29
4931
1
原创 [INS-20802] Oracle Cluster Verification Utility failed
ping 一下scan ip 如果能通,就可以了!
2016-07-18 13:38:10
2226
原创 11gr2 grid安装的时候,ASM磁盘status为Member
解决方法;用Linux 下的dd 命令擦除磁盘[root@rac1 ~]# dd if=/dev/sdc of=/dev/sdc2097152+0 records in2097152+0 records out1073741824 bytes (1.1 GB) copied, 16.3332 s, 65.7 MB/s[root@rac1 ~]# dd if=/dev/sdd
2016-07-18 10:51:15
4408
原创 [INS-41112]Specified network interface doesnt maintain connectivity across cluster nodes
尝试ping 所有的节点看看是否能通过[root@rac1 media]# ssh rac1The authenticity of host 'rac1 (192.168.4.20)' can't be established.RSA key fingerprint is 59:45:33:75:ae:e3:ac:09:4a:ed:9c:86:bf:41:8c:47.Ar
2016-07-16 19:33:03
2399
原创 OGGCORE_12.2.0.1.0_PLATFORMS_151211.1401_FBO install
[oracle@testdb iso]$ cd fbo_ggs_Linux_x64_shiphome[oracle@testdb fbo_ggs_Linux_x64_shiphome]$ cd Disk1/[oracle@testdb Disk1]$ export DISPLAY=192.168.4.10:0.0[oracle@testdb Disk1]$ ./runIns
2016-07-02 21:51:24
481
SpringBoot+Mybatis-plus+codegenerator JavaWeb平台快速开发框架
2023-05-05
MybatisX-1.5.0.zip 开发利器 可实现mapper 层 和mybatis层自动跳转,可自动生成代码!!
2022-06-22
[崔华著]基于Oracle的SQL优化-高清非扫描版
2015-05-20
LINUX使用教程 LINUX使用教程
2011-03-05
思科和华为产品快速对比
2010-04-03
2009+3560交换机自学命令与配置》第一版
2010-04-03
2010 思科路由协议100 问
2010-04-03
802.1x 协议是一种基于端口的网络接入控制协议
2010-02-26
BGP(Border Gateway Protocol,边界网关协议)
2010-02-26
H3CSE 考题(设计)
2009-11-21
云计算入门指南谈论云计算时,人们很容易迷失方向。大家似乎都拥有云、连接云、实现云、或者至少准备好实施云。 其中有许多行话,但行话后面,也蕴藏着一些非常真实的商业和技术利益。
2009-05-05
RMAN-06054: and starting SCN of 1025204
2016-07-09
TA创建的收藏夹 TA关注的收藏夹
TA关注的人