我在 XFS 文件系统上设置了配额,用户可以在该服务器上运行它来获取配额报告:
xfs_quota -c 'quota -hu user' /xfs_partition
不过,我希望用户能够直接从通过 NFS 安装此分区的计算机上检索该系统的配额使用情况,因为该服务器不容易访问。
我怎样才能做到这一点?
我在 XFS 文件系统上设置了配额,用户可以在该服务器上运行它来获取配额报告:
xfs_quota -c 'quota -hu user' /xfs_partition
不过,我希望用户能够直接从通过 NFS 安装此分区的计算机上检索该系统的配额使用情况,因为该服务器不容易访问。
我怎样才能做到这一点?
我在单个 Docker 容器中设置了一个 Web 服务器和一个 FastAPI。以下是 Dockerfile 的相关部分:
FROM ubuntu/apache2:2.4-22.04_beta
[...]
# Apache conf
RUN echo '<VirtualHost *:80>\n\
DocumentRoot /var/www/html\n\
<Directory "/var/www/html">\n\
Options MultiViews FollowSymLinks\n\
AddHandler cgi-script .cgi .py\n\
AllowOverride All\n\
Options +ExecCGI\n\
Require all granted\n\
</Directory>\n\
ErrorLog /var/log/apache2/error.log\n\
LogLevel warn\n\
CustomLog /var/log/apache2/access.log combined\n\
</VirtualHost>' > /etc/apache2/sites-available/000-default.conf
RUN a2enmod cgi
RUN service apache2 restart
[...]
EXPOSE 80
EXPOSE 8080
ENV PYTHONPATH "${PYTHONPATH}:/var/www/html"
CMD ["uvicorn", "main:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "8080"]
所以基本上 Apache 服务于端口 80,而 api 则监听端口 8080。
我得到了一个 docker-compose.yaml 文件,如下所示:
version: "3.6"
services:
web:
build: .
restart: unless-stopped
ports:
- "8090:80"
- "8092:8080"
volumes:
- ./database/:/var/www/html/database
该容器在 Apache2 反向代理后面运行,我在其中设置了以下内容:
[...]
ProxyPass /server/api http://localhost:8092/server/api
ProxyPassReverse /server/api http://localhost:8092/server/api
ProxyPass /server http://localhost:8090/
ProxyPassReverse /server http://localhost:8090/
[...]
问题是,当一切正常启动时,API 工作正常,但主服务器没有响应,我proxy_http
在主机 apache 日志中收到以下错误:
AH01102: error reading status line from remote server localhost:8090
我检查了docker内部,启动docker后apache2服务没有运行。我可以通过运行来解决问题:
docker exec -t web-1 service apache2 restart
看起来当 uvicorn 命令启动时,它会以某种方式屏蔽/停止 apache 服务器?我真的不知道如何解决这个问题,因为我无法添加:
RUN service apache2 restart
在 dockerfile 中最后一个 CMD 行之后。