Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 19 Next »

This page shall provide a guide for updating systems after a new release (merge in master) was made.

VMs PreMerge Checks

php artisan migrate
php artisan module:migrate

php artisan db:seed
php artisan module:seed

php artisan nms:contract daily
php artisan provvoip:phonenumber

# GUI CHECKS
# 	(1) Contract & Modem Save
# 	(2) Topography
# 	(3) HFC NetElement

 

Testsystem Update Checks

this should be done on the test environment before we merge dev/release into master and update our live systems

Testflow
php artisan migrate
php artisan module:migrate

php artisan db:seed
php artisan module:seed

php artisan nms:contract daily
php artisan provvoip:phonenumber

# Check Modem Analysis Pages for Errors!
# Check ERD & Topography for Networks!

# show all contracts that have network_access=0 or contract-/modem-network-access/phonenumber-active differs
[db_lara]> select c.id, c.firstname, c.lastname, c.network_access as Cnw_access, m.network_access as Mnw_access, p.username, p.active from contract c, modem m, mta mta, phonenumber p where c.id=m.contract_id and p.mta_id=mta.id and mta.modem_id=m.id and c.deleted_at is null and m.deleted_at is null and mta.deleted_at is null and p.deleted_at is null and (c.network_access!=m.network_access or c.network_access!=p.active or m.network_access!=p.active or c.network_access=0);

# check if all configfiles have Datarate assigned - both outputs should be the same
# ls -l /tftpboot/cm/ | awk 'END {print NR/2}'
ls -l /tftpboot/cm/*.cfg | wc -l								 			# Nr Configfiles
grep MaxRateSustained  /tftpboot/cm/*.conf | wc -l | awk '{print $1/2}'  		# Nr Configfiles with Datarate assigned

 

 

Live System Update

Provisional Restarts

systemctl restart nmsd

Check before

check cron jobs in app/Console/Kernel.php if sth new can happen over night

Test & Execute directly after

# dump database before!
mysqldump

composer update
php artisan migrate
php artisan module:migrate
php artisan nms:auth
php artisan route:cache

# check daily conversions
php artisan nms:contract daily
php artisan provvoip:phonenumber
# check active states in DB
mysql -u root -p <psw> db_lara
# show all contracts that have network_access=0 or contract-/modem-network-access/phonenumber-active differs
[db_lara]> select c.id, c.firstname, c.lastname, c.network_access as Cnw_access, m.network_access as Mnw_access, p.username, p.active from contract c, modem m, mta mta, phonenumber p where c.id=m.contract_id and p.mta_id=mta.id and mta.modem_id=m.id and c.deleted_at is null and m.deleted_at is null and mta.deleted_at is null and p.deleted_at is null and (c.network_access!=m.network_access or c.network_access!=p.active or m.network_access!=p.active or c.network_access=0);

Import

see Km3 Import Page

 

  • No labels