...
Note |
---|
Always backup your configuration data by generating an export before you upgrade. All data is lost and you will need to reconfigure after upgrading. |
Info |
---|
Data migrations when upgrading are currently in development. |
Our latest software package contains a handy uninstall script that allows you to quickly remove Edge ACM and all of AUTOSOL’s software utilities from your device.
...
Code Block | ||
---|---|---|
| ||
sudo /home/devuser/apps/API/uninstall.sh |
Generic Uninstall
On any generic install, run the following command:
Code Block | ||
---|---|---|
| ||
sudo /usr/apps/API/uninstall.sh |
Installing
In order to install, you have to make sure your board has an internet connection as most of AUTOSOL’s software dependencies are downloaded from Debian servers.
...
You will need to give the full or relative path to the AUTOSOL .deb package
Postgres
The latest installation requires that you install and setup postgres. This next steps are typically only needed on first time setup
Info |
---|
Postgres is installed automatically by installing the autosol package |
Changing the postgres password:
Select the database to work with. This will open the database so you can make changes.
Code Block |
---|
sudo -u postgres psql ASIServerDB; |
Change the password.
Code Block |
---|
ALTER USER postgres WITH PASSWORD 'postgres'; |
Info |
---|
By default the software is configured to use password “postgres”. If you want something else, you’ll need to set the password in the conf.ini file under the install folder. On a Freewave /home/devuser/apps/ASIEdgeManager/conf.ini or on Generic installs. /usr/apps/ASIEdgeManager/conf.ini |
Exit the edit database mode:
Code Block |
---|
\q |
Restart the server
On a Freewave
Code Block |
---|
sudo /home/devuser/apps/ASIEdgeManager/restart |
or on Generic installs.
Code Block |
---|
sudo /usr/apps/ASIEdgeManager/restart |
Once the installation has completed, you should be able to visit the IP of your box on port 8080 to see the AUTOSOL App Manager web configuration page where you can configure all AUTOSOL software applications like Edge ACM.
...