Replies: 10 comments
-
Were you able to get the admin ui up? |
Beta Was this translation helpful? Give feedback.
-
Hello,
No I was never able to get it working so I just moved on... I have the rest
working minus the weather plug-in and admin console. I really need to
upgrade my install too but it's been working so I haven't touched it.
I'd like to get it upgraded and the admin console working though. I'll
admit I'm not a Linux guru but I can work my way though it.
If you gave some basic instructions to upgrade my install I can do that and
try the admin console again and report back to you.
Thanks for checking in on this
Troy
…On Tue, Oct 29, 2024, 9:22 AM Walter A. Boring IV ***@***.***> wrote:
Were you able to get the admin ui up?
Sorry it took so long to reply to this. github is not giving me
notifications for discussions.
—
Reply to this email directly, view it on GitHub
<#153 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APYK3UVW5ODSBWSB4MH52TDZ56R3ZAVCNFSM6AAAAABQ2DVGYSVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCMBYHA3TSMA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Hi Troy,
or
|
Beta Was this translation helpful? Give feedback.
-
Pretty sure it was from git, those commands look familiar
…On Tue, Oct 29, 2024, 9:46 AM Walter A. Boring IV ***@***.***> wrote:
Hi Troy,
Did you install aprsd from git or from pypi?
git:
python -m venv .venv
source .venv/bin/activate
git clone ***@***.***:craigerl/aprsd.git
cd aprsd
pip install .
or
pypi
python -m venv .venv
source .venv/bin/activate
pip install aprsd
—
Reply to this email directly, view it on GitHub
<#153 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APYK3US3DTGL5R3YBRJK6G3Z56UUFAVCNFSM6AAAAABQ2DVGYSVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCMBYHEYTKNI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
So for the admin ui, there are several ways to run it. I typically run it as a docker container, in which case I would use the uwsgi server in front of it. This is how it's run from inside a container The "easy" way....
that will give you a running admin interface on http://localhost:8000 |
Beta Was this translation helpful? Give feedback.
-
Ok ill try this out this week. Do I need to upgrade my install first? I'm
running 3.3.3 currently
…On Tue, Oct 29, 2024, 9:57 AM Walter A. Boring IV ***@***.***> wrote:
So for the admin ui, there are several ways to run it. I typically run it
as a docker container, in which case I would use the uwsgi server in front
of it.
This is how it's run from inside a container
https://github.com/craigerl/aprsd/blob/master/docker/bin/admin.sh
The "easy" way....
If you just want to it locally in the shell
source .venv/bin/activate # or wherever your existing aprsd virtual environment is (.venv)
cd aprsd
git pull origin master
pip install .
cd aprsd # yes this is the source directory for the code
pythyon wsgi.py
that will give you a running admin interface on http://localhost:8000
—
Reply to this email directly, view it on GitHub
<#153 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APYK3UQIFNW72SXSRWVV7U3Z56V6JAVCNFSM6AAAAABQ2DVGYSVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCMBYHEZTEMY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
yah I would do the upgrade first. |
Beta Was this translation helpful? Give feedback.
-
Ok thank u for the info. I'll try this out and get back to you
Thanks again!
Troy
…On Tue, Oct 29, 2024, 10:09 AM Walter A. Boring IV ***@***.***> wrote:
yah I would do the upgrade first.
—
Reply to this email directly, view it on GitHub
<#153 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/APYK3UWGNWH3OAGIPBT47NDZ56XLJAVCNFSM6AAAAABQ2DVGYSVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCMBYHE2TSMI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
ok so if you pull the latest from master and install that, you should be able to run the brand new command
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
I have got an install of APRSD running successfully on my Pi using version 3.3.3. However i cannot get the admin GUI to work or respond to traffic. i have tried several variations in the aprsd.conf file but nothing seems to work... is there something im missing? my pi is 192.168.1.240, ive tired that, 0.0.0.0, 127.0.0.1 in the config file with no luck
secondly, i cant get a weather report to work. i see this error in the logs-
2024-03-16 18:37:01.232 | ProcessPKT | ERROR | Couldn't fetch openweathermap api '401 Client Error: Unauthorized for url: https://api.openweathermap.org/data/2.5/onecall?lat=38.15883&lon=-102.71783&appid=07a18613b1b9ff4d93bbb198fd7cddc5&units=imperial&exclude=minutely,hourly' | aprsd.plugins.weather:process:256
it looks to be something about using a free account... so i messed around with the url a bit and got this to work and generate a weather report with a free account, but its way to much data to put in an aprs message... did openweathermaps.org change something recently?
https://api.openweathermap.org/data/2.5/weather?lat=38.15883&lon=-102.7178&appid=07a18613b1b9ff4d93bbb198fd7cddc5&&units=imperial
thanks in advance
Troy
Beta Was this translation helpful? Give feedback.
All reactions