问题标签 [mysql-backup]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
mysql - MySql Backup manager can not connect to 127.0.0.1:3306
I am trying to configure mysql backup manager for my mysql database,
but when I want to create a backup, I receive this error :
Got error 2005:
Unknown MySQL server host '127.0.0.1:3306' (0) when trying to connect
I am sure that the port, user and password are true.I have tried it with 'localhost' too but i receive the same error !
I have tested it in both windows 7 and windows 8 with admin access.
php - 如何使用 PHP 脚本导出 MySQL 数据库?
例如,我需要一个脚本,当我打开script.php
页面时,将我的一个数据库从 MySQL 导出到一个 SQL 文档,我不知道如何在 PHP 中执行此操作,有人可以帮我吗?
编辑代码:
这一行:
mysql - 所有 InnoDB 表环境上的 Mysql 备份
目前我正在使用 mysqlbackup 进行备份。这将调用“带读锁的刷新表”并增加锁定我的表的可能性,直到刷新完成并释放全局锁。
那么,有没有办法备份我的数据库,它真的很大,有超过 100 GB 的表,没有这个全局锁?
我读到的 mysqldump --single-transaction 之类的东西在小型数据库上很有用,但事实并非如此。是否有类似的适用于我的情况?
希望如此 !
mysql - MySQLdump is executing, but not actually working
I'm trying to back up and restore a MySQL database using mysqldump. With my commands I am making a back up file and then restoring that file, but where I'm restoring the database shows no change.
This creates the backup folder in the same directory as the mysqldump.exe file:
In the windows cmd: mysqldump -u root -pxxxxxx test2 > test2backup.sql
Restoring with that file: mysqldump -u root -pxxxxxx test < test2backup.sql
test
is an empty database. test2
is a database with tables and data. Running this should fill test
with test2
's data using the test2backup.sql
file, should it not?
amazon-ec2 - 为备份调整 Apache 和 CentOS 7
我的设置 未压缩的网络服务器文件占用大约 4GB 空间,使用的 MySQL 数据库也大约 4GB。MySQL 在远程 Amazon RDS 实例上运行,并且 Web 服务器在同一区域的 EC2 上。
我的备份步骤是这样的...
- 压缩 public_html => public_html.gz
- 转储远程数据库
- 将 DB 压缩为 db.gz
- 压缩 public_html.gz, db.gz => backup.gz
- 将 backup.gz 上传到 Amazon S3 存储桶
服务器运行在具有两个内核的 3.5 GB RAM 上。
我的问题 在备份过程中,我的网站变得非常缓慢。但是,当至少 2 GB 可以自由使用时,CPU 使用率峰值为 5%,RAM 峰值为 1 GB。这让我相信数据库可能会因性能缓慢而出错,但我对 MySQL 配置的经验很少,如果是责备的话,我不确定需要做些什么来加快备份速度。
bash - 如何限制目录以保留一定数量的文件
我每天都在转储一个 mysql wordpress 数据库作为备份。因为我不想在一年后得到 365 个 .sql 文件,所以我认为只保留最后 30 天的转储文件是不错的。始终保留最后 30 个并自动删除旧的,每天一个。
我希望在 bash 中对此进行编程,作为 cron 工作的一部分。所以我已经有了转储文件并将文件发送到备份服务器的部分。我只需要每天添加计数和删除最旧的片段。
这是我得到的(用户名和 pswd 保存在 .my.cnf 文件中):
有谁知道如何实现这个功能?
php - 'mysqldump' 未被识别为内部或外部命令
目前我正在尝试在我的 laravel 项目中备份和恢复 mysql 数据库。我正在使用这个 laravel 包https://github.com/backup-manager/laravel作为备份包。我已经按照说明进行操作,但是当我在最后一个问题中尝试通过命令行(php artisan db:backup)备份我的本地数据库时,我收到了这条消息。
我已经在谷歌上搜索了它,并且已经将 C:\xampp\mysql\bin 放到了我的 windows env 变量路径中,但我仍然遇到这个问题。如果有人知道如何解决这个问题,请告诉我,我真的很感激。
Laravel 5.1.x
mysql - 在 Ubuntu 上配置 automysqlbackup
我已经在我的 Ubuntu 服务器上运行了 automysqlbackup。现在,我想将其配置为每天至少两次备份数据库,时间是我自己设置的。目前,它每天早上 6:30 备份所有数据库。请帮助我如何设置它!
database - 如何在 CodeIgniter 中恢复数据库?
我不知道如何编写代码来使用 codeigniter 从数据库中恢复 .sql 文件的备份。我应该在控制器中做什么才能恢复它?我只是创建一个表单来选择 .sql 文件,如下所示:
并且不知道在控制器中做什么
mysql - 使用数据文件的副本恢复 mysql 数据库
我电脑的主硬盘驱动器昨天坏了,我得到了一个新的并恢复了它,但是当我去恢复我的 mysql 数据库时,我意识到我有一段时间没有做适当的备份了。尽管如此,我确实有我之前安装的原始数据库文件,因为数据文件位于第二个 HDD 中。
我的问题是,我可以仅使用以前安装中的文件在新机器中恢复/创建新数据库吗?
谢谢,伊格纳西奥