Confluence 例項健康檢查遇到的問題

2021-08-28 17:55:04 字數 931 閱讀 9509

這個檢查能做什麼?

檢查您的 mysql 資料庫中的 innodb_log_file_size 變數是否恰當。

結果your innodb_log_file_size of 25,165,824 is too small. you should increase innodb_log_file_size to 256m.

【解決】

1.停止mysql服務   

net stop mysql
2. 修改mysql安裝目錄下my.ini檔案,加入或修改如下

3. 重啟mysql服務

net start mysql
這個檢查能做什麼?

檢查您的 mysql 資料庫中的 max_allowed_packet 變數是否恰當。

結果your packet size of 1,048,576 is too small. you should increasemax_allowed_packet to 34m.

【解決】

1.停止mysql服務   

net stop mysql
2.修改mysql安裝目錄下my.ini檔案,加入或修改如下

3. 重啟mysql服務

net start mysql
問題解決 如圖:

Eureka的健康檢查

一 配置 啟用eureka的健康檢查,這樣,應用程式就會將自己的健康狀態傳播到eureka server。開啟的方法如下,下面是電影微服務的配置 server port 8010 spring name microservice consumer movie eureka client health...

Spring Cloud健康檢查的陷阱

基於spring boot actuator的健康檢查是spring cloud微服務的必備元件,用來確保我們的服務是否可用。引入 spring boot actuator後,通過http ip port health 可以看到 healthendpoint 給我們提供預設的監控結果,包含磁碟檢測和...

關於容器的健康檢查 Health Check

關於容器的健康檢查 health check 是可以從業務層面檢查狀態,health check 可以是任何乙個單獨的命令,docker 會在容器中執行該命令,如果返回 0,容器被認為是 healthy,如果返回 1,則為 unhealthy。對於提供 http 服務介面的應用,常用的 health...