How to Install and Uninstall python3-grpcio-admin.noarch Package on Red Hat Enterprise Linux 9 (RHEL 9)

Last updated: October 08,2024

1. Install "python3-grpcio-admin.noarch" package

This guide covers the steps necessary to install python3-grpcio-admin.noarch on Red Hat Enterprise Linux 9 (RHEL 9)

$ sudo dnf update $ sudo dnf install python3-grpcio-admin.noarch

2. Uninstall "python3-grpcio-admin.noarch" package

Please follow the step by step instructions below to uninstall python3-grpcio-admin.noarch on Red Hat Enterprise Linux 9 (RHEL 9):

$ sudo dnf remove python3-grpcio-admin.noarch $ sudo dnf autoremove

3. Information about the python3-grpcio-admin.noarch package on Red Hat Enterprise Linux 9 (RHEL 9)

Last metadata expiration check: 0:15:32 ago on Mon Feb 26 07:04:30 2024.
Available Packages
Name : python3-grpcio-admin
Version : 1.46.7
Release : 10.el9
Architecture : noarch
Size : 19 k
Source : grpc-1.46.7-10.el9.src.rpm
Repository : epel
Summary : A collection of admin services
URL : https://www.grpc.io
License : Apache-2.0
Description : gRPC Python Admin Interface Package
: ===================================
:
: Debugging gRPC library can be a complex task. There are many configurations and
: internal states, which will affect the behavior of the library. This Python
: package will be the collection of admin services that are exposing debug
: information. Currently, it includes:
:
: * Channel tracing metrics (grpcio-channelz)
: * Client Status Discovery Service (grpcio-csds)
:
: Here is a snippet to create an admin server on "localhost:50051":
:
: server = grpc.server(ThreadPoolExecutor())
: port = server.add_insecure_port('localhost:50051')
: grpc_admin.add_admin_servicers(self._server)
: server.start()
:
: Welcome to explore the admin services with CLI tool "grpcdebug":
: https://github.com/grpc-ecosystem/grpcdebug.
:
: For any issues or suggestions, please send to
: https://github.com/grpc/grpc/issues.