Commit 9fe35152 authored by Alain Takoudjou's avatar Alain Takoudjou

run zabbix-server after database configuration process

parent 89603a9f
#!/bin/sh
if [ -f "${:installed_file}" ]
then
echo "Database is configured. Exiting...";
exit 0;
fi
sleep 60
echo "Installing file schema.sql..."
cat ${:mysql_schema} | ${:mysql_bin} -h${:mysql_host} -P${:mysql_port} -u${:mysql_user} -p${:mysql_pwd} ${:mysql_db}
echo "Installing file images.sql..."
cat ${:mysql_images} | ${:mysql_bin} -h${:mysql_host} -P${:mysql_port} -u${:mysql_user} -p${:mysql_pwd} ${:mysql_db}
echo "Installing file data.sql..."
cat ${:mysql_data} | ${:mysql_bin} -h${:mysql_host} -P${:mysql_port} -u${:mysql_user} -p${:mysql_pwd} ${:mysql_db}
echo "installed" > ${:installed_file}
exit 0
\ No newline at end of file
......@@ -38,11 +38,11 @@ mysql_port = $${apache-php:mysql-port}
[install-zabbix-db]
recipe = slapos.recipe.template
url = ${template-zabbix-database:location}/${template-zabbix-database:filename}
url = ${configure-dbscript:location}/${configure-dbscript:filename}
output = $${basedirectory:scripts}/prepare-database
mode = 0700
installed_file = $${buildout:directory}/.zabbix.db.installed
installed_file = $${zabbix-wrapper:check-file}
mysql_bin = ${mariadb:location}/bin/mysql
mysql_host = $${apache-php:mysql-host}
mysql_db = $${apache-php:mysql-database}
......@@ -52,6 +52,7 @@ mysql_pwd = $${apache-php:mysql-password}
mysql_schema = ${zabbix-server:compile-directory}/zabbix-${zabbix-server:version}/database/mysql/schema.sql
mysql_data = ${zabbix-server:compile-directory}/zabbix-${zabbix-server:version}/database/mysql/data.sql
mysql_images = ${zabbix-server:compile-directory}/zabbix-${zabbix-server:version}/database/mysql/images.sql
python_bin = ${buildout:executable}
#force to install other parts
httpd-conf = $${httpd-conf:output}
......@@ -64,6 +65,8 @@ zabbix-server = ${zabbix-server:location}/sbin/zabbix_server
zabbix-conf = $${zabbix-conf:output}
command-line = $${:zabbix-server} -c $${:zabbix-conf}
wrapper-path = $${rootdirectory:bin}/zabbix_server_raw
check-file = $${buildout:directory}/.zabbix.db.installed
wait-for-files = $${:check-file}
[zabbix]
recipe = slapos.cookbook:wrapper
......
#!${:python_bin}
import os
import subprocess
import time
def startProcess(launch_args, env=None, cwd=None, stdout=subprocess.PIPE, shell=False):
process = subprocess.Popen(launch_args, stdout=stdout,
stderr=subprocess.STDOUT, env=env,
cwd=cwd, shell=shell)
result = process.communicate()[0]
if process.returncode is None or process.returncode != 0:
print "Failed to execute executable.\nThe error was: %s" % result
return False
return True
def dbtest(args):
cmd = 'echo "connect %s;" | %s -h %s -P %s -u %s -p%s' % (args['mysql_db'],
args['mysql_bin'], args['mysql_host'], args['mysql_port'],
args['mysql_user'], args['mysql_password'])
result = False
while not result:
time.sleep(5)
result = startProcess(cmd, shell=True)
def install_script(args, script):
cmd = 'cat %s | %s -h%s -P%s -u%s -p%s %s' % (script,
args['mysql_bin'], args['mysql_host'], args['mysql_port'],
args['mysql_user'], args['mysql_password'], args['mysql_db'])
os.system(cmd)
if __name__ == '__main__':
args = {}
args['mysql_bin'] = '${:mysql_bin}'
args['mysql_host'] = '${:mysql_host}'
args['mysql_port'] = '${:mysql_port}'
args['mysql_user'] = '${:mysql_user}'
args['mysql_password'] = '${:mysql_pwd}'
args['mysql_db'] = '${:mysql_db}'
scripts = []
scripts.append('${:mysql_schema}')
scripts.append('${:mysql_images}')
scripts.append('${:mysql_data}')
check_file = '${:installed_file}'
#Check mysql status
if os.path.exists(check_file):
print "Database is configured. Exiting..."
exit(0)
dbtest(args)
#Run all given sql files
for script in scripts:
install_script(args, script)
with open(check_file, 'w') as f:
f.write('installed')
exit(0)
\ No newline at end of file
......@@ -15,7 +15,7 @@ parts +=
recipe = slapos.recipe.template
url = ${:_profile_base_location_}/instance-zabbix.cfg.in
output = ${buildout:directory}/custom-apache-php.cfg
#md5sum = 3e2d71d3684aac3e52d2f55794df96bf
md5sum = 238b16283fa9a394ee8c0babdff3d470
mode = 0644
[custom-application-deployment]
......@@ -36,27 +36,28 @@ url = ${:_profile_base_location_}/${:filename}
[application-template]
<= download-base
#md5sum = Student may put here md5sum of this file, this is good idea
md5sum = 918c54bf3696433414bb5384f294497c
filename = zabbix.conf.php.in
[template-zabbix-conf]
<= download-base
#md5sum = Student may put here md5sum of this file, this is good idea
md5sum = 53daa6eb31ebf5c5a5406ee573f4f3f7
filename = zabbix_server.conf.in
[template-httpd-conf]
<= download-base
#md5sum = Student may put here md5sum of this file, this is good idea
md5sum = e1b00a4b523439457dfb6d2a12c6436b
filename = apache.conf.in
[template-zabbix-database]
[configure-dbscript]
<= download-base
#md5sum = Student may put here md5sum of this file, this is good idea
filename = database.sh.in
md5sum = 9b1ecc1772e4f604e51b4f4532195846
filename = db.configure.py
url = ${:_profile_base_location_}/scripts/${:filename}
[zabbix-svcdeamon]
<= download-base
#md5sum = Student may put here md5sum of this file, this is good idea
md5sum = 9aab8fd22cf296494f68fba78616d51d
url = ${:_profile_base_location_}/scripts/${:filename}
filename = svcdaemon.py
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment