- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 mysqldump 命令备份 mysql 数据库,但收到的消息是 mysqldump: option '--tables' can't take an argument。
你在这里:
root@myhost:~# mysqldump mydatabase --user myuser --password mypassword
Warning: Using unique option prefix table instead of tables is deprecated and will be removed in a future release. Please use the full name instead.
mysqldump: option '--tables' cannot take an argument
我尝试了几种参数组合,但我最终发现,如果我只是尝试获取完全不带参数的命令版本或事件,结果是相同的:
root@myhost:~# mysqldump --version
Warning: Using unique option prefix table instead of tables is deprecated and will be removed in a future release. Please use the full name instead.
mysqldump: option '--tables' cannot take an argument
root@myhost:~# mysqldump
Warning: Using unique option prefix table instead of tables is deprecated and will be removed in a future release. Please use the full name instead.
mysqldump: option '--tables' cannot take an argument
正如您在下面几行中看到的,它是在 debian 7 上运行的 mysql 服务器 5.5。
系统版本:
root@myhost:~# uname -a
Linux myhost 3.2.0-4-amd64 #1 SMP Debian 3.2.41-2+deb7u2 x86_64 GNU/Linux
mysql客户端版本:
root@myhost:~# mysql --version
mysql Ver 14.14 Distrib 5.5.35, for debian-linux-gnu (x86_64) using readline 6.2
mysql服务器版本:
root@myhost:~# mysql -h localhost --user=myuser --password=mypassword mydatabase
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 75
Server version: 5.5.35-0+wheezy1-log (Debian)
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> quit
Bye
我在网上寻找过这个问题,但没有看到有人报告这个确切的问题。我不是 mysql 专家,但我可以说这是一个非常简单的安装。如果您需要更多信息,请告诉我。
提前致谢,伊万
最佳答案
按照@DCoder指示,我检查了/etc/mysql/my.cnf
,其中包含
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
table = true
从 /etc/mysql/my.cnf
中删除 table = true 行后,mysqldump 命令按预期工作:
root@myhost:~# mysqldump
Usage: mysqldump [OPTIONS] database [tables]
OR mysqldump [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...]
OR mysqldump [OPTIONS] --all-databases [OPTIONS]
For more options, use mysqldump --help
我的结论是,table=true
选项不适合mysqldump命令,必须从选项文件中的[client]
中删除。 [client]
部分对应用于所有客户端程序的选项设置进行分组。
如果另一个命令需要该选项集,则应将其放置在另一个程序部分中,既不要放在 [mysqldump]
中,也不放在 [client]
中。
关于mysqldump 总是返回 "option ' --tables' 不能接受参数”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23203727/
我正在创建一个基于 WebView 的 Android 应用程序,使用户能够登录移动运营商。当我运行该应用程序时,WebView 打开网站,但我收到一条消息,指出 WebView 不允许使用 cook
我试图在 3000 毫秒后打开 onMouseOver 的 href。但它只是弹出一个空白窗口。我错过了什么? HTML: My Rec JavaScript: var Popup = null; f
为什么它工作得很好 from pyspark.sql.types import * l=[("foo",83.33)] schema = StructType([ StructField("ty
Go 官方网站 writes as follows : As the Go specification says, the method set of a type T consists of all
public class MyDrawPanel extends JPanel { public void paintComponent(Graphics g){ Graphi
为什么它工作得很好 from pyspark.sql.types import * l=[("foo",83.33)] schema = StructType([ StructField("ty
以下代码应该可以工作,因为 join 接受迭代器作为参数: import static org.apache.commons.lang.StringUtils.join; import java.te
我想知道为什么 Collection.addAll() 方法只接受其他 Collection 而不是 Iterable。这是为什么呢? 对于 Iterables 有什么类似的方法吗? 最佳答案 大概是
如何解决这个问题?如果我用 this 替换它。它在构建器上创建了更多错误。我该如何解决? java类中的所有代码。在这种情况下,功能围绕着 onStartCommand。 public class
我正在尝试为我的应用添加一个添加到愿望 list 的功能,但我一直收到此错误: Exception [EclipseLink-4002] (Eclipse Persistence Services -
我正在做一个文本分类任务。现在我想使用 ensemble.AdaBoostClassifier 和 LinearSVC 作为 base_estimator。但是,当我尝试运行代码时 clf = Ada
/更新:问题细化为:无法打开授权 key 。/ 我在 Virtualbox 中有一个 Ubuntu 服务器,我尝试通过 ssh 登录,但每次询问登录密码时,pubkey 都不起作用。 概要: Vbox
我在尝试连接数据库并从数据库检索数据时遇到此类错误。 executeQuery() 方法不能接受 PreparedStatement 或 CallableStatement 的参数。 我的代码是这样的
我是一名优秀的程序员,十分优秀!