Heim >Backend-Entwicklung >PHP-Tutorial > 配备phpmyadmin munin htpasswd

配备phpmyadmin munin htpasswd

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 13:22:25987Durchsuche

配置phpmyadmin munin htpasswd

config

<VirtualHost *:80>
        ServerName 110.111.22.45

        ServerAdmin webmaster@localhost

	Alias /munin /var/cache/munin/www
	<Directory /var/cache/munin/www>
	Options FollowSymLinks MultiViews
			AllowOverride None
			Order allow,deny
			allow from all


		 AuthUserFile /etc/munin/munin-htpasswd
		 AuthName "Munin"
		 AuthType Basic
		 require valid-user

	    <IfModule mod_expires.c>
		ExpiresActive On
		ExpiresDefault M310
	    </IfModule>

</Directory>

        alias /phpmyadmin /usr/share/phpmyadmin
        <Directory /usr/share/phpmyadmin>
                Options FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        </Directory>

        ErrorLog /var/log/apache2/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel error

        CustomLog /var/log/apache2/access.log combined
</VirtualHost>

?apt-get install munin,munin-node

apt-get installphpmyadmin

?

?

sudo htpasswd -c .my_passwd username

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn