mysql 卸载 mysql-udf-http 插件
时间: 2023-07-26 14:46:07 浏览: 169
卸载mysql数据库
如果您想卸载 MySQL 中的 mysql-udf-http 插件,可以按照以下步骤进行:
1. 进入 MySQL 控制台:
```
mysql -u root -p
```
2. 执行以下命令,查找 mysql-udf-http 插件是否已经安装:
```
SELECT * FROM mysql.func WHERE name LIKE '%http%';
```
如果显示类似如下信息,则说明 mysql-udf-http 插件已经安装:
```
+-----------+-----+----------------+----------+
| name | ret | dl | type |
+-----------+-----+----------------+----------+
| lib_mysqludf_http | 2 | lib_mysqludf_http.so | function |
+-----------+-----+----------------+----------+
```
3. 执行以下命令,卸载 mysql-udf-http 插件:
```
DROP FUNCTION lib_mysqludf_http;
```
4. 执行以下命令,确认 mysql-udf-http 插件已经被卸载:
```
SELECT * FROM mysql.func WHERE name LIKE '%http%';
```
如果显示为空,则说明 mysql-udf-http 插件已经被成功卸载。
阅读全文