Kibana Apache password verification Login

Source: Internet
Author: User

Kibana Apache password verification Login

After installing Kibana, you can access it directly, which is not secure. Next we will use Apache password authentication for security configuration.

The apache configuration file is as follows:

<VirtualHost *: 8080>

DocumentRoot/data/kibana

ServerName localhost

ErrorLog "/data/kibana/logs/kibana-error.log"

CustomLog "/data/kibana/logs/kibana-access.log" common

<Directory "/data/kibana">

Options Indexes

AllowOverride AuthConfig

AuthType Basic

AuthName "Authenticated proxy"

AuthUserFile/data/kibana/. htpasswd

Require valid-user

Order allow, deny

Allow from all

</Directory>

</VirtualHost>

AuthUserFile/data/kibana/. htpasswd

This is the file for storing the password.

Next, generate the password.

# Htpasswd-c/data/kibana/. htpasswd user

# New password:

# Re-type new password:

# Adding password for user bidduser

In this way, a password is generated for the user.

Visit again

This article permanently updates the link address:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.