12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #!/bin/bash
- # Author: admin@serverOk.in
- # Web: https://serverok.in
- apt install -y software-properties-common
- add-apt-repository ppa:ondrej/php
- apt update
- apt -y upgrade
- apt update
- apt -y install nginx
- apt -y install php5.6-cli php5.6-curl php5.6-gd php5.6-mysql php5.6-imagick php5.6-imap \
- php5.6-xml php5.6-mbstring php5.6-zip php5.6-xmlrpc php5.6-soap php5.6-intl php5.6-bcmath \
- php5.6-fpm
- apt -y install mariadb-client mariadb-server
- echo "postfix postfix/mailname string `hostname`" | debconf-set-selections
- echo "postfix postfix/main_mailer_type string 'Internet Site'" | debconf-set-selections
- apt-get install -y postfix
- apt install automysqlbackup -y
- systemctl enable mysql
- systemctl restart mysql
- systemctl enable nginx
- systemctl restart nginx
- systemctl enable php5.6-fpm
- systemctl restart php5.6-fpm
- apt install -y monit
- ln -s /etc/monit/conf-available/nginx /etc/monit/conf-enabled/
- ln -s /etc/monit/conf-available/mysql /etc/monit/conf-enabled/
- systemctl enable monit
- systemctl start monit
|