Advertisement
LightProgrammer000

Instalação Rápida [Servidores Debian]

Jan 18th, 2019
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.46 KB | None | 0 0
  1. # !/bin/bash
  2. # Programa: Instalacao de Ferramentas de Servidores
  3. # Assunto: Funcoes Multiplas Funcao
  4. # Compilar: chmod 777
  5.  
  6. # FUNCOES: 1
  7.  
  8. INSTALADORES()
  9. {
  10.     # Comandos de atualizacao do sistema e limpeza
  11.     apt-get update
  12.     apt-get upgrade
  13.     apt-get autoclean
  14.    
  15.     # Comandos
  16.     apt-get install bc
  17.     apt-get install yum
  18.     apt-get install csh
  19.     apt-get install rsync
  20.     apt-get install dialog
  21.     apt-get install ipcalc
  22.     apt-get install ntfs-3g
  23.     apt-get install whiptail
  24.  
  25.     # MySql 5.7
  26.     wget https://dev.mysql.com/get/mysql-apt-config_0.8.11-1_all.deb
  27.     dpkg -i mysql-apt-config_0.8.11-1_all.deb
  28.     apt-get update
  29.     apt-get install mysql-server
  30.     mysql_secure_installation
  31.    
  32.     # PHP
  33.     apt-get install php5
  34.     apt-get install phpmyadmin
  35.     apt-get install php php7.0-mysql libapache2-mod-php7.0
  36.  
  37.     # Servidor [WEB]
  38.     apt-get install apache2
  39.  
  40.     # WordPress
  41.     wget http://wordpress.org/latest.tar.gz
  42.     tar -xzvf latest.tar.gz
  43.     rsync -avP wordpress/ /var/www/html # Move e autoriza permissoes
  44.     chown -R www-data:www-data /var/www/html
  45.     rm -rf latest.tar.gz
  46.     rm -rf wordpress/
  47.  
  48.     # SSH
  49.     apt-get install ssh
  50.  
  51.     # ZIP
  52.     apt-get install zip
  53.  
  54.     # GIT
  55.     apt-get install git
  56. }
  57.  
  58. # FUNCOES: 2
  59.  
  60. ## Ativando Servicos
  61. UP()
  62. {
  63.     # Comandos
  64.     service ssh start
  65.     service mysql start
  66.     service apache2 start
  67. }
  68.  
  69. ##################################################
  70. #################### PROGRAMA ####################
  71. ##################################################
  72.  
  73. INSTALADORES
  74. UP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement