Note that the network address for the destination is shown as IPv6! That is the root cause of the issue: 1. Sendmail is sending mail from the IPv6 address instead of the IPv4 address 2. Google rejects IPv6 senders without proper reverse […]
ERROR: Briefly Unavailable for Scheduled Maintenance. Check Back in a Minute CAUSE: WordPress did not complete an action SOLUTION: Either – remove ~/wordpress/.maintenance – edit ~/wordpress/wp-activate.php and set define( ‘WP_INSTALLING’, false );
I wanted to change instance type from t2 to t3, but got an error when i went to start the instance:
1
2
An error occurred(InvalidParameterCombination)when calling the StartInstances operation:
Enhanced networking with the Elastic Network Adapter(ENA)isrequired forthe't3.large'instance type.Ensure that your instance'i-04ae4c6f7bfa96e51'isenabled forENA.
I found this AWS docs page: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/enhanced-networking-ena.html Below are the steps I need to follow on AWS Linux 1. Summary Steps Pre-flight tests on t2 modinfo ena -> see “ERROR: modinfo: could not […]
Automatic merge failed;fix conflicts andthencommit the result.
shell> git status
1
2
3
4
5
6
7
8
9
10
11
12
13
On branch eric-merge
Your branch isup todate with'origin/eric-merge'.
You have unmerged paths.
(fix conflicts andrun"git commit")
(use"git merge --abort"toabort the merge)
Changes tobe committed:
Unmerged paths:
(use"git add <file>..."tomark resolution)
both modified:myCode.pm
1
2
shell>git merge--abort
shell>git status
1
2
3
4
On branch eric-merge
Your branch isup todate with'origin/eric-merge'.
nothing tocommit,working tree clean
IMPORTANT NOTE: Previous versions of git used different commands for this operation: Latest version: git merge –abort Older than version 1.7.4: git reset –merge Older than version 1.6.2: git reset –hard