sh remove.sh

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh remove.sh相关的知识,希望对你有一定的参考价值。

#!/bin/bash

ROOTPASS='password'

echo "Enter username to delete:"
read USERNAME

mysql -uroot --password=$ROOTPASS -e "DROP USER $USERNAME@localhost"
mysql -uroot --password=$ROOTPASS -e "DROP DATABASE $USERNAME"
rm -f /etc/nginx/sites-enabled/$USERNAME.conf
rm -f /etc/nginx/sites-available/$USERNAME.conf
rm -f /etc/php/7.0/fpm/pool.d/$USERNAME.conf
find /var/log/nginx/ -type f -name "$USERNAME-*" -exec rm '{}' \;

/etc/init.d/nginx reload
/etc/init.d/php7.0-fpm reload

userdel -rf $USERNAME

以上是关于sh remove.sh的主要内容,如果未能解决你的问题,请参考以下文章

sh remove.sh

sh remove_git_submodule.sh

sh remove-from-history.sh

haproxy rpm制做

alias rm 防止ubuntu误删的好方法

alias rm 防止ubuntu误删的好方法