You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.0 KiB
46 lines
1.0 KiB
10 months ago
|
#!/bin/sh
|
||
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
||
|
# Author: Christoph Galuschka <christoph.galuschka@chello.at>
|
||
|
|
||
|
t_Log "Running $0 - python can retrieve mysql55-mysql-server version information."
|
||
|
|
||
|
# we need a working and running mysql server
|
||
|
# starting with 5.10, we have to differ between mysql55 and mysql
|
||
|
|
||
|
if [ $centos_ver = 5 ]
|
||
|
then
|
||
|
t_ServiceControl mysqld stop
|
||
|
t_ServiceControl mysql55-mysqld start
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
# Installing additional python/mysql module
|
||
|
t_InstallPackage MySQL-python
|
||
|
|
||
|
# create python Scrip
|
||
|
SCRIPT='/var/tmp/test.py'
|
||
|
|
||
|
cat >$SCRIPT <<EOF
|
||
|
import MySQLdb
|
||
|
|
||
|
conn = MySQLdb.connect (host = "localhost",
|
||
|
user = "",
|
||
|
passwd = "",
|
||
|
db = "test")
|
||
|
cursor = conn.cursor ()
|
||
|
cursor.execute ("SELECT VERSION()")
|
||
|
row = cursor.fetchone ()
|
||
|
print "server version:", row[0]
|
||
|
cursor.close ()
|
||
|
conn.close ()
|
||
|
EOF
|
||
|
|
||
|
# If we execute the script and get the version it works
|
||
|
python $SCRIPT |grep -q 'server version'
|
||
|
|
||
|
t_CheckExitStatus $?
|
||
|
|
||
|
# cleaning up
|
||
|
/bin/rm $SCRIPT
|