You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2022/04/28 13:19:08 UTC

[GitHub] [apisix] Jon-Gaara opened a new issue, #6962: help request: Why does apisix not have lua-resty-openssl?

Jon-Gaara opened a new issue, #6962:
URL: https://github.com/apache/apisix/issues/6962

   ### Description
   
   目前想通过apisix往kafka里面推送日志,但是由于公司的kafka必须通过SASL_SSL+SCRAM-SHA-512的方式才能连接,因此apisix自带的kafka-logger不支持,所以就想自定义开发插件,但是发现目前lua-resty-kafka也不支持这种形式的连接,并且apisix最新版本里面也不包含 lua-resty-openssl,因为我想问下:
      1.apisix是出于什么原因,没有包含lua-resty-openssl?
      2.apisix的kafka-logger是否能支持SASL_SSL+SCRAM-SHA-512这种模式连接kafka?
   
   ### Environment
   
   - APISIX version (run `apisix version`): 2.10.0
   - Operating system (run `uname -a`): Linux  5.10.16.3-microsoft-standard-WSL2
   - OpenResty / Nginx version (run `openresty -V` or `nginx -V`): openresty/1.19.9.1
   - etcd version, if relevant (run `curl http://127.0.0.1:9090/v1/server_info`):
   - APISIX Dashboard version, if relevant:
   - Plugin runner version, for issues related to plugin runners:
   - LuaRocks version, for installation issues (run `luarocks --version`): luarocks --version
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] github-actions[bot] closed issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] closed issue #6962: help request: Why does apisix not have lua-resty-openssl?
URL: https://github.com/apache/apisix/issues/6962


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] kwanhur commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by GitBox <gi...@apache.org>.
kwanhur commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1121838196

   You can find it in `LUA_PATH` of `luarocks path`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] tzssangglass commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by GitBox <gi...@apache.org>.
tzssangglass commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1112809051

   > 1.apisix是出于什么原因,没有包含lua-resty-openssl?
   
   Install a new dependency because it is needed, and don't contain a new dependency because it is no required.
   
   > 2.apisix的kafka-logger是否能支持SASL_SSL+SCRAM-SHA-512这种模式连接kafka?
   
   @bzp2010, do you know this detail?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] github-actions[bot] commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1521521164

   This issue has been marked as stale due to 350 days of inactivity. It will be closed in 2 weeks if no further activity occurs. If this issue is still relevant, please simply write any comment. Even if closed, you can still revive the issue at any time or discuss it on the dev@apisix.apache.org list. Thank you for your contributions.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] kwanhur commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by GitBox <gi...@apache.org>.
kwanhur commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1121755658

   > 1.apisix是出于什么原因,没有包含lua-resty-openssl?
   
   if install apisix manually, you can find `lua-resty-openssl` indirectly pulling.
   ```shell
   sudo luarocks install https://raw.githubusercontent.com/apache/incubator-apisix/master/rockspec/apisix-master-0.rockspec
   luarocks show apisix
   ```
   
   ```plaintext
   	lua-resty-ngxvar (using 0.5.2-0)
   	lua-resty-openidc (using 1.7.2-1)
   	lua-resty-openssl (using 0.8.8-1)
   	lua-resty-radixtree (using 2.8.2-0)
   	lua-resty-rocketmq (using 0.3.0-0)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] Jon-Gaara commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by GitBox <gi...@apache.org>.
Jon-Gaara commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1121833033

   > > 1.apisix是出于什么原因,没有包含lua-resty-openssl?
   > 
   > if install apisix manually, you can find `lua-resty-openssl` indirectly pulling.
   > 
   > ```shell
   > sudo luarocks install https://raw.githubusercontent.com/apache/incubator-apisix/master/rockspec/apisix-master-0.rockspec
   > luarocks show apisix
   > ```
   > 
   > ```
   > 	lua-resty-ngxvar (using 0.5.2-0)
   > 	lua-resty-openidc (using 1.7.2-1)
   > 	lua-resty-openssl (using 0.8.8-1)
   > 	lua-resty-radixtree (using 2.8.2-0)
   > 	lua-resty-rocketmq (using 0.3.0-0)
   > ```
   I installed apisix manually, apisix-master-0.rockspec not included lua-resty-openssl


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] xgenvn commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by GitBox <gi...@apache.org>.
xgenvn commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1115742817

   @Jon-Gaara I think it would be easier to develop a logger middleware instead a new plugin, as a workaround. And perhaps use the `http-logger` plugin to push the logs. SSL configuration seems too lots of work in general.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] tzssangglass commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by GitBox <gi...@apache.org>.
tzssangglass commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1112808938

   > 1.apisix是出于什么原因,没有包含lua-resty-openssl?
   
   Install a new dependency because it is needed, and don't contain a new dependency because it is no required.
   
   > 2.apisix的kafka-logger是否能支持SASL_SSL+SCRAM-SHA-512这种模式连接kafka?
   
   @bzp2010, do you know this detail?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] Jon-Gaara commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by GitBox <gi...@apache.org>.
Jon-Gaara commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1120146558

   We rewrite resty.kafka to support scram-sha-512


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [apisix] github-actions[bot] commented on issue #6962: help request: Why does apisix not have lua-resty-openssl?

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #6962:
URL: https://github.com/apache/apisix/issues/6962#issuecomment-1539840457

   This issue has been closed due to lack of activity. If you think that is incorrect, or the issue requires additional review, you can revive the issue at any time.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@apisix.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org