Can someone please help as i'开发者_如何学Cve spent all day trying to fix this. I installed the latest XAMPP and now i can't connect to mysql from terminal.I checked my .profile file and the PATH seems ok. Does anyone know whats happened and what's the solution?
PATH=$PATH:/Applications/XAMPP/xamppfiles/bin export PATH
THIS IS A PROGRAMMING QUESTION AS I'M A PHP DEVELOPER TRYING TO DO MY JOB!
Thankyou soo much in advance;-)
UPDATE: the solution was to update the .bash_profile with (as well as the .profile file)
PATH=$PATH:/Applications/XAMPP/xamppfiles/bin export PATH
spent the whole day trying to work this out so i hope this helps anyone in the same position ;-) http://www.jroller.com/jnicho02/entry/setting_up_xampp_on_the (GOOD LINK)
This is a problem with the MySQL daemon. Is it running? Try typing on the command line: ps -u mysql
and see if that gives any results.
@amphetamachine is right - you need to do something like this:
[root@vps ~]# service mysqld start
It's probably because MySQL is installed but not yet running.
Follow step2 and step6 in the link below http://obscuredclarity.blogspot.in/2009/08/install-mysql-on-mac-os-x.html
精彩评论