2E. Day 1 : How can I use NIAB BCF server (Hands on Session) - bioinfokushwaha/Livestock_Genomics GitHub Wiki
1. How can I connect/disconnect to the workshop server?
Server login details
ip-address : 172.18.0.91
username: nanobioinfo22
pwd:123456
Example : ssh -X [email protected]
If you are a Windows user: You should install MobaXterm
- Download
- Unzip
- Click on Exe
- Start terminal ssh -X username@ip-address + Enter pwd
- do your job
- logout
- exit
https://github.com/bioinfokushwaha/Workshop/blob/master/Image/MobaXterm.png
If you are a Unix user
- Start terminal and type ssh -X username@ip-address + Enter pwd
- do your job
- logout
- exit
2. How can I transfer files between my computer and my account on the workshop server?
I. You can install FileZilla and can get access to remote server through login credential. Once you installed on you computer, open filezilla program and you will have below given window. https://github.com/bioinfokushwaha/Workshop/blob/master/Image/Filezilla.png
II. By terminal (Recommended method for file transfer) $scp youraccountname@hostname/ipaddress:~/filepath/filename ./ $pwd
ip-address : 172.18.0.91
username: nanobioinfo22
pwd:123456
######## Send a file from local desktop to NIAB server ##############################
Check where is your file a local system or put your file where you are i.e. file name: asd.txt
Syntax : scp local_filename server_location:folder_name
scp asd.txt [email protected]:~/NGSWorkshop24/sandeep (Don't write on the Server, only on local terminal)
########## Send a file from the NIAB server to the local system ######################
Check where is your file in a local system or put your file where you are i.e. file name: asd.txt
Syntax: scp erver_location:folder_name/filename ./
scp [email protected]:~/NGSWorkshop24/yourfile_name/asd.txt ./ (Don't write on the Server, only local terminal)