Linux server Path to my.cnf using ssh and how to set option --local-infile=1
I need to do one of these things. How are they done, or rather where? What is the path to the file/s and where to add the code??either start mysql with the option --local-infile=1
e.g. c:\mysql\bin> mysql --local-infile=1
or add these lines to your 'my.cnf' file:
[client]
local-infile=1
[mysqld]
local-infile=1
This needs done due to files not loading on the server.