httpv://www.youtube.com/watch?v=icVlW_MdrCA
httpv://www.youtube.com/watch?v=icVlW_MdrCA
httpv://www.youtube.com/watch?v=eEHxJOxa5ew
I say now Pop Rocks, because 2 days prior, I saw this:
httpv://www.youtube.com/watch?v=qvgYAwDORo4
YOU need to see this if you have not.
httpv://www.youtube.com/watch?v=Fqq051BU2MY
httpv://www.youtube.com/watch?v=9PnOG67flRA
Metronomy – The Bay
Songwriters: JOSEPH PATRICK MOUNT
Lyrics:
You may have the money
But you’ve got to go
It’s sensible
It’s sensible
And those endless seasons
That go on and on
Incredible
But I’d sooner get out
And remember where we went last year
You said everything about it moved on your career
If you want to go
I’ll take you back one day
Because this isn’t Paris
And this isn’t London
And it’s not Berlin
And it’s not Hong Kong
Not Tokyo
If you want to go
I’ll take you back one day
It feels so good in the bay
It feels so good in the bay
You may have the body
But do you have the song?
Let’s make this happen
Let’s make this happen
And those endless beaches
That go on and on
It’s magical
But I’d sooner get out
Remember where we went last year
You said everything about it moved on your career
If you want to go
I’ll take you back one day
Because this isn’t Paris
And this isn’t London
And it’s not Berlin
And it’s not Hong Kong
Not Tokyo
If you want to go
I’ll take you back one day
It feels so good in the bay
It feels so good in the bay
httpv://www.youtube.com/watch?v=pod4jIKT_kA
httpv://www.youtube.com/watch?v=DLDxWH0meJM
httpv://www.youtube.com/watch?v=KICIOYlZTr8
I recently had to prove the update status of apache as part of a PCI scan, and the best method for obtaining the output, was to email it to myself, like so
|
1 |
rpm -q --changelog httpd | mail -s "Subject" user@example.com |
This makes it much easier to review and handle large outputs without having to be on the original linux system.
I have a few tools I use to deal with the scripts, first I want to see if there are any perl scripts running:
|
1 |
ps aux | grep .pl | grep -v grep |
Then I can kill them:
|
1 |
kill `ps aux | grep .pl | grep -v grep | awk '{print $2}'` |
Sometimes with the -9:
|
1 |
kill -9 `ps aux | grep .pl | grep -v grep | awk '{print $2}'` |
and sometimes for a specific user, again, the -9 flag can be used here as well
|
1 |
kill `ps aux | grep user | grep -v grep | awk '{print $2}'` |
The Commercial seems very upbeat, but the actual song is rather downbeat. Below is the commercial:
httpv://www.youtube.com/watch?v=Igk_ZMlKg2U
Now, watch the music video, and listen closely to the lyrics:
httpv://www.youtube.com/watch?v=kK42LZqO0wA
This sounds upbeat, but is a sad song in the end. It reminds me of “I Don’t Love You Anymore” (1977) by Teddy Pendergrass. Sure it sounds like an upbeat song, but is rather sad.
httpv://www.youtube.com/watch?v=v3nbdFdCi-Y
::Installation::
1 Run the following command to check if Apache, PHP, MySQL, Bind or Cyrus are pre-installed by the OS:
|
1 |
rpm -qa | egrep '(http)|(php)|(cyrus)|(mysql)|(bind-utils)' |
2 If any are installed they can cause issues with installing cPanel, although I have seen cPanel attempt to import settings. I would rather remove them:
|
1 2 3 4 |
yum remove http* yum remove php* yum remove mysql* yum remove bind-utils* |
3 Open the /home directory
|
1 |
cd /home |
4 Fetch the latest installation file from the cPanel servers
|
1 |
wget -N http://httpupdate.cpanel.net/latest |
::NOTE:: If you want to install the STABLE release, further details found here, as apposed to latest, run the following command:
|
1 |
>echo "CPANEL=stable" > /etc/cpupdate.conf |
5 Run the installation files
|
1 |
sh latest |
Once done, it is time to configure this bad boy!
::Configuration::
1 Touch this file to tell cPanel it is being automatically setup.
|
1 |
touch /etc/.whostmgrft |
2 Configure the 3 main services for the server.
|
1 2 3 |
/scripts/setupmailserver dovecot /scripts/setupnameserver disabled /scripts/setupftpserver pure-ftpd |
3 Replace the following strings [Server’s Main IP], [user@example.com], [Servers FQDN Hostname], [hostname 1], [hostname 2], [hostname 3] with their appropriate values.
::NOTE:: Keep in mind this should be ONE line once you have updated the string below.
|
1 |
echo -e 'ADDR [Server's Main IP]\nCONTACTEMAIL [user@example.com]\nCONTACTPAGER\nDEFMOD x3\nETHDEV eth0\nFTPTYPE pureftp\nHOMEDIR /home\nHOMEMATCH home\nHOST [Servers FQDN Hostname]\nLOGSTYLE combined\nMINUID\nNS [hostname 1]\nNS2 [hostname 2]\nNS3 [hostname 3]\nNS4\nNSTTL 86400\nSCRIPTALIAS y\nTTL 14400' > /etc/wwwacct.conf |