3

After this post I continued to try to setup MySQL memcached User-Defined Functions as per these instructions: http://stanley-huang.blogspot.com/2010/04/level-3-install-memcached-user-defined.html

But now when trying to find the plugin_dir location I get:

mysql> show variables like 'plugin_dir';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| plugin_dir    |       | 
+---------------+-------+
1 row in set (0.00 sec)

It's blank. What did I miss?

Thanks

Community
  • 1
  • 1
Hayden
  • 361
  • 4
  • 18

2 Answers2

3

Check your my.cnf

[mysqld]
plugin_dir=/path/to/plugin/directory
mattl
  • 539
  • 4
  • 10
0

I think you might be looking for this:

select @@plugin_dir;
  • 1
    Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jul 11 '23 at 06:44