Results for "server"

Bio-Scripts

  • Bash script for getopts

    ...TEST=$OPTARG ;; r) SERVER=$OPTARG ;;...exit ;; esac done if [[ -z $TEST ]] || [[ -z $SERVER ]] || [[ -z $PASSWD ]] then...

    993 days ago

  • Install MySQL on Ubuntu !

    ...on Ubuntu #To install MySQL on your Ubuntu server follow the steps below: Firs...e following command: sudo apt install mysql-server #Once the installation is...tart automatically. To check whether the MySQL server is running, type: sudo sys...

    963 days ago

  • Install Php on Ubuntu / Apache server !

    #Installing PHP 7.2 with Apache #If you are using Apache as your web server to install PHP and Apache PHP module run the following command: sudo apt install php libapache2-mod-php #Once the packages are installed restart the Apache service: sudo systemctl restart apache2

    963 days ago

  • Installing manadatory software for websites hosting !

    ...all Apache, install the latest meta-package apache2 by running: sudo apt update sudo apt install apache2 #Install the mysql-server sudo apt install mysql-server sudo systemctl status mysql...

    960 days ago

  • Installing manadatory software for websites hosting !

    ...all Apache, install the latest meta-package apache2 by running: sudo apt update sudo apt install apache2 #Install the mysql-server sudo apt install mysql-server sudo systemctl status mysql...

    960 days ago

  • Bash script to transfer files to server !

    # rsync options source destination rsync -azvh --progress PacBio_clean.fa xxx@xxx.xxx.res.in:/home/ # scp source_file_name username@destination_host:destination_folder scp –rpv /datafile xxx@192.168.1.100:/home/me

    847 days ago