A little something about everything

internet marketing and website development made simple..

User Data Breach at Amazon.com today, Notice: Important Information about your Amazon.com Account

If you're wondering why you are receiving more spam then usual this could be part of the issue.

Seems amazon.com account emails were disclosed by mistake recently.

Here is the Notification:

Sender:

Amazon.com <no-reply@amazon.com>

Header Info:

Received-SPF: pass (hidden: domain of bounces.amazon.com designates 54.240.13.69 as permitted sender)
 client-ip=54.240.13.69
Received: from a13-69.smtp-out.amazonses.com ([54.240.13.69]) by hidden with
 ESMTPS (version=TLS1_2 cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P521); Tue, 27 Nov 2018 14:43:50 -0600

Subject:

Important Information about your Amazon.com Account

Here is the message:

Hello, We’re contacting you to let you know that our website inadvertently disclosed your email address due to a technical error. The issue has been fixed. This is not a result of anything you have done, and there is no need for you to change your password or take any other action. Sincerely,Customer ServiceAmazonPlease note: this e-mail was sent from a notification-only address that cannot accept incoming e-mail. Please do not reply to this message.

How to install Webmin 1.89 on Debian Linux 9.5

To install Webmin on Debian Linux 9.5 you can follow these commands, (accept any prompts)

wget http://prdownloads.sourceforge.net/webadmin/webmin_1.890_all.deb
apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python
dpkg --install webmin_1.890_all.deb

That's it, basic setup is now complete.

You can now access your server using the default https:// {youIPaddressOrServerAddress} :10000

Be sure to properly secure your server before putting it into production.

 

Microsoft SQL Server Management Studio 18 Error: Maintenance Plans, Back Up Database Task (is not registered for use on this computer.)

This is the error:
 
TITLE: Microsoft SQL Server Management Studio
------------------------------
The task with the name "Back Up Database Task" and the creation name "Microsoft.SqlServer.Management.DatabaseMaintenance.DbMaintenanceBackupTask, Microsoft.SqlServer.MaintenancePlanTasks, Version=15.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" is not registered for use on this computer.
Contact Information:
Back Up Database Task
------------------------------
BUTTONS:
OK
------------------------------
Install and use SSMS version 17.9 to resolve this issue.

Attach Database Microsoft SQL Server 2017 MDF & LDF

Since 2017 no longer attaches the corresponding ldf using the SQL management studio you can instead use a script to do the attach.

Here is the example:

USE [master]
GO
CREATE DATABASE [SomeDatabase] ON 
( FILENAME = N'Z:\Data\SomeDatabase.mdf' ),
( FILENAME = N'Z:\Logs\SomeDatabase.ldf' ),
 FOR ATTACH
GO