cl

Tips to install Oracle 11gr2 RAC on AIX (6.1/7.1)

AIX is like an Unix environment awesome original, same to HP-Unix, and, if you have a plan to install Oracle RAC, you need to pay attention. I note some tips in this article to help.

1. Checking Operating System Packages

# lslpp -l bos.adt.base bos.adt.lib bos.adt.libm bos.perf.libperfstat 
bos.perf.perfstat bos.perf.proctools rsct.basic.rte rsct.compat.clients.rte 
xlC.aix61.rte

If not, install on AIX source by smity. It's easy, but remember, some packaged requires your IBM's account to download.

2. Verify UDP and TCP Kernel Parameters

# /usr/sbin/no -a | fgrep ephemeral

If you expect your workload to require a high number of ephemeral ports, then update
the UDP and TCP ephemeral port range to a broader range. For example:

# /usr/sbin/no -p -o tcp_ephemeral_low=9000 -o tcp_ephemeral_high=65500
# /usr/sbin/no -p -o udp_ephemeral_low=9000 -o udp_ephemeral_high=65500

3. Checking Resource Limits:
To ensure that these resource limits are honored, confirm that the line login
session required /usr/lib/security/pam_aix is set in /etc/pam.conf.For example:

dtsession auth required /usr/lib/security/pam_aix
dtlogin session required /usr/lib/security/pam_aix
ftp session required /usr/lib/security/pam_aix
imap session required /usr/lib/security/pam_aix
login session required /usr/lib/security/pam_aix
rexec session required /usr/lib/security/pam_aix
rlogin session required /usr/lib/security/pam_aix
rsh session required /usr/lib/security/pam_aix
snapp session required /usr/lib/security/pam_aix
su session required /usr/lib/security/pam_aix
swrole session required /usr/lib/security/pam_aix
telnet session required /usr/lib/security/pam_aix
xdm session required /usr/lib/security/pam_aix
OTHER session required /usr/lib/security/pam_prohibit
websm_rlogin session required /usr/lib/security/pam_aix
websm_su session required /usr/lib/security/pam_aix
wbem session required /usr/lib/security/pam_aix

4. Tuning AIX System Environment
Confirm the aio_maxreqs value using the procedure for your release:
AIX 6.1 and 7.1:

# ioo -o aio_maxreqs
aio_maxreqs = 65536

The aio is Asynchronous Input Output is an exciting parameter, I tried to control and modified it many times, but it's strongly to do from Oracle advices,

Quote:

Adjust the initial value of aio_maxservers to 10 times the number of logical disks divided by the number of CPUs that are to be used concurrently but no more than 80

Oracle document refer: https://docs.oracle.com/database/121/AXDBI/app_manual.htm#AXDBI7880

5. Tuning Virtual Memory Manager

vmo -p -o minperm%=3
vmo -p -o maxperm%=90
vmo -p -o maxclient%=90
vmo -p -o lru_file_repage=0
vmo -p -o strict_maxclient=1
vmo -p -o strict_maxperm=0

Note: You must restart the system for these changes to take effect

6. Increase System block size allocation

# /usr/sbin/chdev -l sys0 -a ncargs='128'

7. Configure SSH LoginGraceTime Parameter
On AIX systems, the OpenSSH parameter LoginGraceTime by default is commented
out, and the default behavior of OpenSSH on AIX can sometimes result in timeout
errors. To avoid these errors, complete the following procedure:
7.1. Log in as root.
7.2. Using a text editor, open the OpenSSH configuration file /etc/ssh/sshd_config.
7.3. Locate the comment line #LoginGraceTime 2m.
7.4. Uncomment the line, and change the value to 0 (unlimited). For example:
LoginGraceTime 0
7.5. Save /etc/ssh/sshd_config.
7.6. Restart SSH.

8. Setting priviledge to Oracle ASM Luns
Same to Solaris, HP-Unix. Remember, when you've got failure of ASM configuration, you need to flush out the disk's slice/partition by OS command "dd". And the slice/partition/LUN allocated from storage to IBM, has got different first alphabet to other platform. The alphabet begins by "r", example:

