免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1577 | 回复: 5
打印 上一主题 下一主题

疯了port里的pure-ftpd如何支持quota(已经解决)(port默认支持quota) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-04-12 18:59 |只看该作者 |倒序浏览
MySQLGetQTAFS  SELECT QuotaFiles FROM users WHERE User="\L"


# Optional : query to get the maximal disk usage (virtual quotas)   
# The number should be in Megabytes.
# Pure-FTPd must have been compiled with virtual quotas support.

MySQLGetQTASZ  SELECT QuotaSize FROM users WHERE User="\L"


指点一下了
make config 里也没有相关的

[ 本帖最后由 大狗狗 于 2007-4-12 22:29 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2007-04-12 22:04 |只看该作者
编译不下20次了 修改MAKEfile 无效
--with-everything \
                        --with-paranoidmsg \
                        --with-virtualchroot \
                        --with-tls \
                        --with-quotas \
                        --with-largefile \
                        --sysconfdir=${PREFIX}/etc

难道port安装不支持吗?   非要手工编译不可!!!!

论坛徽章:
0
3 [报告]
发表于 2007-04-12 22:07 |只看该作者
pure-ftpd
make config
lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqk
                           x                  Options for pure-ftpd 1.0.21_1                    x
                           x lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqk x
                           x x[ ] LDAP           Support for users in LDAP directories        x x
                           x x[X] MYSQL          Support for users in MySQL database          x x
                           x x[X] PAM            Support for PAM authentication               x x
                           x x[ ] PGSQL          Support for users in PostgreSQL database     x x
                           x x[X] PRIVSEP        Enable privilege separation                  x x
                           x x[ ] PERUSERLIMITS  Per-user concurrency limits                  x x
                           x x[X] THROTTLING     Bandwidth throttling                         x x
                           x x[X] BANNER         Show pure-ftpd welcome upon session start    x x
                           x x[ ] UPLOADSCRIPT   Support uploadscript daemon                  x x
                           x x[ ] UTF8           Support for charset conversion (expreimental)x x
                           x x[X] SENDFILE       Support for the sendfile syscall             x x
                           x x                                                                x x
                           x x                                                                x x
                           x x                                                                x x
                           x x                                                                x x
                           tqmqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqjqu
                           x                       [  OK  ]       Cancel                        x
                           mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq

[ 本帖最后由 zhengwei_zw 于 2007-4-12 22:09 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2007-04-12 22:13 |只看该作者
lqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqk x
             x x[ ] LDAP           Support for users in LDAP directories        x x
             x x[X] MYSQL          Support for users in MySQL database          x x
             x x[X] PAM            Support for PAM authentication               x x
             x x[ ] PGSQL          Support for users in PostgreSQL database     x x
             x x[ ] PRIVSEP        Enable privilege separation                  x x
             x x[X] PERUSERLIMITS  Per-user concurrency limits                  x x
             x x[X] THROTTLING     Bandwidth throttling                         x x
             x x[X] BANNER         Show pure-ftpd welcome upon session start    x x
             x x[ ] UPLOADSCRIPT   Support uploadscript daemon                  x x
             x x[ ] UTF8           Support for charset conversion (expreimental)x x
             x x[X] SENDFILE       Support for the sendfile syscall             x x
             x x                                                                x x
             x x                                                                x x
             x x                                                                x x
             x x                                                                x x
             tqmqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqjqu
             x                       [  OK  ]       Cancel                        x
             mqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq

论坛徽章:
0
5 [报告]
发表于 2007-04-12 22:15 |只看该作者
MYSQLGetDir     SELECT Dir FROM users WHERE User="\L"


# Optional : query to get the maximal number of files
# Pure-FTPd must have been compiled with virtual quotas support.

MySQLGetQTAFS  SELECT QuotaFiles FROM users WHERE User="\L"
MySQLGetQTASZ  SELECT QuotaSize FROM users WHERE User="\L"

其他没有问题 就是没有磁盘限恶,,以前手工编译都有的 。

mysql> select  * from  users;
+------+--------------+-------+-----+---------------------+------------+-----------+-------------+-------------+-----------+------------------------+--------+---------+---------+
| User | Password     | Uid   | Gid | Dir                 | QuotaFiles | QuotaSize | ULBandwidth | DLBandwidth | Ipaddress | Comment                | Status | ULRatio | DLRatio |
+------+--------------+-------+-----+---------------------+------------+-----------+-------------+-------------+-----------+------------------------+--------+---------+---------+
| tom  | tomsflksdf   | 65534 |  31 | /www/web/test.com |        100 |        50 |          75 |          75 | *         | Ftp user (for example) | 1      |       0 |       0 |
| li   | 123fsdfsdfsd | 65534 |  80 | /www/web/test.com |          2 |         1 |          80 |          80 | *         | NULL                   | 1      |       1 |       1 |
| test | testli       | 65534 |  80 | /www/web/testli     |        500 |        10 |          80 |          80 | *         | NULL                   | 1      |       1 |       1 |
+------+--------------+-------+-----+---------------------+------------+-----------+-------------+-------------+-----------+------------------------+--------+---------+---------+

[ 本帖最后由 大狗狗 于 2007-4-12 22:17 编辑 ]

论坛徽章:
0
6 [报告]
发表于 2007-04-12 22:29 |只看该作者
是我自己的错误,需要上穿一个文件以后 每次登陆的时候才回有
ftp> put  phpmyadmin.tar.gz
local: phpmyadmin.tar.gz remote: phpmyadmin.tar.gz
200 PORT command successful
150 Connecting to port 53123
226-4 files used (0%) - authorized: 500 files
226-4317 Kbytes used (42%) - authorized: 10240 Kb
226-File successfully transferred
226 21.400 seconds (measured here), 161.23 Kbytes per second
3533192 bytes sent in 21.3 secs (1.6e+02 Kbytes/sec)

这个提示。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP