brew reinstall mysql
# To uninstall
brew uninstall [email protected]
rm -rf /usr/local/var/mysql
rm /usr/local/etc/my.cnf
# To Reinstall
brew install [email protected]
brew link --force [email protected]
brew services start [email protected]
brew reinstall mysql
# To uninstall
brew uninstall [email protected]
rm -rf /usr/local/var/mysql
rm /usr/local/etc/my.cnf
# To Reinstall
brew install [email protected]
brew link --force [email protected]
brew services start [email protected]
mac uninstall mysql completely
## Open the Terminal
# Use mysqldump to backup your databases
# Check for MySQL processes with:
ps -ax | grep mysql
# Stop and kill any MySQL processes
kill -9 [process_id]
# Analyze MySQL on HomeBrew:
brew remove mysql
brew cleanup
# Remove files:
sudo rm /usr/local/mysql
sudo rm -rf /usr/local/var/mysql
sudo rm -rf /usr/local/mysql*
sudo rm ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
sudo rm -rf /Library/StartupItems/MySQLCOM
sudo rm -rf /Library/PreferencePanes/My*
# Unload previous MySQL Auto-Login:
launchctl unload -w ~/Library/LaunchAgents/homebrew.mxcl.mysql.plist
# Remove previous MySQL Configuration:
subl /etc/hostconfig
# Remove the line MYSQLCOM=-YES-
# Remove previous MySQL Preferences:
rm -rf ~/Library/PreferencePanes/My*
sudo rm -rf /Library/Receipts/mysql*
sudo rm -rf /Library/Receipts/MySQL*
sudo rm -rf /private/var/db/receipts/*mysql*
## Restart your computer just to ensure any MySQL processes are killed
Try to run mysql, it shouldn't work
delete mysql from mac
$ brew uninstall mysql
Uninstalling /usr/local/Cellar/mysql/5.6.19...
jquery get value of radio input
$('input[name="name_of_your_radiobutton"]:checked').val();
how to get the value of radio button in jquery
By LOVE
Here , name=Gender is the name attribute value of the radio button
$("input[name='Gender']:checked").val()
jquery get value radio by name
var value = $('input[name="name_of_your_radiobutton"]:checked').val();
get value of checked radio button jquery
$('form input[type=radio]:checked').val();
set radio button checked jquery
$(".nameOfTheClass").prop('checked', true);
jquery set radio button value
$('#' + newcol).prop('checked',true);
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us