Most voted "aws" questions
Amazon Web Services (AWS) is a set of proprietary remote computing services from Amazon.com. This tag can be used for software development issues that are platform-specific. SUPPORT AND CONFIGURATION QUESTIONS ARE NOT WITHIN THE SCOPE OF THIS WEBSITE.
Learn more…241 questions
Sort by count of
-
1
votes1
answer725
viewsList objects from my Buckets - Amazon S3 SDK PHP
My project is: List my Buckets List the objects of each Bucket I created a foreach to list the Buckets and it worked perfectly. The same thing didn’t happen with the foreach of the objects. $buckets…
-
1
votes2
answers103
viewsDjango collectstatic does not update modified files on S3
I’m using Django 1.10.6, follow this tutorial to configure media and staticfiles in S3 and when I spin collectstatic, files are not updated.…
-
1
votes1
answer3461
viewsSMTP ERROR: Failed to connect to server: (0)
I’m using AWS Elastic Beanstalk and I can’t send mails with Phpmailer. On my local server it works right with exactly the same configuration. AWS Elastic Beanstalk uses Red Hat 4.8.3-9... I tried…
-
1
votes0
answers30
viewsError cancelling an image export job in EC2
I created a task to export image and some time after no longer being necessary I wanted to export I wanted to cancel but an error occurs. This command: aws ec2 Cancel-export-task --export-task-id…
-
1
votes1
answer207
viewsNameserver problem: "Missing nameservers reported by Parent"
I am using Amazon AWS with Route53 tool to manage my DNS zone records. I was able to configure the nameservers listing and their response in ping requests, but when performing a Intodns I come…
-
1
votes0
answers32
views404 page return only with iOS devices
I published an app on www.yoohood.fun, created with the create-React-app, using an AWS server, and when the user accesses with the Facebook account, it is redirected to the /Sync folder. However,…
-
1
votes0
answers23
viewsI’m having a problem creating quickstar with mongodb on aws
When I try to create a Quickstart aws with mondodb I’m getting this error The following Resource(s) failed to create: [Vpcstack]. . Rollback requested by user. Embedded stack…
-
1
votes1
answer220
viewsPython function in AWS Lambda
I am needing to run the following function below on AWS Lambda: def subset_sum(numbers, target, partial=[]): s = sum(partial) # check if the partial sum is equals to target if s == target:…
-
1
votes1
answer25
viewsHow to recover the nameservers provided by aws?
I accidentally deleted the 4 nameserver provided by aws. How to recover ?
awsasked 6 years, 8 months ago Tiago Ratton 11 -
1
votes1
answer74
viewsCosts related to AWS Lambda and S3 codes
When an AWS Lambda function has codes that are saved in a Bucket in S3, access to the sources for each function started, respects the S3 cost policy? An example would be, each function that starts…
awsasked 6 years, 7 months ago Kelvin Stang Oenning 380 -
1
votes1
answer33
viewsChange text when entering Amazon C2 host
I searched the site of Amazon and did not find how to change the text that shows when entering, is the one of the image below. Does anyone know the location that changes this text ?…
-
1
votes1
answer24
viewsHow to page the Iamazons3.Listobjects method?
The method IAmazonS3.ListObjects that you can check out here limits the return by 1000 items per request but does not say if it is possible to make pagination, I have Buckets with more than 10…
-
1
votes0
answers46
viewsWhen we use async don’t you need to use callback?
I have the following function in V10.6 nodejs: #func-1 module.exports.funcOne = (event, context, callback) => { callback(null, { message: 'funcOne', event }); }; #func-2 module.exports.funcTwo =…
-
1
votes2
answers60
viewsConnection to database on Amazon
Good afternoon, I have a sqlserver database hosted on Amazon, and can’t perform the connection in php, there is some specific way to do this? I tried the connection this way: <?php $servername =…
-
1
votes0
answers59
viewsLog4j in Tomcat application on AWS Beanstalk
I have a multi tenant application developed in Java WEB (Spring) that uses log4j to log logs. Each tenant saves their log files in a specific folder, corresponding to the tenant of the logged-in…
-
1
votes1
answer137
viewsWhy use nodejs with asynchronous functions with AWS-Lambda?
AWS-Lambda services can be developed in Java, C#, Python, Go, Powershell and finally Nodejs (DOC). Nodejs is currently used as a backend of applications with the advantage of natively developing…
-
1
votes0
answers40
viewsAWS Language and Environment
Knowing the Amazon AWS i was curious to know in which (or which) language it is implemented and in which web server(s) it runs. Searching, the most I found Amazon’s own page on the overall…
-
1
votes1
answer40
viewsPost with api aws
I’m trying to make a Post for a service of AWS. I have never worked with AWS and I am studying some links and uninterruptedly I am doing a connection test using this code: private static async void…
-
1
votes1
answer41
viewsHow to use a Serverless function from Cloudmqtt?
I’m trying to integrate Cloudmqtt Broker with an AWS Node.js serverless function but I can’t find any documentation on how to do it. The goal is when arriving a message in Broker it trigar a Lambda…
-
1
votes0
answers57
views"This page is not working" error on AWS hosted website
I’m setting up hosting a PHP site on an AWS free server, the login home page is showing up correctly, and when I confirm the form login, it goes to the page that checks the login data, and if the…
-
1
votes0
answers98
viewsMysql + Bad Gateway Nginx php connections peak
I have at AWS: RDS M5.xlarge Mysql 5.6 EC2 t2.small NGINX + PHP 7.1 Intermittently, my Mysql is getting a peak of connections, 20 to be exact. And every time that happens, "Bad Gateway" appears on…
-
1
votes1
answer418
viewsThe file name Laravel
I’m saving a file on Amazon’s AWS S3, the file is being saved but it puts an underline and a number in front, as shown below: And this is in the way of getting the URL of the PDF to show the PDF to…
-
1
votes0
answers119
viewsHow to upload dynamically generated PDF to AWS with Laravel?
I am generating a PDF dynamically with the DOMPDF in the Laravel and I have to save the document in the service Cloud of Amazon. I’m not able to save the document in the cloud. But I can only save…
-
1
votes1
answer76
viewsReturn Dynamic Struct in Go
How could a dynamic return in Go using struct ? Example : func teste() (*struct, err){ type t struct { } return t, nil } The problem is that I would not like to create a struct for each method that…
-
1
votes1
answer171
views -
1
votes1
answer197
viewsDoes setlocale not work on Amazon EC2 instances?
I am developing an application in Laravel where I needed to use the function resources setlocale to translate the months of a given day into Portuguese. A month ago I had published a question…
-
1
votes1
answer529
viewsLocalstack starts on Docker, but I can’t access
I run a "Docker Compose" to start a localstack instance with the S3 service. It raises normally, but when trying to use AWS CLI to access it I get the following error: > aws…
-
1
votes1
answer16
viewsAWS Dynamodb: Transforming Data with Dynamodb.Update
I would like to know if anyone else needed to make a change to the recorded data in an AWS Dynamodb table where it is necessary to use the original recorded data and change it. Example: I have…
awsasked 3 years, 11 months ago Eldad Hauzman 111 -
0
votes2
answers890
viewsDirect upload to Amazon S3
I work using Symfony 2.5, Heroku and Amazon S3 hosting for the static files. I am working on a project where the user can upload very large images, and this ends up locking the server of my app or…
-
0
votes1
answer462
viewsUpload limit for AWS S3
I’m working with the Amazon S3 and AWS SDK for PHP. Is there a file size limit to send? Is there any simultaneous upload limit? It has given me a lot of these errors when I try to send 20 200MB…
-
0
votes1
answer515
viewsAmazon EC2 Linux Server without postfix sending email localhost
I set up a Linux instance on Amazon EC2, installed the basics to run a PHP application (Apache + PHP + Mysql). What surprised me was when I did a test using the function mail() PHP, I received in my…
-
0
votes0
answers40
viewsHas anyone implemented AWS SNS for GCM and APNS?
I have a question: we managed to implement the sending to one device at a time, now we need to do the sending in batch, someone has already implemented the SNS of AWS for GCM and APNS in batches?…
awsasked 9 years, 7 months ago thiago.adriano26 529 -
0
votes0
answers331
viewsHow do PHP mail() send via Amazon SES?
How to make the function mail() of PHP use my credentials on Amazon SES to send transactional emails without using lib Phpmailer or having to install and configure the postfix/sendmail for that…
-
0
votes0
answers102
viewsError 403 while uploading aws S3 . net
Just Set up user permissions on S3 and everything worked perfectly! I’m building a function to upload images in the S3 service from Amazon but I’m having a 403 error, there is some additional…
-
0
votes1
answer369
viewsAWS + Tomcat 8 + Vraptor 4: after increasing the volume of the instance, app does not starta
Good afternoon! We have an application running on Amazon and everything was working perfectly until yesterday. We had to change the volume of the instance because the old one had reached 100% of its…
-
0
votes0
answers673
views -
0
votes1
answer155
viewsAWS script to delete snapshot longer than 7 days
I need to make a script to delete my snapshots in mine AWS longer than 7 days. To perform the creation use this script, I hope it helps. AWS ec2 create-image --no-reboot --instance-id i-131e8e06…
-
0
votes0
answers58
viewsError publishing project in War format on Amazon server
I’m having difficulty publishing project on an Amazon server. Whenever I publish the file war in Tomcat the service does not start and returns me the following error: Jan 15, 2016 9:01:05 PM…
-
0
votes1
answer23
viewsServer hosted application layout
When I access an application of mine on the aws server of Amazon by IE activating the compatibility mode it stays the way I hope. When I access through Chrome it does not get the layout due at all:…
-
0
votes1
answer174
views -
0
votes0
answers320
viewshttps access to AWS does not work
I’m trying to set up HTTPS to the end user in an EC2 instance on AWS Linux. I even bought the certificate by Rapidssl and followed the steps to try to manually free the access, but I could not. So I…
-
0
votes3
answers3672
viewsRelease other Amazon HTTP ports
Hello, I am setting up a server on Amazon where I would like to have multiple sites in the same instance. I set up on the IIS server each site on a port, but the Amazon firewall only allows me to…
-
0
votes0
answers51
viewsGrab an AWS image and attach it to the email?
Is it possible to 'uple' an image in aws, and then attach it to an email? I thought of two things: If there is a way to recover the file directly from aws server ( as if it were my pc, for example,…
-
0
votes1
answer57
viewsStore JSON data in Amazon RDS
Is there any way to save data from a JSON online to an Amazon database dynamically? I’m trying to consume the data of a site but I’m not getting.
awsasked 8 years, 7 months ago Julinho da Adelaide 111 -
0
votes4
answers473
viewsDNS redirection - Problem AWS service usage
How to set up my DNS server to always redirect footprint.com.br to www.pegadadelixo.com.br?
-
0
votes1
answer73
viewsInsert API KEY from aws (Amazon)
I would like to know where I insert the Amazon KEY API into my android project. I will use a database installed on Amazon to record and retrieve my data. Follow my Radle: dependencies { compile…
-
0
votes1
answer1762
viewsWhat steps to implement SSL/TSL in an ASP.NET MVC application
I am developing an ASP.NET MVC project and would like to know what are the necessary processes to implement TSL/SSL. I’m actually not sure if this is the best place to ask this, yet I imagine you…
-
0
votes1
answer110
viewsRDS SQL SERVER AWS Amazon
Has anyone ever had a problem with the maximum amount of database that can be created with Amazon’s RDS? From what I checked there is a Trigger that does not let create more than 30 database in an…
-
0
votes0
answers220
viewsProblem with . htaccess on Amazon EC2
I am migrating a site to Amazon EC2 (Ubuntu with apache, php and mysql) and I am having problems with links routes. My file .htaccess is basically like this: RewriteEngine On Options +FollowSymLinks…
-
0
votes1
answer36
viewsError installing git in EC2 instance with Cent OS 5
I have an ec2 instance newly created using Centos release 5.11 (Final). One of the first things I tried to do was to install git using: sudo yum install git only that you’re making that mistake:…