2

我是 AWS 和 RDS 的新手,我目前正在尝试做一个看似简单的任务,即创建一个 sql server 数据库。但是我遇到了第一个障碍,实际上是创建 BD,我不能使用这些教程,因为它们引用了 Visual Studio 的 AWS UI 组件,这些组件似乎都与 Create DB 表单不同。所以我找到了一个命令行工具 RDSCli,但我无法让它工作。我已遵循所有说明(如下),但是当我运行rds --help时,我只得到以下输出......

Usage: java [-options] class [args...]
       (to execute a class)
   or  java [-options] -jar jarfile [args...]
       (to execute a jar file)
where options include:
-d32          use a 32-bit data model if available
-d64          use a 64-bit data model if available
-client       to select the "client" VM
-server       to select the "server" VM
-hotspot      is a synonym for the "client" VM  [deprecated]
              The default VM is client.

-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
              A ; separated list of directories, JAR archives,
              and ZIP archives to search for class files.
-D<name>=<value>
              set a system property
-verbose:[class|gc|jni]
              enable verbose output
-version      print product version and exit
-version:<value>
              require the specified version to run
-showversion  print product version and continue
-jre-restrict-search | -no-jre-restrict-search
              include/exclude user private JREs in the version search
-? -help      print this help message
-X            print help on non-standard options
-ea[:<packagename>...|:<classname>]
-enableassertions[:<packagename>...|:<classname>]
              enable assertions with specified granularity
-da[:<packagename>...|:<classname>]
-disableassertions[:<packagename>...|:<classname>]
              disable assertions with specified granularity
-esa | -enablesystemassertions
              enable system assertions
-dsa | -disablesystemassertions
              disable system assertions
-agentlib:<libname>[=<options>]
              load native agent library <libname>, e.g. -agentlib:hprof
              see also, -agentlib:jdwp=help and -agentlib:hprof=help
-agentpath:<pathname>[=<options>]
              load native agent library by full pathname
-javaagent:<jarpath>[=<options>]
              load Java programming language agent, see java.lang.instrumen

-splash:<imagepath>
              show splash screen with specified image
See http://www.oracle.com/technetwork/java/javase/documentation/index.html for more details.

自述文件.txt

关系数据服务 (RDS) 命令行工具

安装:

  1. 确保您的系统上安装了 JAVA 1.6 或更高版本:(java -version)
  2. 解压部署 zip 文件
  3. 设置以下环境变量: 3.1 AWS_RDS_HOME - 复制部署文件以检查的目录:Unix:ls ${AWS_RDS_HOME}/bin 应列出 rds-describe-db-instances ...) Windows:dir %AWS_RDS_HOME%\ bin 应该列出 rds-describe-db-instances ...) 3.2 JAVA_HOME - Java 安装主目录
  4. 将 ${AWS_RDS_HOME}/bin(在 Windows 中:%AWS_RDS_HOME%\bin)添加到您的路径
  5. (仅限 Unix)设置 bin 目录中所有文件的执行权限:chmod +x ${AWS_RDS_HOME}/bin/*

配置:

向命令行工具提供您的 AWS 用户凭证。您可以通过两种方式提供凭证:AWS 密钥或使用 X.509 证书。

使用 AWS 密钥

  1. 创建凭证文件:部署包括模板文件 ${AWS_RDS_HOME}/credential-file-path.template。编辑此文件的副本以添加您的信息。在 UNIX 上,将权限限制为凭证文件的所有者: $ chmod 600 。
  2. 有几种方法可以提供您的凭证信息:设置以下环境变量:AWS_CREDENTIAL_FILE= b。或者,为每个命令提供以下选项 --aws-credential-file c。在命令行上显式指定凭据:--I ACCESS_KEY --S SECRET_KEY

跑步:

检查您的设置是否正常运行,运行以下命令: $ rds --help 您应该会看到所有 RDS 命令的使用页面。$ rds-describe-db-instances --headers 如果您已经配置了数据库实例,您将看到一个标题行,然后是每个数据库实例的描述行。如果您还没有任何数据库实例,则该命令应该简单地运行而没有错误输出。

4

1 回答 1

2

我遇到了同样的问题,原来我的 JAVA_HOME 设置了一个斜杠。我删除了它,它开始正常工作。

要查看脚本正在运行的确切命令,请转到 {AWS_RDS_HOME}/bin/service.cmd。在没有回声的同一行上方添加以下行。这将允许您查看脚本调用的确切语句。

echo %JAVA_HOME%\bin\java %SERVICE_JVM_ARGS% -classpath %CP% com.amazon.webservices.Cli %CMD% %ARGV%
%JAVA_HOME%\bin\java %SERVICE_JVM_ARGS% -classpath %CP% com.amazon.webservices.Cli %CMD% %ARGV%

然后,您可以尝试调整命令并直接运行以查看您的哪些环境参数与脚本混淆。

于 2013-12-04T17:26:53.297 回答