7.1 ORC and Voting disk
# chown grid:asmadmin /dev/rhdisk5 -> OCR
# chmod 660 /dev/rhdisk5 
# chown grid:asmadmin /dev/rhdisk6 -> Voting Disk
# chmod 660 /dev/rhdisk6
7.2 Datafile, Archivelog and Backup 
# chown grid:asmadmin /dev/rhdisk2
# chmod 660 /dev/rhdisk2
# chown grid:asmadmin /dev/rhdisk3
# chmod 660 /dev/rhdisk3
# chown grid:asmadmin /dev/rhdisk4
# chmod 660 /dev/rhdisk4
# chown grid:asmadmin /dev/rhdisk9
# chmod 660 /dev/rhdisk9
# chown grid:asmadmin /dev/rhdisk10
# chmod 660 /dev/rhdisk10

9. Enable simultaneous access to a disk device from multiple nodes
To enable simultaneous access to a disk device from multiple nodes, you must set the appropriate Object Data Manager (ODM) attribute, depending on the type of reserve attribute used by your disks. The following section describes how to perform this task using hdisk logical names

8.1. determine the reserve setting your disks use, enter the following command,where n is the hdisk device number

# lsattr -E -l hdiskn | grep reserve_

The response is either a reserve_lock setting, or a reserve_policy setting. If the attribute is reserve_lock, then ensure that the setting is reserve_lock = no. If the attribute is reserve_policy, then ensure that the setting is reserve_policy = no_reserve.

8.2. If necessary, change the setting with the chdev command using the following syntax, where n is the hdisk device number:

chdev -l hdiskn -a [ reserve_lock=no | reserve_policy=no_reserve ]

For example:
# chdev -l hdisk5 -a reserve_lock=no
# chdev -l hdisk5 -a reserve_policy=no_reserve

8.3. Enter commands similar to the following on any node to clear the PVID from each disk device that you want to use:

# /usr/sbin/chdev -l hdiskn -a pv=clear

When you are installing Oracle Clusterware, you must enter the paths to the appropriate device files when prompted for the path of the OCR and Oracle Clusterware voting disk. For example: /dev/rhdisk10

9.Configure Shell Limits
9.1. Add the following lines to the /etc/security/limits file:

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

9.2.Enter the following command to list the current setting for the maximum number of process allowed by the Oracle software user:

/usr/sbin/lsattr -E -l sys0 -a maxuproc

If necessary, change the maxuproc setting using the following command:

/usr/sbin/chdev -l sys0 -a maxuproc=16384

10. Configure User Process Parameters (Verify that the maximum number of processes allowed for each user is set to 2048 or greater)
Enter the following command:

# smit chgsys

Verify that the value shown for Maximum number of PROCESSES allowed for each user is greater than or equal to 2048. If necessary, edit the existing value.
When you have finished making changes, press Enter, then Esc+0 (Exit) to exit.

11. Configure Network Tuning Parameters:
To check the current values of the network tuning parameters:

# no -a | more

If the system is running in compatibility mode, then follow these steps to change the parameter values:

Enter commands similar to the following to change the value of each parameter:

# no -o parameter_name=value

For example:

# no -o udp_recvspace=655360

Add entries similar to the following to the /etc/rc.net file for each parameter that you changed in the previous step:

if [ -f /usr/sbin/no ] ; then
/usr/sbin/no -o udp_sendspace=65536
/usr/sbin/no -o udp_recvspace=655360
/usr/sbin/no -o tcp_sendspace=65536
/usr/sbin/no -o tcp_recvspace=65536
/usr/sbin/no -o rfc1323=1
/usr/sbin/no -o sb_max=4194304
/usr/sbin/no -o ipqmaxlen=512
fi

For the ISNO parameter tcp_sendspace, use the following command to set it:

# ifconfig en0 tcp_sendspace 65536

By adding these lines to the /etc/rc.net file, the values persist when the system restarts.

12. Automatic SSH configuration
By default, OUI searches for SSH public keys in the directory /usr/local/etc/, and ssh-keygen binaries in /usr/local/bin. However, on AIX, SSH public keys typically are located in the path /etc/ssh, and ssh-keygen binaries are located in the path /usr/bin. To ensure that OUI can set up SSH, use the following command to create soft links:

# ln -s /etc/ssh /usr/local/etc
# ln -s /usr/bin /usr/local/bin

In rare cases, Oracle Clusterware installation may fail during the "AttachHome" operation when the remote node closes the SSH connection. To avoid this problem, set the following parameter in the SSH daemon configuration file /etc/ssh/sshd_config on all cluster nodes to set the timeout wait to unlimited:

LoginGraceTime 0

13. Shell Limit
Adding these line in /etc/security/limits

default:
fsize = -1
core = 2097151
cpu = -1
data = -1
rss = -1
stack = -1
nofiles = -1

14. Create groups and users

# mkgroup -'A' id='1000' adms='root' oinstall
# mkgroup -'A' id='1031' adms='root' dba
# mkgroup -'A' id='1032' adms='root' oper
# mkgroup -'A' id='1020' adms='root' asmadmin
# mkgroup -'A' id='1022' adms='root' asmoper
# mkgroup -'A' id='1021' adms='root' asmdba
# mkuser id='1100' pgrp='oinstall' groups='dba,asmadmin,asmoper,asmdba' home='/portalgrid/grid' grid
# mkuser id='1101' pgrp='oinstall' groups='dba,oper,asmdba' home='/portaloracle/oracle' oracle

# mkdir -p /portalapp/app/11.2.0/grid
# mkdir -p /portalapp/app/grid
# mkdir -p /portalapp/app/oracle

# chown grid:oinstall /portalapp/app/11.2.0/grid <- GRID_HOME
# chown grid:oinstall /portalapp/app/grid <- GRID_BASE (ORACLE_BASE for Grid user)
# chown -R grid:oinstall /portalapp
# chown oracle:oinstall /portalapp/app/oracle
# chmod -R 775 /portalapp/

15. Setting the profile
15.1. Grid Profile

export TEMP=/tmp
export TMP=/tmp
export TMPDIR=/tmp
umask 022

export ORACLE_HOSTNAME=portal1
export ORACLE_BASE=/portalapp/app/grid
export ORACLE_HOME=/portalapp/app/11.2.0/grid
export GRID_HOME=/portalapp/app/11.2.0/grid
export CRS_HOME=/portalapp/app/11.2.0/grid
export ORACLE_SID=+ASM1

export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib

16. Prevent Xserver does not display correct term

# startsrc -x

17. Create the following softlink needed for some Oracle utilites

# ln -s /usr/sbin/lsattr /etc/lsattr

To check existing capabilities, enter the following command as root; in this example,
the Grid installation user account is grid:

# /usr/bin/lsuser -a capabilities grid

To add capabilities, enter a command similar to the following:

# /usr/bin/chuser capabilities=CAP_NUMA_ATTACH,CAP_BYPASS_RAC_VMM,CAP_PROPAGATE grid

18. Remember to run the Installation fixup scripts

$ ./runcluvfy.sh stage -pre crsinst -n node -fixup -verbose

With Oracle Clusterware 11g release 2, Oracle Universal Installer (OUI) detects when the minimum requirements for an installation are not met, and creates shell scripts,
called fixup scripts, to finish incomplete system configuration steps. If OUI detects an incomplete task, then it generates fixup scripts (runfixup.sh). You can run the fixup script after you click the Fix and Check Again Button.

19. In the installation progressing, when root.sh at node 2, can the error such as "CRS appear in node 1, did not attemp to stop cluster, re-join cluster, by pass and continue installation.
- If Xterm did not occur, then do: $ export ORACLE_TERM=dtterm
- Manually export ORACLE_BASE, ORACLE_HOME when make an installation before running runInstaller.sh
- If /tmp is too small <500MB, then make a private directory point to other directory, change owner to grid, oracle user, example:

A. Grid

# cd /portallog
# mkdir /portallog/tmp
# chown -R grid:oinstall /portallog/tmp

B. Oracle

# cd /portal
# mkdir tmp
# chown -R oracle:dba /portal/tmp 

C. Export

# export TMP=/portallog/tmp
# export TEMPDIR=/portallog/tmp
# export TMPDIR=/portallog/tmp

Hope this help.
End.
TAT




cl

Fantasy Impact: Cleveland Browns sign Robert Griffin III

Mark Morales-Smith discusses the Fantasy Football impact of the Cleveland Browns' most recent signing of QB Robert Griffin III.




cl

Week 1: AL East Closer Report (Premium)

Senior Fantasy Baseball Expert Shawn Childs examines the backend of each team in the American League East.




cl

Week 1: AL Central Closer Report (Premium)

Senior Fantasy Baseball Expert Shawn Childs examines the backend of each team in the American League Central.




cl

Week 1: AL West Closer Report (Premium)

Senior Fantasy Baseball Expert Shawn Childs examines the backend of each team in the American League West's bullpen as we get ready for opening day!




cl

Tom Delay Indictment a Foregone Conclusion?

According to most of the comments that I've read (or at least those from the left) it seems that recent charges against Tom Delay are a foregone conclusion. So much for guilt until proven innocence. But that has never stopped the jury of public opinion before, nor will it now. It keeps the bloggers busy and sells newspapers. Here are just some of the comments:

"Now, that's what I call "Breaking News"! CNN.com - Texas grand jury indicts Tom DeLay - Sep... It may be only a small first step, but it's a start. Here's the follow-up: Delay will step aside as Majority Leader. Temporarily. Let's hope it is more than temporary."

"Aww what a shame, poor Tom DeLay has been indicted. Pardon me a moment whilst I shed a tear and play a sonata on the world's smallest violin."

"Tom DeLay, House Majority Leader and probably the most powerful Republican in the country, has just been indicted on conspiracy charges. The dominos are beginning to fall."

Or could it be really be just a frivolous witch hunt as Delay has pleaded? Knowing how dirty the game of politics is played it would not surprise me.

"Kevin Madden, DeLay's spokesman, dismissed the charge as politically motivated. This indictment is nothing more than prosecutorial retribution by a partisan Democrat", said Madden citing prosecutor Ronnie Earle, a Democrat. Madden later added: "They could not get Tom DeLay at the polls. They could not get Mr. DeLay on the House floor. Now they're trying to get him into the courtroom. This is not going to detract from the Republican agenda."

We don't have enough information yet and only time will only tell. But when it comes to politics I live by one golden rule. No matter which side of the fence you may find yourself, we should remember that ALL politicians are self-serving. And most (if not ALL) politicians are first and foremost humans and therefore corruptible.

And speaking of that, I am reminded of the maxim "Power corrupts, and absolute power corrupts absolutely". So no matter how all this turns out nothing will surprise me.

But the law also provides that everyone is entitled to be presumed innocent until otherwise found guilty. We should all remember that as we follow this story.

One more thing, even if Delay is found guilty does that automatically indict all Republicans? Hardly, otherwise Teddy Kennedy and the dems would have been banned long ago.

It will be interesting to watch how this unfolds.




cl

Media blamed for New Orleans debacle

Hollywood meets the news; Drama + Hype = Ratings

Dan Rather was taken to task by Mark Steyn of the Chicago Sun-Times over his comments on the 'Larry King Live'' show about the Katrina news coverage. Personally I like Dan, but ever since Rathergate he does seem to be in a habit of putting his foot in it:

"They took us there to the hurricane," he told Larry. "They put the facts in front of us and, very important, they sucked up their guts and talked truth to power."
According to Steyn, the media got it all wrong:
"Er, no. The facts they put in front of us were wrong, and they didn't talk truth to power. They talked to goofs in power, like New Orleans' Mayor Nagin and Police Chief Compass, and uncritically fell for every nutso yarn they were peddled. The media swallowed more bilge than if they'd been lying down with their mouths open as the levee collapsed. Ten thousand dead! Widespread rape and murder! A 7-year-old gang-raped and then throat-slashed! It was great stuff -- and none of it happened. No gang-raped 7-year-olds. None."
Dan Rather:
"That frickin' Superdome," he raged. "Five days watching dead bodies, watching hooligans killing people, raping people."
Stein:
"But nobody got killed by a hooligan in the Superdome. The problem wasn't rape and murder, but the rather more prosaic lack of bathroom facilities. As Ben Stein put it, it was the media that rioted. They grabbed every lurid rumor and took it for a wild joyride across prime time. There was a real story in there -- big hurricane, people dead -- but it wasn't enough, and certainly not for damaging President Bush."
Stein:
"How appropriate that it should be Dan Rather, always late to yesterday's conventional wisdom, to bless the media's fraudulent coverage of Katrina."
He makes a good point doesn't he? CNN is the worst. It's a good thing we have bloggers to keep them in line.




cl

Living Vehicle CyberTrailer

CyberTrailer for Tesla’s Cybertruck Tesla’s Cybertruck can’t tow just any camper. Living Camper is bringing its expertise in high-end campers to the CyberTrailer, a dual-axle camper with angular styling that fits the Cybertruck theme perfectly. The CyberTrailer draws power from a rooftop solar array and can act as a charging station and can even recharge...




cl

Bank Closure:Heartland Bank and Trust Company, Bloomington, Illinois, Assumes All of the Deposits of Bank of Shorewood, Shorewood, Illinois

Bank of Shorewood, Shorewood, Illinois, was closed today by the Illinois Department of Financial and Professional Regulation - Division of Banking, which appointed the Federal Deposit Insurance Corporation (FDIC) as receiver.Bank Closure:Heartland Bank and Trust Company, Bloomington, Illinois, Assumes All of the Deposits of Bank of Shorewood, Shorewood, Illinois




cl

Environmental clamp down on after market modifications

Just saw this in today's news. Wonder how far this type of clampdown will eventually go and how it will affect many of the members here. Could it eventually affect even Smarty products? Are these...



  • General Diesel Discussion

cl

cluster out abs issue

been on this for as issues for about 5 months abs light has been intermittently n and off for last year and a half then cluster went out truck runs fine gauges on edge screen all read fine...



  • 24 Valve Engine and Drivetrain

cl

Mazeppa article/interview in This Land

Now online at This Land: Mazeppa: The Uncanny Film Festival and Camp Meeting by Lindsey Neal. The article includes interviews with Gailard Sartain and Jim Millaway. Link in GroupBlog 321.




cl

Lee Woodward on radio pioneer Gordon McLendon

Did Top 40 popularizer McLendon give phony names to his DJs to make them expendable if they asked for more money? More in GroupBlog 323.




cl

Sherman Oaks at the Circle Cinema tonight

Tribute to Mazeppa with Jim Millaway ("Sherman Oaks") with a presentation of clips at the Circle Cinema, Monday, 7/15 at 8:30 pm.




cl

RIP Lorenzo The Clown, 50s KOTV star

Dave says: "(Gerald Wheeler) brought the character from Little Rock to Tulsa... Lorenzo became a big deal on Baltimore TV in the 1960s and later in Philadelphia.




cl

Plenty Scary Movie article in The Tulsa World

Jimmie Tramel wrote an article about KTUL's Plenty Scary Movie in Monday's Tulsa World.




cl

Clay McIntosh's tribute to Mazeppa

Clay McIntosh sent his artistic tribute to the Mazeppa crew, now at the top of the 1st Mazeppa page.




cl

Free VLC plays TTM audio clips on smartphone

To play RealAudio clips from this site, use the excellent and free VLC player. Works great on smartphones, too.




cl

TNP - Liver Cleanse

Describes liver functions and why it is important to cleanse your liver and gall bladder. Provides a step-by-step guide to liver cleansing.




cl

TNP - Toxic Cleansing

Provides an overview of colon cleanse, liver cleanse, kidney cleanse and parasite cleanse. Includes information on common ailments that can be addressed by these cleansing treatments and also information on the order in which to undertake them.




cl

TNP - Kidney Cleanse

Provides information on kidney functions and a step-by-step guide on kidney cleansing.




cl

TNP - Parasite Cleanse

Background information on reasons for a parasite cleanse and simple guide to administering a herbal parasite cleanse.




cl

TNP - Colon Cleanse

Provides information on the functions of the colon, signs of an unhealthy colon and the benefits of cleansing. Also provides a step-by-step guide on administering a colon cleansing program and describes diet and exercise to help keep your colon healthy.




cl

TNP - Colon Cleanse Kit Recommendation

Recommendation for on a colon cleansing kit containing soluble and insoluble fiber, and herbal laxatives.




cl

TNP - Parasite Cleanse Kit Recommendation

Recommendation on a Parasite Cleansing Kit containing a variety of herbs that make your body inhospitable to parasites and herbal laxatives.




cl

British Maltese Biker Cross Wall Clock

British Union Jack Flag Maltese Biker Cross Clock for those that are into British motorcycles and choppers like Triumph, Norton and BSA - British Union Jack Maltese Biker Maltese Iron Chopper Cross t-shirts, sweatshirts and other cool stuff for British bikers, chopper riders, motorcyclists and fans of British motorcycles and the freedom motorcycling brings. Excellent gift for fans or riders of Triumph, Norton and BSA or custom built choppers and motorcycles.




cl

Jesus Is My Happiness Wall Clock

This Wall Clock can help you share the message of peace, love, hope, and happiness that can only be found in Jesus Christ our Lord and Savior - Is Jesus your happiness? Does Jesus make you smile? Does Jesus fill you with happiness? Does having Jesus within you and Jesus' arms around you bring you peace and security? Does the knowledge of Christ in your heart and life bring you joy? Whatever the reason is that Jesus Christ's salvation, love, peace, grace and mercy does for you, you know it is great, warm, wonderful, full of His love and makes you smile. The fish with a smiley face in the middle can mean several things to different people. It can mean "Jesus is my happiness", it can mean "Jesus the hope of glory" or "There is true happiness only through Jesus", "With Jesus, don't worry only be happy". Whatever it is to you, you can help share the message of peace, love and happiness that can only be found in Jesus Christ our Lord and Savior with the Christian fish symbol and the classic smiley face in the middle.




cl

Ace Biker Iron Maltese Cross Wall Clock

The Ace Biker Iron Maltese Cross Wall Clock is for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone who enjoys the freedom that motorcycling brings - The Playing Card Ace Biker Iron Maltese Cross for bikers, chopper riders, custom bike builders, motorcyclists, motorcycle enthusiasts and anyone else who enjoys the freedom that motorcycling brings




cl

3D Biohazard Warning Symbol Men's Muscle Tee

3D Biohazard Warning Symbol Men's Sleeveless Tee - The Industrial 3D Biohazard Warning Symbol is for you if you are potentialy bio-hazzardous to others or a great gift for those that could be potentially bio-dangerous. After all this is the symbol for a biohazard, or a material which represents a threat to cellular materials or living organisms.




cl

3D Biohazard Warning Symbol Wall Clock

3D Biohazard Warning Symbol Wall Clock - The Industrial 3D Biohazard Warning Symbol is for you if you are potentialy bio-hazzardous to others or a great gift for those that could be potentially bio-dangerous. After all this is the symbol for a biohazard, or a material which represents a threat to cellular materials or living organisms.




cl

Smiley Face Men's Muscle Tee

Share the warmth and happiness of a friendly smile with all those around you with this Smiley Face Sleeveless Tee - It's back! The ever popular, the ever lovable, the ever friendly the totally universal smiley face is back once again. Only this time it's in the new and improved wonderful and modern 3d design. Maybe your face isn't always shining with a smile, even if you are smiling inside, but this design will help you share your internal or external smile. People around you and those that see you will more than likely grin and smile back at you as they see the smile that you are sporting on your shirt, coffee cup or other 3d smiley face designed accessory. Share the warmth and happiness of a friendly smile with all those around you directly and indirectly.




cl

Smiley Face Wall Clock

Share the warmth and happiness of a friendly smile with all those around you with this Smiley Face Wall Clock - It's back! The ever popular, the ever lovable, the ever friendly the totally universal smiley face is back once again. Only this time it's in the new and improved wonderful and modern 3d design. Maybe your face isn't always shining with a smile, even if you are smiling inside, but this design will help you share your internal or external smile. People around you and those that see you will more than likely grin and smile back at you as they see the smile that you are sporting on your shirt, coffee cup or other 3d smiley face designed accessory. Share the warmth and happiness of a friendly smile with all those around you directly and indirectly.




cl

For Amusement Only Wall Clock

With this Wall Clock you can proudly announce that you are to be used for amusement purposes only - Are you not to be taken seriously? Are you only to be used for amusement purposes only? Do you know someone that is to be used only for your or someone else's amusement? Then these are for you!




cl

Anti-Anti Wall Clock

Show the world that you are Anti-Anti with the Anti-Anti Wall Clock - Are you against being against? Do you say no on saying no? Are you opposed to being apposed? Then you must be Anti-Anti! Show the world that you say no to no, that you are against being against, that you are opposed to being opposed and most of all that you are Anti-Anti!




