ICode9

精准搜索请尝试: 精确搜索
  • network thorttling is enabled2022-09-11 21:34:38

    解决方案:可能开启了节流模式,如下图切换回来即可。    

  • VM虚拟机2022-08-25 18:01:34

    VM虚拟机提示“此主机支持AMD-V,但AMD-V处于禁用状态”的解决方法 重启电脑,长按DEL进入主板BOIS界面 --- CPU特性 --- 找到SVM Mode,将其修改为Enabled。Enabled代表开启,Disabled代表关闭。----- 保存后退出(不同主板位置不一样)

  • 编译指令 -mcpu -march2022-08-15 19:02:03

    这俩指令都会根据当前系统使用的微架构对程序进行优化,优点是针对计算密集型任务会有较大程度的优化,但是可移植性不好,因为是针对特定架构的优化 一。确定选项 使用如下命令可查询编译器自己查询到的微系统结构 gcc -mcpu=native -Q --help=target 点击查看代码 The following op

  • vscode配置setting.json2022-08-15 12:03:11

    配置setting.json {     "editor.largeFileOptimizations": false,     "editor.fontSize": 15,     "bracketPairColorizer.depreciation-notice": false,     "files.autoSave": "onFocusChange",     "workbench.pre

  • 君正X1000E研究-2 go程序运行2022-08-12 20:34:37

    君正X1000E使用的小端模式,所以编译时候需要这样写 CGO_ENABLED=0 GOOS=linux GOARCH=mipsle go build testtime.go 不能写成 CGO_ENABLED=0 GOOS=linux GOARCH=mip go build testtime.go 否则会报. [root@buildroot /]# ./testtime sh: ./testtime: cannot execute binary file:

  • 部署jar包windows服务工具2022-08-06 23:02:28

    背景 某个周末一个线上项目因为服务器自动重启导致了系统挂了,我们是通过jenkins部署的jar包所以需要手动重启项目,解决问题后准备调换部署方式让项目随系统自动启动,试用tomcat后发现启动慢,并且日常开发springboot都是使用内置tomcat启动,如果要保持和部署方式保持一致(避免本地代码执

  • openstack 安装neutron网络服务安装 报错:Unknown operation 'enabled'2022-07-14 13:33:22

           注:这个脚本文件有一个地方是错误的,最后一行需要修改一下 # vim /usr/local/bin/iass-install-neutron-controller-gre.sh # 改systemctl enabled neutron-lbaas-agent 为 systemctl enable neutron-lbaas-agent  

  • 做微服务研发工程师的一年来的总结2022-07-06 17:04:56

    前述 18年的那个留校夏天,极其偶然接触到了《Docker+Kubernetes》,由纯运维的发展方向转到了云原生的发展方向。19年5月以《linux helmsman platform》获得IT创新大赛二等奖,其实质是围绕云原生的边侧服务集成部署。20年5月以《基于Kubernetes的舵手集群系统的设计与实现》获的河南省

  • Column Encryption Setting=Enabled 客户端没有证书的时候2022-07-02 12:32:18

      表层错误 Failed to decrypt column 'Password'.Failed to decrypt a column encryption key using key store provider: 'MSSQL_CERTIFICATE_STORE'. The last 10 bytes of the encrypted column encryption key are: 'A8-F2-EC-10-37-38-B7-73-81-0C

  • win 窗体 按钮 .Enabled:=false 中间做很多事情 还是会触发clik事件思考2022-06-28 18:03:38

    本人是delphi , btnStart.Enabled:=false;  之间做一个递归比较耗时, btnStart.Enabled:=true; 发现在Enabled:=false; 之后还是会触发用户重复clik,诧异了。 百度了一下,发现 C# winform也是有这个问题,同一套机制。百度到下方文章, 避免用户重复点击按钮(使用Enable:=False,消息繁

  • NavMeshAgent.SetDestination后不会自动寻路问题2022-06-25 22:04:15

    # 下面的代码是想实现点击鼠标左键,寻路到指定的位置;但是运行后,并不会寻路,而是立即打印了end void Update() { if (Input.GetMouseButtonUp(1)) { _navMeshAgent.enabled = true; _navMeshAgent.SetDestination(_targetPos); } if (_navMeshAge

  • Openshift cluster with Arc enabled SQL Server managed instance2022-06-22 10:36:29

    reference https://docs.microsoft.com/en-us/azure/azure-arc/data/create-sql-managed-instance-using-kubernetes-native-tools issue encountered: failed to create resource and error msg like below FailedCreate replicaset/bootstrapper-796c4c67db Error creati

  • 关于selinux2022-06-21 03:00:10

    查看当前selinux的状态,/usr/sbin/sestatus -v    如果是enabled就是开启的              setenforce 0   临时关闭selinux  将selinux设置为Permissive

  • Linux系统swap设置关闭,重启后仍提示swap is enabled2022-06-16 11:04:10

    在部署tidb数据库集群时,需要对系统环境配置进行检查,其中包含关闭swap。在使用以下命令关闭swap后,重启系统。 echo "vm.swappiness = 0">> /etc/sysctl.conf swapoff -a && swapon -a sysctl -p   通过TiUP进行集群部署可以使用密钥或者交互密码方式来进行安全验证,已经配置免密码

  • 若依 druid连接池配置2022-06-15 12:35:57

      # 数据源配置 spring: datasource: type: com.alibaba.druid.pool.DruidDataSource driverClassName: com.mysql.cj.jdbc.Driver druid: # 主库数据源 master: # url: jdbc:mysql://localhost:3306/ruoyi

  • K8S Helm安装部署 MariaDB 高可用、主从集群2022-05-28 03:00:17

    安装 Helm3 # 官网下载慢 # wget https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz wget http://qiniu.dev-share.top/helm-v3.5.4-linux-amd64.tar.gz tar -zxvf helm-v3.5.4-linux-amd64.tar.gz cp linux-amd64/helm /usr/local/bin # 查看helm client版本 helm version

  • elasticsearch 设置密码2022-05-06 10:32:20

    一、 elasticsearch 配置文件添加如下内容: config/elasticsearch.yml xpack.security.enabled: true xpack.license.self_generated.type: basic xpack.security.transport.ssl.enabled: true     二、 重启 elasticsearch    三、 执行命令 bin/elasticsearch-setup-pas

  • 谷歌浏览器设置2022-04-28 00:34:47

    chrome://flags/ 搜索栏输入: Tab Hover Card Images 改为enabled 重启浏览器, 就会标签预览功能 多线程下载: 输入: download 会出现 Parallel downloading,改为enabled 重启浏览器,如果下载的东西支持多线程下次,下次下载,就会快 文字不能复制: F12,打开开发者工具, F1 打开

  • sql写删除语句无法运行,报 You can't specify target table 'users' for update in FROM clause 错误的解决2022-04-24 14:01:35

    报错语句: delete from users where username in ( select username from users where enabled = 0 ) 解决办法: 修改子查询,多嵌套一层 delete from users where username in ( select * from ( select username from users where enabled = 0 ) t )

  • docker容器技术基础入门2022-04-23 22:33:18

    容器(Container) 容器是一种基础工具;泛指任何可以用于容纳其他物品的工具,可以部分或完全封闭,被用于容纳、储存、运输物品;物体可以被放置在容器中,而容器则可以保护内容物; 人类使用容器的历史至少有十万年,甚至可能有数百万年的历史; 容器的类型 瓶 - 指口部比腹部窄小、颈长的容器

  • ignore Vetur lint errors All In One2022-04-21 00:32:43

    ignore Vetur lint errors All In One 'Test' is declared but its value is never read.Vetur(6133) solutions Command + Shift + P search Vetur settings.json { + "vetur.validation.script": false } setup <script setup lang="

  • Swagger2的接口配置2022-04-20 14:01:06

    Swagger2的接口配置 /** * Swagger2的接口配置 * * @author ruoyi */ @Configuration public class SwaggerConfig { /** 是否开启swagger */ @Value("${swagger.enabled}") private boolean enabled; /** * 创建API */ @Bean publ

  • Spring: SpringBoot 热部署2022-04-18 12:04:16

                  <!--开启热部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>  

  • docker-check-config2022-04-13 11:32:17

    URL---->https://github.com/moby/moby/blob/master/contrib/check-config.sh linux-4.14.40# ./check-config.shinfo: reading kernel config from .config ... Generally Necessary:- cgroup hierarchy: properly mounted [/sys/fs/cgroup]- apparmor: enabled and tools

  • 打开filder之后,网页不能使用2022-03-28 10:00:42

     错误提示: The Fiddler AutoResponder is enabled, but this request did not match any of the listed rules. Because the "Unmatched requests passthrough" option on the AutoResponder tab is not enabled, this HTTP/404 response has been generated.解决办法:打开Au

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有