mirror of
https://github.com/mtan93/install-nextcloud.git
synced 2026-03-08 05:31:52 +00:00
/usr/sbin/service nginx stop /usr/sbin/service mysql restart /usr/sbin/service redis-server restart /usr/sbin/service php7.2-fpm restart /usr/sbin/service nginx restart
12 lines
287 B
Bash
12 lines
287 B
Bash
###
|
|
# restart all services related to your Nextcloud instance
|
|
# issue by e.g.:/root/restart.sh
|
|
###
|
|
#!/bin/bash
|
|
/usr/sbin/service nginx stop
|
|
/usr/sbin/service mysql restart
|
|
/usr/sbin/service redis-server restart
|
|
/usr/sbin/service php7.2-fpm restart
|
|
/usr/sbin/service nginx restart
|
|
exit 0
|