Jump to content

Recommended Posts

Posted

I've reached a point where I've successfully imported pupil data into the APS, which is about two thirds of the way thru chapter 3 in the Pupil & Test Management Guide. From there on in the waters get a little murky. Chapter 4 has Allocating Pupils to Registration Groups & Teaching Sets, chapter 5 Setting an ILA for an Individual Pupil and so on. Some of it's clearly a teacher's duty, and some, such as importing pupil data, is my job. I'm not sure I want to be involved in the details of individual pupils.

anyone any thoughts or guidance on this?

beeswax

Posted
What i've done is got the deputy head of ICT to make a csv file with all the reg groups teaching sets etc and pass it around the ICT teachers to get the ILA's for the pupils and i'm going to import that in now i've done the plasc import. The details for the csv file are on page 17 of the pupil and test management guide. That was all i'm doing is importing the data. But because it's a new system and i think it's just a tad ropey i'm on stand-by with any problems they have.
Posted

Data entry & stuff like that has been left to our Exams & Data Admin manager to sort out. I help out when she gets stuck with the software.

 

Brian

Guest richard
Posted
I installed it and then gave back to the ICT teacher to do the rest :)
Posted
Just remember you must be able to restart postmaster & tomcat services on the APS at the drop of a hat...

 

Its been ok so far (Centos), anyone point me to a postgresql/tomcat keepalive script?

  • 1 month later...
Posted
Just remember you must be able to restart postmaster & tomcat services on the APS at the drop of a hat...

 

Its been ok so far (Centos), anyone point me to a postgresql/tomcat keepalive script?

 

I set mine up to stop and start Postgres and Tomcat each night on either side of the backup as it mentions (briefly) in the docs. I suspect this might also improve the reliability of the APS unless you are hammering it heavily on a single day.

 

The scripts for stopping and starting are just:

 

@REM Stop the APS services

net stop tomcat
net stop postmaster

 

and


@REM Start the APS services

net start tomcat
net start postmaster

 

If you want to do that remotely rather than scheduled, take a look at the sc command.

Posted

thanks for that - I was looking for a way of having it restart itself if it fails - without my intervention. Seems to have been pretty stable so far (42 day uptime without problems)

Maybe Apache/Tomact was made for unix :wink:

Posted

I have set the server up allocated the software and tests to the clients setting the tests up and running is the ict coordinators job.

 

You could use a batch file such as:

 

@echo off

NET START | FIND "DHCP Client" > nul

IF errorlevel 1 GOTO s_not_running

@echo Service allready Running

goto end

:s_not_running

net start dhcp

@echo Service Started

:end

 

Schedule this every hour or whatever and replace DHCP Client with the ones you want to check. It checks to see if they are started and if they aren't it starts them.

 

Or just running net start "service name" will restart a service that isn't running and do nothing to one that is running.

 

Ben

Posted

somehow I think that won't work on Centos, thanks though, I will pass this info onto our datamanager who has untold problems with tomcat CMIS service on windows. (why didn't they use JBOSS??)

ATM I'm hedging my bets that tomcat was actually built for unix and is likely to be more stable !?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...