设置Mysql的max_connections参数
转自:http://www.bootf.com/472.html
MySQL的max_connections参数用来设置最大连接(用户)数。每个连接MySQL的用户均算作一个连接,max_connections的默认值为100。本文将讲解此参数的详细作用与性能影响。
转自:http://www.bootf.com/472.html
MySQL的max_connections参数用来设置最大连接(用户)数。每个连接MySQL的用户均算作一个连接,max_connections的默认值为100。本文将讲解此参数的详细作用与性能影响。
#进入mysql mysql -h -localhost -u用户名 -p密码 #如果数据库不存在,新建 create database test #切换到此数据库 use test #开始导入(source后跟着mysqldump备份出来的文件) source /backup/data/x[......]
#! /bin/bash start() { /usr/bin/rsync --daemon & } stop() { kill `cat /var/run/rsyncd.pid` } restart() { stop[......]
Rsync官网:http://rsync.samba.org/
Linux系统版下载:http://rsync.samba.org/download.html
Windows版下载:https://www.itefix.no/i2/cwrsync
Linux下的安装很简单,可以直接y[……]
#!/bin/bash #备份整个数据目录 backdirname=mysql_data backfilename=mysql_dbfile_ backsource=/var/lib/mysql tar zcfP /backup/$backdirname/files/$backfilename$([......]