摘要:
1、慢查询日志 2、查看数据库是否开启慢查询日志: show variables like 'slow_query_log'; 3、开启慢查询日志 阅读全文
摘要:
在使用shell的for循环时,如果循环的字符串中间有空格,那么循环时会自动分割,下面是解决的方法只需要更改 shell分隔符即可 只需要更改 shell分隔符即可 在for循环之前修改IFS变量,示例: OLDIFS="$IFS" #备份旧的IFS变量 IFS=$'\n' #修改分隔符为换行符 f 阅读全文
摘要:
效果图 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>后台管理系统</title> <style> body { background-color: #8ea4f8; background-image: u 阅读全文
摘要:
插入数据: 阅读全文
摘要:
show variables like '%max_connection%'; 查看最大连接数 set global max_connections=1000; 重新设置最大连接数 mysql> show status like 'Threads%'; + + + | Variable_name | 阅读全文
摘要:
mysql> set password = password('123456'); SET PASSWORD = password ("rootpwd3"); 阅读全文