啟動命令:
/etc/init.d/mysqld start
檢視mysql埠
ss -lnt|grep 3306
檢視mysql埠
ps -ef|grep mysql|grep -v grep
mysqld_safe --user=mysql &
關閉命令
/etc/init.d/mysqld stop或者mysqladmin -uroot -p123.asd shutdown
ss -lnt|grep 3306
killall mysqld
pkill mysqld
/data/3306/mysql start
/data/3307/mysql start
/data/3306/mysql stop
/data/3307/mysql stop
mysql -uroot -p
mysql -uroot -p123.asd -s /data/3306/mysql.sock
mysql -uroot -p123.asd -s /data/3307/mysql.sock
mysql -uroot -p123.asd -h 192.168.1.1 -p3306
mysql -uroot -p123.asd -h 192.168.1.2 -p3307
mysqladmin -u root password'123.asd'
mysqladmin -u root password'123.asd' -s /data/3306/mysql.sock
mysqladmin -u root -p'123' password'123.asd'
mysqladmin -u root -p'123' password'123.asd' -s /data/3306/mysql.sock
update mysql.user set password=password("456") where user='root' and host='localhost'
set password=password('123.asd')
最後都需要flush privileges
首先停止mysql
/etc/init.d/mysqld stop
使用 --skip-grant-table --user=mysql &啟動mysql,忽略授權登入驗證
mysqld_safe --skip-grant-table --user=mysql &
mysql -u root -p
更改密碼
update mysql.user set password=password("456") where user='root' and host='localhost'
flush privileges
重啟mysql
quit
mysqladmin -uroot -p123.asd shutdown
/etc/init.d/mysqld start
關閉mysql
killall mysql
啟動加--skip-grant-table引數
mysqld_safe --defaults-file=/data/3306/my.cnf --skip-grant-table &
mysql -uroot -p -s /data/3306/mysql.sock
修改密碼的方法
update mysql.user set password=password("123.asd") where user='root'
flush privileges
quit
用新密碼重啟服務
mysql 5 5 32 多例項環境的啟動問題
fatal error could not find bin my print defaults if you compiled from source,you need to run make install to copy the software into the correct locati...
mysql 常規命令操作 mysql常用的命令操作
檢視正在執行的sql mysql show full processlist 檢視正在執行的sql mysql show variables like max 檢視mysql的一些配置引數 mysql show status 檢視當前會話下mysql的一些狀態。mysql show global s...
mysql一些命令 mysql常用的一些命令
一 授權登入 參考grant all privileges on cacti.to hnf localhost identified by hnf 2014 只給cacti這個資料庫授權 grant all on to root localhost identified by huningfei 只...