一、服务、端口查询
1.1、服务查询及启停
-
查询状态:
systemctl status mysqld
-
重启服务:
systemctl restart mysqld
-
停止服务:
systemctl stop mysqld
-
启动服务:
systemctl start mysqld
-
设置开机启动:
systemctl enable mysqld
-
取消开机启动:
systemctl disable mysqld
1.2、端口监听查询
- 端口监听查询:
ss -ntpl |grep 3306
二、版本、日志查询
2.1、版本查询
- 版本查询:
mysql -V
或mysql --version
2.2、日志路径
- 日志路径:
/var/log/mysqld.log
三、访问数据库
3.1、查询数据库密码
数据库密码存放于/opt/cloudbility/conf/common.properties
文件中:
cat /opt/cloudbility/conf/common.properties|grep db.password|cut -d'=' -f2
3.2、访问数据库
mysql -uroot -p"`grep "db.password" /opt/cloudbility/conf/common.properties | cut -d '=' -f 2`" cloudguanjia