Sign Up

Sign In

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What is the capital of Egypt? ( Cairo )

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

aws-labs Latest Articles

Getting Data From Syslog Into S3 Using Fluentd

Here is how: $ gem install fluentd $ gem install fluent-plugin-s3 $ touch fluentd.conf fluentd.conf should look like this (just copy and paste this into fluentd.conf): <source> type syslog port 5140 bind 0.0.0.0 tag system.local </source> <match **> type s3 path ...

How To Restore Managed WordPress Backups

How To Restore Managed WordPress Backups

Pre-Flight Check Managed WordPress sites installed via the Sites tab in Manage automatically are backed up each day, with the server retaining the 10 most recent backups. You can easily restore any site from an available backup in the Sites dashboard in ...

Enable TLS for Kube-Registry

This document describes how to enable TLS for kube-registry. Before you start, please check if you have all the prerequisite: Pack domain.crt and domain.key into a Secret $ kubectl –namespace=kube-system create secret generic registry-tls-secret –from-file=domain.crt=domain.crt –from-file=domain.key=domain.key Run Registry Please be ...

Configure and Use L2TP on Windows 10

To prepare a Windows 10 computer to make an L2TP VPN connection, you must configure the L2TP connection in the network settings. The exact steps could be slightly different, depending on your Control Panel view, and your existing configuration. Start the ...

Fun with strace and the GDB Debugger

The UNIX family has always provided abundantly for its users. UNIX is a treasure chest of tools with which you can not only do productive work but also educate and entertain yourself as you explore the depths of the operating ...

HowTo: Rotate Logs to S3

owTo: Rotate Logs to S3 This article will talk about how to use logrotate to rotate your logs to S3. Here we specifically are using Gentoo Linux, and we can find EC2 AMIs on the Gentoo in the Cloud page. We will be using s3cmd to actually ...

Converting a Subversion repository to Git

Converting a Subversion repository to Git

A complete guide to git-svn conversions Our goal is to do a complete conversion of our Subversion repository and end up with a bare Git repository acceptable for sharing with others (privately or publicly). Bare repositories are ones without a local working ...

Ubuntu – Using mod_python to serve your application

Create the Django Application First, move to your home directory and go into your public_html/domain1.com directory (if you don’t have one, create one and give it the name of your domain rather than domain1.com): cd ~/public_html/domain1.com Next, create a Django ...

Ubuntu Intrepid – ISPConfig 3

Ubuntu Intrepid – ISPConfig 3

Update Repositories We need to update the aptitude repository indexes. Type the following command to do this: # sudo aptitude update Installing Prerequisites Next we need to install the prerequisite packages for ISPConfig. The following packages will be needed: # ...

docker Authenticating proxy with nginx

Authenticating proxy with nginx With this method, you implement basic authentication in a reverse proxy that sits in front of your registry. While this model gives you the ability to use whatever authentication backend you want through a secondary authentication ...