your network is not up.
start with a clean slate I'd say.
the following commands are all run inside your fabric-dev-servers folder.
do a :
./tearDownFabric.sh or ./stopFabric.sh if you want something less destructive
./startFabric.sh
./createPeerAdminCard.sh
this last command might fail if the card is already there. You can check this with composer card list
if you need to delete cards you can use this:
composer card delete --card name
you get the name from the list command
switch to the folder where your network definition files are and run the usual commands :
composer network install --card PeerAdmin@hlfv1 --archiveFile your-network@0.0.1.bna
composer network start --networkName your-network --networkVersion 0.0.1 --networkAdmin admin --networkAdminEnrollSecret adminpw --card PeerAdmin@hlfv1
composer card import --file admin@your-network.card
at this point you can start the rest server with
composer-rest-server
note, you will need to update these commands with your bna name and version, plus password, card names, whatever you have in your setup
if you change the name of the project, then be consistent, change the name of the network card, your namespaces, configuration files everything. wherever you had tutorial-network, replace with the new name, change the name of the bna file as well. Basically make a note of all the commands you used to create the tutorial-network and repeat them changing the name to the new one. I did the same thing with my project and once I got everything right, it wasn't a problem anymore