cl

Bikers Have More Fun Than People Do Wall Clock

Bikers Have More Fun Than People Do Wall Clock - Bikers Have More Fun Than People Do Mega Cool Shirts, Sweatshirts, Clocks, Stickers, Mugs And More. Excellent gifts for all bikers, chopper riders, motorcyclists, motorcycle enthusiasts and fans of all motorcycles and the freedom motorcycling brings.




cl

Bowling Therapy Wall Clock

For Some There's Therapy, For The Rest Of Us There's Bowling Wall Clock - For some there's therapy, for the rest of us there's bowling. Sometimes the best way escape reality a little bit to relax, unwind, think about life is to head to the bowling alley and knockdown some pins. There's just something about rolling a bowling ball down the lane, hearing the crash of the pins as they plow into each other to release tension and stress.




cl

Caffeine Molecule Men's Muscle T-Shirt

This Sleeveless Tee shows that you are proud to be powered by the caffeine molecule trimethylxanthine also known by its chemical formula of C8H10N4O2. - Yes, it's true; caffeine makes the world go around. Whether it’s in coffee, soda, energy drink or whatever, it seems that caffeine keeps everything going. If you are one of those people (or knows someone that is) that gets their energy and staying power from the caffeine molecule trimethylxanthine also known by its chemical formula of C8H10N4O2 then you need this 3d design of the caffeine molecule structure.




cl

Caffeine Molecule Wall Clock

This Wall Clock shows that you are proud to be powered by the caffeine molecule trimethylxanthine also known by its chemical formula of C8H10N4O2. - Yes, it's true; caffeine makes the world go around. Whether it’s in coffee, soda, energy drink or whatever, it seems that caffeine keeps everything going. If you are one of those people (or knows someone that is) that gets their energy and staying power from the caffeine molecule trimethylxanthine also known by its chemical formula of C8H10N4O2 then you need this 3d design of the caffeine molecule structure.




cl

Canadian Biker Cross Wall Clock

Wall Clock Featuring the Canadian Flag Biker Maltese Iron Chopper Cross - A maltese biker cross made from the Canadian flag for those bikers, chopper riders and motorcylists that are proud to be from Canada as they ride their motorcycles, scooters, choppers and bikes not only in Canada, but around the world. Makes an excellent gift for anyone that is from Canada, is Canadian and loves the freedom that can only be found on two wheels.




cl

Chocolate Therapy Wall Clock

This Wall Clock will help you proclaim that chocolate is much better than therapy. Nothing may be better than the sweet sensation of creamy, rich and delicious chocolate melting in your mouth. - Mmmmm... Chocolate... for some there's therapy, for the rest of us there's chocolate. Yes, sometimes there is nothing like enjoying the sweet sensation of creamy, rich and delicious chocolate melting in your mouth to relieve stress, help relax, and sooth the soul. Sometimes it doesn't seem to matter if it is dark chocolate, semi-sweet chocolate, extra-sweet chocolate or malted chocolate in bars, kisses, drops or chips. Yes, it is very true, when things get tough or stressful, "For Some There's Therapy. For The Rest Of Us, There's Chocolate".




cl

DANGER: HOT! Wall Clock

Label yourself or someone you know with the DANGER: HOT 3D Industrial Metal Style Sign Wall Clock to alert others to how hot you are or they are - Are you hot? Are you so hot, that you are dangerously hot? Maybe you are so dangerously hot that you deserve your own warning sign to alert others to how hot you are. On the other hand... Do you know someone that is hot? Do you know someone that is so extremely hot that they are dangerously hot? Maybe you know that they are so hot that you would like to give them their own danger warning sign to show them how hot you think they are.




cl

Danger: Flammable Gas Wall Clock

This DANGER: Flammable Gas Wall Clock will help give a clear warning to all and get some laughs in return - Give everyone a clear warning of impending the impending possible danger of flammable gas and get many laughs in return with these "DANGER: Flammable Gas" Industrial 3D Metal Style Danger Sign items. They also make an excellent gag gift!




cl

For Rent Sign Wall Clock

