标签:
查看linux当前ip :ifconfig -a
打开终端ctrl+alt+t
显示隐藏文件 ctrl +h
显示桌面 ctrl+win+d
关闭当前窗口 alt+f4
截取全屏 Print Screen
截取窗口 Alt + Print Screen
ps -ef|grep mysqld //查看mysql进程,bin
sudo service xx stop/start/restart 服务开启、关闭、重启
查询运行文件所在路径(文件夹地址)
which mysql
查看文件安装路径
whereis mysql
ps -A|grep mysql 查看mysql进程号
kill -9 8037(8037为mysql进程号)
linux 出现: Starting MySQL.Manager of pid-file quit #解决方案:(第2,3步即可)http://blog.chinaunix.net/uid-21516619-id-1824983.html
初次安装:缺省情况下MySQL没有设置密码。
用mysqladmin命令来改root用户口令。
mysqladmin -uroot password root #密码设置为:root
mysql命令输入画面:
--本地连接
[root@localhost bin]#mysql -uroot -p
--远程连接
[root@localhost bin]#mysql -u liuxw -h xxx.xxx.xxx.xxx -p 【liuxw用户名,xxx.xxx.xxx.xxx为ip】
(1)http://www.2cto.com/database/201408/328641.html #如果系统有旧mysql,删除命令测试为可用
(2)http://my.oschina.net/u/1156660/blog/343154 #在无旧mysql的情况下,安装命令测试为可用
标签:
原文地址:http://www.cnblogs.com/xiaowei1763369680/p/4819952.html