zoukankan      html  css  js  c++  java
  • linux系统中部署apache服务(为个人网站设置密码)

    实验环境接“ linux系统中部署apache服务(个人用户主页功能)”。

    1、在PC1服务器端为用户usertest1创建密码库

    [root@PC1 ~]# htpasswd -c /etc/httpd/passwd usertest1  ## 这个usertest1不必是系统已经存在的账户,只是用于登录用
    New password: 
    Re-type new password: 
    Adding password for user usertest1

    2、在PC1主机中修改个人用户主页功能的配置文件

     …………
    28
    # Control access to UserDir directories. The following is an example 29 # for a site where these directories are restricted to read-only. 30 # 31 <Directory "/home/*/public_html"> 32 AllowOverride all 33 authuserfile "/etc/httpd/passwd" 34 authname "My privately website" 35 authtype basic 36 require user usertest1 ## 这个账户不必是已经存在的用户,只是一个登录账号 37 </Directory> 38

    3、 在PC1服务器端重启httpd服务

    [root@PC1 ~]# systemctl restart httpd
    [root@PC1 ~]# systemctl enable httpd
    [root@PC1 ~]# systemctl status httpd.service 
    httpd.service - The Apache HTTP Server
       Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled)
       Active: active (running) since Thu 2020-12-17 00:04:07 CST; 19s ago
     Main PID: 4861 (httpd)
       Status: "Total requests: 0; Current requests/sec: 0; Current traffic:   0 B/sec"
       CGroup: /system.slice/httpd.service
               ├─4861 /usr/sbin/httpd -DFOREGROUND
               ├─4862 /usr/sbin/httpd -DFOREGROUND
               ├─4863 /usr/sbin/httpd -DFOREGROUND
               ├─4864 /usr/sbin/httpd -DFOREGROUND
               ├─4865 /usr/sbin/httpd -DFOREGROUND
               └─4866 /usr/sbin/httpd -DFOREGROUND
    
    Dec 17 00:04:07 PC1 systemd[1]: Starting The Apache HTTP Server...
    Dec 17 00:04:07 PC1 httpd[4861]: AH00557: httpd: apr_sockaddr_info_get() failed for PC1
    Dec 17 00:04:07 PC1 httpd[4861]: AH00558: httpd: Could not reliably determine the s...age
    Dec 17 00:04:07 PC1 systemd[1]: Started The Apache HTTP Server.
    Hint: Some lines were ellipsized, use -l to show in full.

    3、在PC2客户端测试配置效果

     

     

     

    注:这个账户就是普通的账户,不必是系统已经存在的账户

    以上实验实现了对个人主页功能登录账号和密码的设置。

  • 相关阅读:
    SAP系统管理中常见问题解答(转载)
    STMS传输队列中的请求状态一直是Running不能结束
    通过Tcode查找Badi或者客户出口
    通过LDB_PROCESS函数使用逻辑数据库
    ABAP读取长文本的方法
    SAP增强Enhancement
    ABAP开发顾问必备:SAP ABAP开发技术总结[转载]
    SAP事件 Event Flow(转载)
    jQuery中的text()、html()和val()以及javaScript中的innerText、innerHTML和value
    js访问对象属性的方式“.”与“[]”的区别
  • 原文地址:https://www.cnblogs.com/liujiaxin2018/p/14147592.html
Copyright © 2011-2022 走看看