mysql - PID file could not be found - The server quit without updating PID file -


i have install mysql pkg installer on mac, when try start using command

/usr/local/mysql/support-files/mysql.server restart 

it gives me following error:

the server quit without updating pid file (/usr/local/mysql/data/xyz.local.pid) 

upon checking error log, found this

mysqld_safe starting mysqld daemon databases /usr/local/mysql/data mysqld_safe mysqld pid file /usr/local/mysql/data/xyz.local.pid ended 

well have tried every possible solution out there, have followed related question here missing pid still unable resolve issue.

here how my.cnf looks like

[mysqld]  # remove leading # , set amount of ram important data # cache in mysql. start @ 70% of total ram dedicated server, else 10%. # innodb_buffer_pool_size = 128m  # remove leading # turn on important data integrity option: logging # changes binary log between backups. # log_bin  # these commonly set, remove # , set required. # basedir = ..... # datadir = ..... # port = ..... # server_id = ..... # socket = .....  # remove leading # set options useful reporting servers. # server defaults faster transactions , fast selects. # adjust sizes needed, experiment find optimal values. # join_buffer_size = 128m # sort_buffer_size = 2m # read_rnd_buffer_size = 2m  sql_mode=no_engine_substitution,strict_trans_tables 

i have tried installing mysql macports, still same issue.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -