Other
Will Online Poker Survive?
by admin on Jan.06, 2012, under Other
Turn On Your Lamp – Easy Apache/PHP/MySQL Install on CentOS for Web Developers
by admin on Feb.15, 2009, under Other
vi /etc/yum.repos.d/CentOS-Base.repo
find [centosplus] and locate:
enabled = 0
change to
enabled = 1
yum install php php-mysql mysql-server php-gd postgres ImageMagick ImageMagick-devel
Now you got php, mysql, graphic manipulation, and posgres installed.
Let’s setup your MySQL:
/etc/init.d/mysqld restart – after you run this, you will get a bunch of useful text, read it!
/usr/bin/mysqladmin -u root password ‘CHANGEMETOHARDPASSWORD’
/sbin/chkconfig mysqld –level 2345 on – lets mysql startup on reboot
Now you have PHP installed with common libraries such as image manipulation and postgres and mysql for database work.
Yay!
by admin on Jan.25, 2009, under Other
This blog is setup mostly for my documentation purposes so when I setup servers or do web development that I have a central place to lookup common tasks. If I find anything cool and interesting, I’ll post it here too. Feel free to add comments or questions on anything on the blog though. I’ll try to keep everything easy-to-understand and technical at the same time.