I have an OS(Amazon Linux) that doesn’t support a library (libcgj). If I host the application via docker container, can I use this library? Answer As long as your application’s base images is one of those OSs that support your library, I think you should be fine. However, if you could give some more information like what application, Dockerfile etc.
Tag: amazon-web-services
ssh connection from Mac OS X shows “>” prompt and stays there
Problem – when I try to connect to an Amazon AWS EC2 linux instance through SSH, instead of connecting, it simply shows a > prompt as if asking for more info. command entered through terminal ssh -i “<private_key_path>” <user>@<host_address> when i hit enter, it just shows a > prompt. there are no errors, or messages. Just that single prompt which
ELK stack and web app on different servers, how to feed logs from later to former?
I have a website on digital ocean and on AWS I have ELK – Elastic Search, Kibana, Logstash – stack. I’m trying to understand how feed the logs files from web app to ELK stack. Is it possible to feed them via the internet between different servers? Do you I have to install nginx to be able to see kibana
SSH to AWS EC2 issue – key_load_public: No such file or directory [closed]
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question
Why can’t I upload folders to a Linux EC2 Instance?
I have been uploading my files and folders to my Linux EC2 Instance using SSH for the past month. Yesterday I updated the Linux version, and since then I cannot upload folders to the Instance, but I can still upload files. Why is this happening and how can I fix it? Here’s what I’m using to upload folders: (dashed out
AWS Lambda permission denied when trying to use ffmpeg
I want to write a handler that responds to S3 put events to convert any avi files that are uploaded to mp4. I doing it in Java, in Eclipse, with the AWS toolkit plugin. For video conversion, I am using ffmpeg with ffmpeg-cli-wrapper, and I have provided a static (linux) binary of ffmpeg in the source tree. I have found
SSH into AWS EC2 instance gives Permission denied (publickey)
I created a new EC2 Instance form my AWS Console and tried to ssh using my keyfile I was able to login into the server and did these things : installed httpd. isntalled php. installed mysql. created a new group “web” and added user apache and ec2-user to this group.Changed my default home directory /home/ec2-user/ ownership to ec2-user:web Set up
can’t connect to ec2 tomcat localhost
I’ve followed a lot of tutorials and questions which been asked before, but still no good (I’m total beginner in ec2) I’ve did the following: lunched Amazon Linux AMI 2015.09.1 (HVM), SSD Volume Type. I’ve added this rule to my security group inbound: but when I try to browse to: Public DNS:8080 I get: This webpage is not available: ERR_CONNECTION_TIMED_OUT
How to get the URL or IP of a load balancer from DNS of a website?
nslookup is a network administration command-line tool available for many computer operating systems for querying the Domain Name System (DNS) to obtain domain name or IP address mapping or for any other specific DNS record. So, nslookup returns the endpoint(s) of a url. But if I needs to get the intermediate url/ip, how do I do so? For eg. If
Packer Amazon EBS Chef – sorry, you must have a tty to run sudo
I want to use Packer for provisioning image for amazon ebs using chef. I am getting the following error message: example.json Output I think the relevant error message is: Does anybody have an idea? Answer You can use ssh_pty : true to have a TTY.