Search Criteria
Package Details: dynamodb 2020_10_12-1
Git Clone URL: | https://aur.archlinux.org/dynamodb.git (read-only, click to copy) |
---|---|
Package Base: | dynamodb |
Description: | Amazon DynamoDB Local instance. Amazon DynamoDB is a fast and flexible NoSQL database service for all applications that need consistent, single-digit millisecond latency at any scale. |
Upstream URL: | http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tools.DynamoDBLocal.html |
Keywords: | dynamodb |
Licenses: | |
Submitter: | bananaboydean |
Maintainer: | aaronm-cloudtek |
Last Packager: | aaronm-cloudtek |
Votes: | 7 |
Popularity: | 0.145078 |
First Submitted: | 2015-09-16 21:57 |
Last Updated: | 2020-10-29 18:39 |
Dependencies (3)
- bash (bash-devel-git, bash-devel-static-git)
- java-environment (jdk5, tuxjdk, jdk7-openjdk-infinality, java-8-openjdk-shenandoah, jdk8-openjdk-infinality, java-gcj-compat, jdk9, zulu-10-bin, jdk-devel, jdk8-arm64, jdk6, jdk12-openj9-bin, zulu-12-bin, jdk12, jdk8-openjdk-dcevm, jdk11-graalvm-ee-bin, jdk8-arm, jdk13-openj9-bin, jdk9-openj9-bin, jdk10, jdk11-openjdk-dcevm, jdk8-openjdk-jetbrains, jdk8-openjdk-shenandoah, jdk10-openj9-bin, jdk14-openj9-bin, sapmachine-jdk-bin, jdk7, jdk8-j9-bin, jdk, jdk-openj9-bin, jdk-arm, jdk-adoptopenjdk, jdk11-adoptopenjdk, liberica-jdk-full-bin, jdk8-jetbrains, zulu-embedded-jdk8, liberica-jdk-8-full-bin, liberica-jdk-11-bin, liberica-jdk-11-full-bin, liberica-jdk-11-lite-bin, liberica-jre-11-bin, liberica-jre-11-full-bin, liberica-jre-8-full-bin, jdk11, zulu-embedded-jdk, jdk7r1-j9-bin, jdk7-j9-bin, zulu-15-bin, zulu-14-bin, zulu-13-bin, jdk8-adoptopenjdk, zulu-embedded-jdk11, jdk-bcl, jdk8-openj9-bin, zulu-11-bin, zulu-8-bin, amazon-corretto-15, jdk-openj9, jre-jetbrains, java-openjdk-loom-ea-bin, jdk-jetbrains, jdk11-openj9-bin, jdk11-jetbrains-imfix, jdk8-graalvm-bin, jdk11-graalvm-bin, java-openjdk-bin, amazon-corretto-8, amazon-corretto-11, jdk11-openjdk-dcevm-conflicts-fixed, jdk8, java-openjdk-ea-bin, jdk-openjdk, jdk11-openjdk, jdk7-openjdk, jdk8-openjdk)
- lib32-glibc
Latest Comments
kristerv commented on 2018-09-18 08:21
@poisonoak Can you elaborate where you made this change? My db gives error "unable to open database file". Is this the same error you were fixing?
edit: okay got it. It's just
chmod -R 777 /var/lib/dynamodb
Also for anyone interested there's a conf file at
/etc/dynamodb/config.cfg
.poisonoak commented on 2017-01-24 18:36
Thanks for the package. I found that I had to change the permissions on the script's -dbPath folder, sudo chmod 777 /var/lib/dynamodb, before it would work. 771 might also be sufficient, but I'm the only user so I didn't bother testing further. Alternatively, dropping the -dbPath argument from the script and using the default location or replacing it with -inMemory will work.
bananaboydean commented on 2015-12-11 14:00
Thanks gian. Should be able to push it up in a few hours.
gian commented on 2015-12-11 10:48
You also need to create /var/lib/dynamodb to be able to install the package
gian commented on 2015-12-11 10:26
And here is a patch:
diff --git a/PKGBUILD b/PKGBUILD
index 62e08ca..b42696f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,7 +14,7 @@ sha256sums=('6a2d271d62de9e4e48bd4bd866a72283dec6bacc097c2f6262ab19fc0feb34d9' '
package() {
cd "$pkgdir"
- mkdir -p "usr/share/dynamodb" "usr/share/licenses/dynamodb" "usr/lib/systemd/system" "usr/bin" "/etc/dynamodb"
+ mkdir -p "usr/share/dynamodb" "usr/share/licenses/dynamodb" "usr/lib/systemd/system" "usr/bin" "etc/dynamodb"
cp -dr --no-preserve=ownership "$srcdir/DynamoDBLocal_lib/" "./usr/share/dynamodb"
gian commented on 2015-12-11 10:12
The package is not installable (and does not build)
Here the log
==> Making package: dynamodb 1.0-1 (Fri Dec 11 11:11:24 CET 2015)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
-> Found config.cfg
-> Found dynamodb
-> Found dynamodb.service
-> Found dynamodb_local_2015-07-16_1.0.tar.gz
==> Validating source files with sha256sums...
config.cfg ... Passed
dynamodb ... Passed
dynamodb.service ... Passed
dynamodb_local_2015-07-16_1.0.tar.gz ... Passed
==> Extracting sources...
-> Extracting dynamodb_local_2015-07-16_1.0.tar.gz with bsdtar
bsdtar: Failed to set default locale
==> Removing existing $pkgdir/ directory...
==> Entering fakeroot environment...
==> Starting package()...
mkdir: cannot create directory '/etc/dynamodb': Permission denied
==> ERROR: A failure occurred in package().
Aborting...