Announce that either you, your wall clock or both are now available for rent, hire or to be used temporarily (for a fee of course). - Are you available for rent, hire, to be used temporarily (for a fee of course) for whatever occasion or event? Or, maybe you are just after making a couple extra bucks and it really isn’t you for rent, but it’s your shirt, coffee cup or mouse pad that is for rent.




cl

For Sale Sign Wall Clock

Announce that either you, your wall clock or both are now available for for sale, to be had, owned or used permanently. - Are you available for sale, to be had, owned or used permanently (for a fee of course)? Or, maybe you are just after making a couple extra bucks and it really isn’t you for rent, but it's your shirt, coffee cup or mouse pad that is for sale, to be had, owned or used permanently.




cl

I Feel Much Better Wall Clock

Proudly announce to the world, "I Feel Much Better, Since I Gave Up Hope" with this Wall Clock - Are you tired of looking forward to things only to have plans fall apart? Do you try to see the bright side of life, only to see even darker clouds? As you attempt to get closer to your dreams and desires, do they seem to get farther away? Whenever you anticipate something good to happen, do you get crushed in the end? Then maybe you will feel better if you just gave up hope and be able to proudly announce to the world, "I Feel Much Better, Since I Gave Up Hope". Think about it, it may be the only way to go, without hope, there is no more let downs or disappointments. After giving up hope you will feel better, because there will no longer be any expectations for anything good to happen, so everything will be either good or business as usual.




cl

Golf Therapy Wall Clock

This Wall Clock proclaims that for you, playing golf is so much better and heathier than visiting with any kind of therapist - It's very true; sometimes the best way to work things out mentally is to get out on the golf course for a few hours and wack that little white ball for a few hours. There is just something about getting out in the open, breathing in the fresh air and going for a walk along the 18 holes of a beautiful golf course focusing your mind and energy on hitting that great next shot to clear your mind of other distractions and problems of life. It is amazing how solutions to some of life's problems can just appear to you when you get your mind off of them when you can step away from them and concentrate in a relaxing way to other things, like playing a round of golf. No matter how well you play, "For some there's therapy, for the rest of us there's golf".




cl

Handle With Care Warning Wall Clock

WARNING: Handle With Care Wall Clock - WARNING: Handle With Care 3D Industrial Metal Style Sign Coffee Cups, T-Shirts, SweatShirts, Mousepads and MORE!




cl

I'm Not Old, I'm Retro Wall Clock

With this Wall Clock, you can declare to your self that you are stylish, hip, cool, youthful and comfortable with whom you are by saying, "I am Not Old... I'm... Retro". - I am not old! I am Retro! Do you think you are old? Have you ever felt old? Just remember, you are only as old as you feel, you are only old if you let yourself feel old. Nowadays, with retro styles, retro attitudes and all things of the past being very hip, cool and popular, it is even easier not to feel old and not be old. Now is your chance to declare to yourself and to the world that you are not old. Declare to your self that you are stylish, hip, cool and comfortable with whom you are by saying, "I am Not Old... I'm... Retro". After all, you are not old, you are retro!




cl

Jesus Therapy Wall Clock

With this Wall Clock you can share with the world that Jesus Christ is your therapist, He is better than any therapy that has ever existed, He is your healer, your counselor, and your guide. - For some there's therapy, for the rest of us there's Jesus. Trusting, believing and following Jesus Christ is better than anything that any therapist can do. When we allow Jesus to be our guide, our counselor, and friend we know that all things through Him will be full of peace, love, happiness and genuine satisfaction because it will be right. The personal pressure it takes off our shoulders is awesome when we trust in Jesus, because we no longer have to worry about doing anything, except believe in Him and His promises and allow Him to work out everything else. It is an awesome and wonderful feeling to allow Christ to be our therapist, counselor and guide by just asking Him how we should be and seeking His advice in the Bible. Everything else is up to Him to do, it doesn't get much better than that! And to think that His love, His advice, His salvation, His healing is all completely free, all we need to do is ask for it and believe in Him.




cl

No Evil, No Fun Wall Clock

This Wall Clock announces that there just isn't any fun in not seeing any evil, hearing any evil or speaking any evil. - See no evil, hear no evil, speak no evil? Where is the fun in that? Evil or not, you have got to have some kind of fun sometime. Ok, maybe fun doesn't have to be evil, but sometimes being a little bit evil or sarcastic can be fun.