There is no simple way to do it in 1.8.2. In Airtime 1.9, we've added a simple command line utility to do this.
I can post instructions later today on how to modify the password by modifying the Airtime database directly, if you're up for getting your hands dirty.
Damn was hoping you wouldn't say that:) yes ill get my hands dirty trying it. It might be worth having instrictions posted here anyway!
I would appreciate some instructions hiw to do it.
Thanks Martin
P. S the airtime i'm locked out of isn't in production yet so i could do a fresh install with 1.9.3. Would that overwrite my old password and database? If it does it would be a simple workaround for me, the library is not important!
>
> Hi John,
>
> There is no simple way to do it in 1.8.2. In Airtime 1.9, we've added a simple command line utility to do this.
>
> I can post instructions later today on how to modify the password by modifying the Airtime database directly, if you're up for getting your hands dirty.
>
First lets connect to the airtime database with root permissions:
sudo -u postgres psql airtime
Now we are connected to the database. Next we insert the following command:
update cc_subjs set pass = md5('your_new_password') where login = 'admin';
And that's all. Return back to the terminal using "\q"
As for your 1.9.3 question, installing this version would upgrade from your 1.8.2 install and keep your database intact while also giving you access to the "airtime-user" commandline utility which allows you to change the password of any user.