skip to Main Content

Installing memcached on Amazon Linux

I am trying to use memcached for PHP on a Amazon Linux EC2 instance. In my PHP script when I call $mc = new Memcached(); the following error gets thrown in /var/log/php-fpm/www-error.log: [06-Sep-2020 00:49:44 UTC] PHP Fatal error: Uncaught Error:…

VIEW QUESTION

Make null resource to wait on aws_route53_record in Terraform – CentOS

resource "aws_route53_record" "record" { zone_id = data.aws_route53_zone.selected.zone_id name = "${var.sfs_instance_name}.example.com" type = "A" ttl = "60" records = ["${aws_eip.sfs.public_ip}"] } resource "null_resource" "sfs-ssl-certs" { connection { type = "ssh" user = "centos" host = aws_eip.sfs.public_ip private_key = file("../keys/${var.sfs_instance_name}.pem") } provisioner…

VIEW QUESTION
Back To Top
Search