Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You will need to give the full or relative path to the AUTOSOL .deb package

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.

Note

If this was a first time install, it is possible that you got some output regarding postgres. You should see something like this:

"Could not migrate to db."  "Verify postgres is running. Postgres must have a password."

If so, you will need to follow the instructions below to finish installation.

Note

If it failed in any other way, visit the Troubleshooting section for further info

Postgres

The latest installation requires that you install and setup postgres. This next steps are typically only needed on first time setup

...

Code Block
sudo -u postgres psql ASIServerDB;
Warningnote

If that failed, it might be possible that the database was not created by our install process. Scroll further down to Making the database

...

Code Block
sudo /usr/apps/ASIEdgeManager/restart

Once the installation restart 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.

...

Code Block
sudo -u postgres createdb ASIServerDB
Warningnote

If this fails, it is possible that postgres was not installed correctly. Scroll down to Installing postgres.

Once you make the database, you can attempt a reinstall, by following the Uninstalling and Installing instructions again, or you can try a restart of the service by following the restart instructions further above.

...

Code Block
sudo apt-get update
sudo apt-get install postgresql
Warningnote

If this fails, it is possible that you don’t have a good internet connection. It is also possible that you have bad DNS settings so the system cannot identify a good way to hit the debian package repositories online. In either case, contact your IT to get further assistance.

Once you get postgres installed, you can attempt a reinstall, by following the Uninstall and Install instructions again.

...