Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> Linux系統教程 >> Linux教程 >> 在Linux操作系統下為Apache目錄添加密碼

在Linux操作系統下為Apache目錄添加密碼

日期:2017/2/7 16:58:13      編輯:Linux教程
 

實例一:

允許一個用戶訪問一個目錄

1.使用htpasswd建立用戶文件:

$ htpasswd -c /data/httpd/secr/.htpasswd user

此程序會詢問用戶“user1”的口令,你輸入“passwd”,兩次生效。

2.建立.htaccess文件

用“vi /log/image/www/huodong/erge/admin/.htaccess”命令建立.htaccess文件,並寫入以下幾行:

AuthName My Friend Only (注:這個名字是任取的)

AuthType Basic

AuthUserFile /data/httpd/secr/.htpasswd

require user user

最後設置文件.htpasswd和.htaccess的文件權限,確保Apache用戶有讀的權限這樣就完成了網頁密碼設置的工作。

3.修改httpd.conf文件:

用"vi /data/httpd/conf/httpd.conf"文件,並添加一下幾行:

Options Indexes FollowSymLinks

AllowOverride authconfig

Order allow,deny

Allow from all

#

#AccessFileName .htpaccess

#AllowOverride ALL

#

實例二:

允許一組用戶訪問一個目錄。myfriend組中的m1與m2兩個用戶分別能使用口令“m1pass”和“m2pass”訪問/home/httpd/html/backup/目錄中的頁面。

實現步驟:

1.使用htpasswd建立用戶文件,並在提示信息分別輸入m1與m2兩個用戶的口令“m1pass”和“m2pass”:

htpasswd -c /home/httpd/secr/.htpasswd m1

htpasswd -c /home/httpd/secr/.htpasswd m2

2.建立組文件,用“vi /home/httpd/secr/.htgroup”命令建立.htgroup文件,並寫入下面一行:

myfriend:m1 m2

3.建立.htaccess文件,用“vi /home/httpd/html/backup/.htaccess”命令,並寫入以下幾行:

AuthName My Friend Only

AuthType Basic

AuthUserFile /home/httpd/secr/.htpasswd

AuthGroupFile /home/httpd/secr/.htgroup

require group myfriend

Copyright © Windows教程網 All Rights Reserved