GitLab 502问题的解决

GitLab 502问题的解决

最近我的gitlab上次重启系统后出现了502问题 起先以为是版本太旧了,升级到最新的gitlab-ce-11…

如何安装check_mysql_health

如何安装check_mysql_health

wget https://labs.consol.de/assets/downloads/nagios/che…

用sed怎么删除行尾的空格

用sed怎么删除行尾的空格

sed -i ‘s/ *$//g’ myfile.txt sed ‘s/[ \t]*$//g’ https:/…

nagios status information 如何展示换行

nagios status information 如何展示换行

nagios status information 如何展示换行 nagios 的information栏中只…

MySQL错误 Can’t get hostname for your address 解决方法

MySQL错误 Can’t get hostname for your address 解决方法

# 编辑mysql配置文件 # vim /etc/my.cnf # The MySQL server [mys…

MySQL主从复制:ERROR 1201 (HY000): Could not initialize master info structure.

MySQL主从复制:ERROR 1201 (HY000): Could not initialize master info structure.

reset slave;   https://blog.csdn.net/csu_max/artic…

Mysql导出表结构及表数据 mysqldump用法

Mysql导出表结构及表数据 mysqldump用法

命令行下具体用法如下:  mysqldump -u用戶名 -p密码 -d 數據库名 表名 脚本名; 1、导出數…

MySQL 手动主从同步不锁表

MySQL 手动主从同步不锁表

有时候MySQL主从同步不一致比较严重的时候,需要手动同步。 然而网上看大很多需要锁表的同步的方法基本如下 1…

mysql性能优化之-innodb_flush_log_at_trx_commit

mysql性能优化之-innodb_flush_log_at_trx_commit

当设置为0,该模式速度最快,但不太安全,mysqld进程的崩溃会导致上一秒钟所有事务数据的丢失。 当设置为1,…

mysql怎么查询数据库每个表有多少条记录

mysql怎么查询数据库每个表有多少条记录

use information_schema; select table_name,table_rows fr…

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部