摘要:
public static void main(String[] arg){ InsureOrg org1= new InsureOrg(); org1.setOrgId("1"); org1.setOrgName("江苏"); org1.setAddress("中央路"); org1.setReg 阅读全文
摘要:
[root@ecm-8cc1 minio]# ./minio server /opt/minioINFO: Formatting 1st pool, 1 set(s), 1 drives per set.INFO: WARNING: Host local has more than 0 drives 阅读全文
摘要:
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 执行docker的命令时出现上面问题。 原因:此时已确定Docker本身已经安装正常。 问题原因是因为d 阅读全文
摘要:
show variables like 'event_scheduler'; set global event_scheduler = on; -- 登录root 进行设置 CREATE EVENT gmp_remainDays_eventON SCHEDULEEVERY 1 MinuteON CO 阅读全文
摘要:
rpm -qa|grep ntpsystemctl status chronyd.service [hik@HikvisionOS ~]$ systemctl status chronyd.service○ chronyd.service Loaded: masked (Reason: Unit c 阅读全文
摘要:
numconvert软件上显示的十六进制是大端顺序,即数值顺序。 modbus协议规定是按大端传输(见英文版说明),但是确切的说,它只是借用“大端”这个术语以表示它是由左往右依次字节传输的,因为毕竟大小端只有到了数值层面才有意义。 针对16位传输,只存在正序(AB)或反序(BA)两种方式。 针对双字 阅读全文
摘要:
https://blog.csdn.net/xhmico/article/details/136680013 今天对我本地的数据库迁移服务器上,完成之后启动项目报错 说数据库中不存在 quartz_LOCKS 这张表 我打开服务器上面的数据上面展示的表名是 quartz_LOCKS,然后通过查询 l 阅读全文
摘要:
[root@VM-16-14-centos /]# sudo gitlab-rails console user Loading production environment (Rails 4.2.6)irb(main):001:0> user = User.find_by_username('ro 阅读全文
摘要:
查看远程连接 git remote -v 取消与远程库的连接 git remote remove origin 初始化仓库(生成.git文件夹) git init 连接新仓库 git remote add origin (url) 检查状态 git status 检查分支 git branch 创建 阅读全文
摘要:
[root@VM-16-14-centos ~]# su - git-sh-4.2$ gitlab-rails console productionLoading production environment (Rails 4.2.6)irb(main):001:0> user = User.whe 阅读全文