ModServ
- Total activity 182
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 74
Comments
Recent activity by ModServ-
Do you see it here? httpd -l | grep -i qos Also you have to enable UniqueId in Exhaustive Options List, you can check if you have it from here: httpd -l | grep unique
-
From backup script "/usr/local/cpanel/bin/backup", you can find this: /usr/local/cpanel/scripts/postcpbackup if ( -e '/usr/local/cpanel/scripts/postcpbackup' && -x _ && ( !exists $$conf_ref{'...
-
You welcome, glad to hear that your problem has been fixed :)
-
The issue is a typo from your side, I will highlight it for you: Package name from command: bash-4.1.2-15.el6_5.2.i686 Package name you wrote: bash-4.1.2-15.e16_5.2.i686 Did you see the differen...
-
You can find the rpm using: rpm -qa | grep bash Then to remove the needed one, issue this: rpm -e PACKAGENAME
-
Try this: /usr/local/cpanel/scripts/check_cpanel_rpms --fix
-
Varnish, you can set it up easily. Nginx, you can install nginxcp. PHP-FPM, cPanel will add it in EasyApache 4 which will become in EDGE tier soon. Redis, I didn't use it before.
-
What is your mysql version (mysql -V) ? And you could tail the last 50 lines from error log using this command: tail -n 50 /var/lib/mysql/$(hostname).err
-
Did you check the logs?
-
Just to be more organized, make a file let's say it's name will be "virscan" and put this in it: #!/bin/bash for i in `awk '!/nobody/{print $2 | "sort | uniq" }' /etc/userdomains | sort | uniq`; ...