--- /dev/null
+http://git.greptilian.com/?p=salt.git;a=blob;f=server1/etc/httpd/conf.d/thinkup.greptilian.com.conf;hb=6518c843f063d5b0fe4b50e66f06d412b28a443e
+
+http://git.greptilian.com/?p=salt.git;a=blob;f=server1/server1.sls;hb=8309e7778cf4fc2f8756f7f05bab47fc73cb72f0#l68
+
+Database setup
+
+ [root@server1 ~]# mysql -u root -p
+ Enter password:
+ Welcome to the MySQL monitor. Commands end with ; or \g.
+ Your MySQL connection id is 2
+ Server version: 5.1.61 Source distribution
+
+ Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
+
+ Oracle is a registered trademark of Oracle Corporation and/or its
+ affiliates. Other names may be trademarks of their respective
+ owners.
+
+ Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
+
+ mysql> create database thinkup;
+ Query OK, 1 row affected (0.00 sec)
+
+ mysql> grant all privileges on thinkup.* to 'thinkup'@'localhost' identified by 'REDACTED';
+ Query OK, 0 rows affected (0.00 sec)
+
+ mysql> flush privileges;
+ Query OK, 0 rows affected (0.00 sec)
+
+ mysql>
+