mysqlapache2combo - Pequeno script que facilita a vida
Publicado por Felipe Ruiz Peixoto (última atualização em 30/04/2015)
[ Hits: 4.413 ]
Homepage: https://www.ubuntu.com/
Quem trabalha com PHP e MySQL no Linux precisa ativar, reativar e desativar os serviços quando precisa no terminal. Eu fiz um pequeno script do shell que faz tudo automaticamente, só executar em um terminal. Não precisa executar como superusuário, ele vai pedir a senha pra você.
Aqui no meu Kali eu dou dois cliques no script e ele pergunta se eu quero executar, exibir etc. É uma mão na roda!
#!/bin/bash # # mysqlapache2combo # Felipe Ruiz <feliperuiz.sax.eletronic@gmail.com> function ask() { read answer case "$answer" in 's' ) startAll; ;; 't' ) stopAll ;; 'r' ) restartAll ;; *) echo "Invalid option" ;; esac } function startAll { service mysql start; if [ $? -eq 0 ] then echo "mysql started." fi service apache2 start; if [ $? -eq 0 ] then echo "apache2 started." fi } function stopAll { service mysql stop; if [ $? -eq 0 ] then echo "mysql stopped." fi service apache2 stop; if [ $? -eq 0 ] then echo "apache2 stopped." fi } function restartAll { service mysql stop; if [ $? -eq 0 ] then echo "mysql stopped." fi service apache2 stop; if [ $? -eq 0 ] then echo "apache2 stopped." fi sleep 1 service mysql start; if [ $? -eq 0 ] then echo "mysql started." fi service apache2 start; if [ $? -eq 0 ] then echo "apache2 started." fi } if [ "`id -u`" -eq 0 ] then case "$1" in start ) startAll ;; stop ) stopAll ;; restart ) restartAll ;; * ) echo "Invalid option, press S to start, T to stop, R to restart:"; ask ;; esac else echo "This script needs superuser permissions, please input your password:" su -c "./mysqlapache2combo" fi
ZPenBoot - Gravando imagem ISO em um pendrive
Ping para servidores tendo um arquivo TXT com a lista dos IPs/Hostnames
Nenhum comentário foi encontrado.
Compartilhando a tela do Computador no Celular via Deskreen
Como Configurar um Túnel SSH Reverso para Acessar Sua Máquina Local a Partir de uma Máquina Remota
Configuração para desligamento automatizado de Computadores em um Ambiente Comercial
Como renomear arquivos de letras maiúsculas para minúsculas
Imprimindo no formato livreto no Linux
Vim - incrementando números em substituição
Efeito "livro" em arquivos PDF
Como resolver o erro no CUPS: Unable to get list of printer drivers
Melhorando a precisão de valores flutuantes em python[AJUDA] (1)
Instalação Uefi com o instalador clássico do Mageia (1)
[Python] Automação de scan de vulnerabilidades
[Python] Script para analise de superficie de ataque
[Shell Script] Novo script para redimensionar, rotacionar, converter e espelhar arquivos de imagem
[Shell Script] Iniciador de DOOM (DSDA-DOOM, Doom Retro ou Woof!)
[Shell Script] Script para adicionar bordas às imagens de uma pasta