[問題一模一樣] LinuxMint升版到19.3後,開機選單的中文變亂碼
3 月 26
廢話不多說, 請查閱以下網址
https://blog.csdn.net/oYongHengZhiYin/article/details/103809423
隨手筆記
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 服務即可