Alternatively, in the Amazon interface, you can select a directory or file, and click on the action "Mark as public"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@scratch1 exthd]# fuser -mv /media/exthd/ | |
USER PID ACCESS COMMAND | |
/media/exthd/: root 29787 ..c.. bash | |
root 29846 ..c.. bash | |
root 29898 ..c.. man | |
root 29901 ..c.. sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### View a key's information | |
openssl rsa -in key -noout -text | |
### View a CSR's information | |
openssl req -in csr -noout -text | |
### View a certificate's information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### | |
### DO NOT DO THIS IF YOU ARE NOT COMFORTABLE WITH WHAT YOU ARE DOING. | |
### | |
### ONCE YOU START MAKING FORCIBLE CHANGES ON YOUR LOCAL OR HOSTED REPOS, YOU MAY NOT BE ABLE TO UNDO YOUR UNDOs SO GO SLOWLY AND MAKE URE YOU DO THE RIGHT THING | |
### | |
### ------------------------------------------------------------------ | |
### Reference: http://stackoverflow.com/questions/1270514/undoing-a-git-push#1270608 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### View a key's information | |
openssl rsa -in key -noout -modulus | |
### View a CSR's information | |
openssl req -in csr -noout -modulus | |
### View a certificate's information |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl s_client -connect antbox:8401 -servername zoodeals.com |
Say you're on a branch named BEFOURE-310
and you want to fix the typo. Renaming the branch is this simple:
git br --move BEFOUR-310
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
file { | |
type => syslog | |
path => "/var/log/messages" | |
} | |
} | |
filter { | |
grok { | |
type => syslog |
OlderNewer