[ELK][logstash][錯誤排除]log資料無法進elasticsearch
9 月 03
https://its-security.blogspot.com/2020/01/logstash-log-elasticsearch-default.html
解決方案如上
隨手筆記
9 月 03
https://its-security.blogspot.com/2020/01/logstash-log-elasticsearch-default.html
解決方案如上
8 月 26
編修 alfresco-global.properties, 增加以下設定, 重開alfresco 服務
content.transformer.OpenOffice.extensions.docx.pdf.maxSourceSizeKBytes=102400
content.transformer.OpenOffice.extensions.pptx.pdf.maxSourceSizeKBytes=102400
content.transformer.OpenOffice.extensions.xlsx.pdf.maxSourceSizeKBytes=102400
6 月 23
https://unaheidi.github.io/GitLab-Deploy-Record/
提到
https://gitlab.com/gitlab-org/gitlab-foss/-/issues/57948
I looked all over the Admin page for something about allow fetch local resources. I found Admin -> Settings -> Network -> Outbound Requests -> Allow requests to the local network from hooks and services
改好以上設定, 即可正常匯入專案, 預設是不允許local network做 web hook
3 月 26
廢話不多說, 請查閱以下網址
https://blog.csdn.net/oYongHengZhiYin/article/details/103809423
3 月 20
因為ElasticStack的 Kibana的登入是透過X-pack實現, 若不想使用X-pack, 而是透過 apache的httpd.conf設定檔來實作, 則可參考以下作法
先製作帳密儲存檔
htpasswd -c /var/www/htpasswd <username>
編輯 httpd.conf 或 ssl.conf (如果是用https的話)
在設定站台的區段, 如 <VirtualHost *:443>
裡面增加以下內容
<Location />
AuthType Basic
AuthName “Kibana Authpage”
AuthUserFile /var/www/htpasswd
require valid-user
</Location>
重新載入或啟動 apache 服務即可