#The

[ERROR] You have enabled the binary log, but you haven't provided the mandatory server-id....

解决方式:修改my.cnf文件如下  log-bin=mysql-bin server-id=1...
代码星球 ·2020-10-02

mysql5.7 数据导入5.6 Index column size too large. The maximum column size is 767 bytes.

先检查一下是不是数据库被限制了索引的大小SHOWvariableslike'innodb_large_prefix'如果查询的值是OFF的话执行下面命令SETGLOBALINNODB_LARGE_PREFIX=ON;执行完了之后还得查看当前的innodb_file_format引擎格式类型是不是BARRACUDA执行S...

eclipse中,项目有红叉之- The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

1.Thesuperclass"javax.servlet.http.HttpServlet"wasnotfoundontheJavaBuildPath2.原因:确实servlet-api.jar3.导入servlet-api.jar,其中一种方法:项目右击->build path->config...

eclipse中,项目有红叉之-Java compiler level does not match the version of the installed Java project facet.

1.JavacompilerleveldoesnotmatchtheversionoftheinstalledJavaprojectfacet,意思是jdk版本和projectfacet版本不一致2.解决JavaCompiler和Projectfacets的版本需一致 ...

AM org.apache.catalina.realm.LockOutRealm authenticate WARNING: An attempt was made to authenticate the locked user "tomcat"

原因:你的应用加了身份认证,有人试图用tomcat用户登陆你的应用,密码输入错误5次或者5次以上(缺省是5次),就会在日志中记录警告信息,并锁定并禁止该用户的进一步登陆。以提醒你可能有人恶意猜测你的管理员密码。是tomcat为了阻止brute-force攻击(基于密码加密的暴力破解法)的安全策略。...

can't create a new thread(errno 11) ;if you are not out of avaiable memory ,you can consult the manu

原因:操作系统连接数太小导致解决:1.linux中:ulimit-a查看maxuserprocesses这一项2.vim/etc/profile在最后面添加:ulimit-u65536...
代码星球 ·2020-10-02

Prometheus监控系统 安装与配置详细教程

一、Prometheus是什么Prometheus中文发音为普罗米修斯,它可以使用各种数学算法实现强大的监控需求,并且原生支持K8S的服务发现,能监控容器的动态变化。结合Grafana绘出漂亮图形,最终使用alertmanager或Grafana实现报警。它与其他监控相比有以下主要优势:数据格式是Key/Value形式...

Prometheus监控安装及使用(一)

原理就不多说了,直接上操作过程吧PrometheusPushGateway 参考: https://github.com/prometheus/pushgatewayPrometheusServer 参考: https://github.com/prometheus/promet...

prometheus监控系统概述

</header>现在开始一个新的系列,【Prometheus】,主要参考《深入浅出Prometheus》,基本为其读书笔记加上部分自己的理解在本系列中,监控系统特指对数据中心的监控,包括硬件和软件的监控和告警监控系统的作用:实时监控。提供硬件和软件的运行状态展示告警。符合预设告警阈值则通过多种方式发送告警...
代码星球 ·2020-10-02

[不错]A step-by-step guide to enabling security, TLS/SSL, and PKI authentication in Elasticsearch

December12,2018update:ThisarticlehasbeenpublishedonElastic’swebsiteas: https://www.elastic.co/blog/elasticsearch-security-configure-tls-ssl-pki-authe...

Repair the database using DBCC CHECKDB

SonowifyouwanttoplaceAdventureWorks2008R2sampledatabaseinasingle-usermode,thenwritethecodeALTERDATABASEAdventureWorks2008R2SETSINGLE_USER;  Theabovecodewouldwai...

Kubernetes-kubectl The connection to the server localhost:8080 was refused -did you specify

今天在Kubernetes的从节点上运行命令【kubectl】出现了如下错误:[root@k8snode1kubernetes]#kubectlgetpodTheconnectiontotheserverlocalhost:8080wasrefused-didyouspecifytherighthostorport?出...

Warning:detected "cgroupfs" as the Docker cgroup driver. The recommended driver is "systemd".

执行kubeadminit集群初始化时遇到:[WARNINGIsDockerSystemdCheck]:detected"cgroupfs"astheDockercgroupdriver.Therecommendeddriveris"systemd".[警告IsDockerSystemdCheck]:检测到&ldquo...

Theia APIs——通过JSON-RPC进行通信

上一篇:TheiaAPIs——事件  在本节中,我将讲解如何创建后端服务并通过JSON-PRC来连接它。  我将使用debugloggingsystem作为例子来进行讲解。概述  本示例将用express框架创建一个服务,然后通过websocket连接该服务。注册服务  首先要做的是将服务公开,...

Theia APIs——事件

上一篇:TheiaAPIs——Preferences  Theia中的事件或许会让你感到困惑,希望本节能阐述清楚。  来看下面的代码:(来自logger-watcher.ts)@injectable()exportclassLoggerWatcher{getLoggerClient():ILog...
代码星球 ·2020-09-24
首页上一页...122123124125126...下一页尾页