-
I’m trying to follow the instructions and start WebODM via GitBash but I can’t.
This is what happens: (before tried it multiple times with different commands. -
Also before this tried to run WebODM manager and open it on chrome and firefox but localhost:8000 leads me to page with no webODM interface but with info posted in the end of this:
$ ./webodm.sh restart
Checking for docker… OK
Checking for git… OK
Checking for docker-compose… OK
Restarting WebODM…
docker-compose -f docker-compose.yml -f docker-compose.nodeodm.yml -f docker-compose.nodemicmac.yml down --remove-orpha ns
Stopping worker … done
Stopping db … done
Stopping webodm_node-odm_1 … done
Stopping broker … done
Removing webapp … done
Removing worker … done
Removing db … done
Removing webodm_node-odm_1 … done
Removing broker … done
Removing network webodm_default
Starting WebODM…
Using the following environment:
Host: localhost
Port: 8000
Media directory: appmedia
SSL: NO
SSL key:
SSL certificate:
SSL insecure port redirect: 80
Celery Broker: redis://broker
Default Nodes: 1
Make sure to issue a ./webodm.sh down if you decide to change the environment.
docker-compose -f docker-compose.yml -f docker-compose.nodeodm.yml start || docker-compose -f docker-compose.yml -f doc ker-compose.nodeodm.yml up --scale node-odm=1
Starting node-odm … done
Starting db … done
Starting broker … done
Starting worker … done
Starting webapp … done
No containers to start
Creating network “webodm_default” with the default driver
Creating broker … done
Creating db … done
Creating webodm_node-odm_1 … done
Creating worker … done
Creating webapp … error
ERROR: for webapp Cannot start service webapp: driver failed programming external connectivity on endpoint webapp (d59 8c81c7271d128202898e78075f1a4755ea1e97c7a57f08334ac45b15635f9): Error starting userland proxy: Bind for 0.0.0.0:8000: u nexpected error Permission denied
ERROR: for webapp Cannot start service webapp: driver failed programming external connectivity on endpoint webapp (d59 8c81c7271d128202898e78075f1a4755ea1e97c7a57f08334ac45b15635f9): Error starting userland proxy: Bind for 0.0.0.0:8000: u nexpected error Permission denied
Encountered errors while bringing up the project.
Olet luonut palvelun.
Voit testata tätä palvelua luomalla asiakkaan ja käyttämällä sitä palvelun kutsumiseen. Tämän voi tehdä svcutil.exe-työkalulla komentoriviltä käyttämällä seuraavaa syntaksia:
svcutil.exe http://localhost:8000/?wsdl
Voit käyttää palvelukuvausta myös yksittäisenä tiedostona:
http://localhost:8000/?singleWsdl
Tämä luo määritystiedoston ja kooditiedoston, joka sisältää asiakasluokan. Lisää nämä kaksi tiedostoa asiakassovellukseen ja käytä luotua asiakasluokkaa palvelun kutsumiseen. Esimerkki:
C#
class Test
{
static void Main()
{
AppDetectClient client = new AppDetectClient();
// Kutsu palvelun toimintoja client-muuttujan avulla.
// Sulje aina asiakas.
client.Close();
}
}
Visual Basic
Class Test
Shared Sub Main()
Dim client As AppDetectClient = New AppDetectClient()
’ Kutsu palvelun toimintoja client-muuttujan avulla.
' Sulje aina asiakas.
client.Close()
End Sub