# Update seed peer to resolve connectivity issue

**(A) For Windows**

1. Login Gitbash as a administrator and switch to script path
2. The normal path should be “$GOPATH/src/github.com/scripttoken/script”. Type “cd go/src/github.com/scripttoken/script” and press enter to get there, then run the following command.

git pull

3. Now execute below command to copy or match the updated config file to scriptnet path,

cp -r ./integration/scriptnet/node/config.yaml ../scriptnet/node

&#x20;cd ../scriptnet/node

&#x20;rm db&#x20;

wget <https://scripttv.s3.eu-central-1.amazonaws.com/ablockchain-backup/db.zip>

unzip db.zip

4. Close gitbash and then reopen gitbash again by right clicking the icon and select run as an administrator, then execute the below command.

cd go/src/github.com/scripttoken/script

5. Switch to "bin" directory i.e $GOPATH/bin/ where your binary has been generated using the above command. Navigate to the bin folder by typing “cd $GOPATH/bin”.
6. Atlast run your node as it was running earlier after closing the previous terminals

**(B) Linux/Ubuntu**

1. Open terminal and navigate to script path which should be similar to this : "$GOPATH/src/github.com/scripttoken/script" . Type "cd /usr/local/go/src/github/scripttoken/script" and press enter to get there, then run the following command.

git pull

2. Now execute below command to copy or match the updated config file to scriptnet path,

cp -r ./integration/scriptnet/node/config.yaml ../scriptnet/node

cd ../scriptnet/node&#x20;

rm -rf db&#x20;

wget <https://scripttv.s3.eu-central-1.amazonaws.com/ablockchain-backup/db.zip>

unzip db.zip

3. Switch back to script path by below command,

cd ../../script&#x20;

sudo chmod -R 777 /usr/local/go

4. close the running sesssion of node.
5. Atlast run your node as it was running earlier in sessions.

**(C) MAC**

1. Open terminal and navigate to script path which should be similar to this : "$GOPATH/src/github.com/scripttoken/script" . Type "cd /usr/local/go/src/github/scripttoken/script" and press enter to get there, then run the following command.

git pull

2. Now execute below command to copy or match the updated config file to scriptnet path,

cp -r ./integration/scriptnet/node/config.yaml ../scriptnet/node&#x20;

cd ../scriptnet/node&#x20;

rm -rf db&#x20;

wget <https://scripttv.s3.eu-central-1.amazonaws.com/ablockchain-backup/db.zip>

unzip db.zip

3. Switch back to script path by below command,

cd ../../script&#x20;

sudo chmod -R 777 /usr/local/go

4. close the running sesssion of node.
5. Atlast run your node as it was running earlier in sessions.
