Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Today we’ll be looking at how to backup/export an Amazon (AWS) Route 53 Hosted Zone to file. AWS makes it’s really easy for you to move your domain to them but really difficult to take all your entries out of…
Today we’ll look into repairing a crashed WordPress database table. The error message could appear in one of many ways, some of them below: [20-Oct-2019 15:28:18 UTC] WordPress database error Table ‘wp_options’ is marked as crashed and should be repaired…
Today we’ll be going over how to backup your website off-site with git every day. You can use this guide with any service that supports git, we’re focusing on GitHub because it’s reliable, robust and offers a free tier. Start…
Today we’ll create a new user and grant it access to a single database in MongoDB. Start off by logging into mongodb with your admin/root user mongo -u ‘username’ -p ‘password’ –authenticationDatabase ‘admin’ You’ll land at a prompt like below…
Today we’ll look at how to create a new database in MongoDB. Connect to mongod via the following line, replace your credentials mongo -u ‘username’ -p ‘password’ –authenticationDatabase ‘admin’ If you’re successfully authenticated then you’ll see the following prompt: To…
Has an SSH connection taken too long to return the password prompt? There are two possible fixes to it. There are two possible ways to fix this, First, disable Reverse DNS lookups on SSH connections on the target machine. Edit…
We updated an old server recently and the ProFTP server started throwing this error “530 Login incorrect” and wouldn’t let us in. We looked at the usual culprits, reset passwords, verified directories but nothing seemed to work. We ran ProFTPD…
The AWS CLI gives you a way to interact with Amazon Web Services (AWS) via command line. This comes in real handy when you need to automate tasks such as scaling EC2 server instances, uploading files to S3 buckets, moving…
Composer lets you manage PHP package dependencies on a per-project basis. You install Composer like so: sudo curl -sS | php Moved it to the suggested location: mv composer.phar /usr/local/bin/composer Still got “composer: command not found” when verifying the install?…
Logging RSYNC output to file can be cumbersome but useful at times. Cumbersome because if you’re transferring a large number of files then the log file becomes intelligible but useful in cases where you need to track successful vs. unsuccessful transfers.…