Quantcast
Channel: cPanel Forums
Viewing all 5759 articles
Browse latest View live

awstats has 1 in number of visits column

$
0
0
Hey folks.

I have an odd one that appears to have occurred in one particularly busy web site only.

Awstats suddenly has "1" in Number of visits column (Days of the Month view). See attached.

Anyone else seen this happen before?
Attached Images

Service Faiure : exim-465

$
0
0
I am having difficulty connecting/opening port 465

Daemon smtp ports are set to 25 : 465 : 587

Waiting for exim to restart...........finished.

exim (/usr/sbin/exim -bd -q60m) running as mailnull with PID 27870 (pidfile check method)

exim has failed, please contact the sysadmin.



REDHAT Enterprise 6.5 x86_64 standard – server1 WHM 11.42.0 (build 22)

Possible Issues after MySQL Upgrade

$
0
0
Hey Guys,

I recently posted a question about the possibilities of any major issues after Upgrading MySQL from 5.1 to 5.6.
I Made the upgrade today And it seemed like everything went really well. All the websites are up and running and server has become quite faster too. So I'm happy about that. But i think I may have an issue which I don't believe is massive and could probably be fixed quite easily. I've noticed on our WHMCS Installation and IPB Forum. When I sign in to the admin area on IPB it works fine, but after a couple hours I come back and I'm signed out again. I'm usually signed in forever until I sign out manually. I also noticed with WHMCS that when a Order is made or Payment is made the Income information doesn't change. usually it will add the new income to the stats up the top of the admin area.

So i'm just wondering, Is this issue a known one? Could it be fixed easily or have i missed something in the upgrade?

I wasn't really sure where to post this. i know IPB don't handle Server Related issues. and I don't thing WHMCS would either...Well not MySQL type issues I would gather.

Thanks

Unusual load MySQL

$
0
0
I tried the mysqlmymonlite.sh to gather the info but apparently it was stuck at (see below).
Code:

Running make install
F/FD/FDALY/Test-Tester-0.109.tar.gz is just needed temporarily during building or testing. Do you want to install it permanently? [yes]

Anyways, i tried to fetch most info that may help you identify the problem.

The problem and overview:

1. Mysql load was normal at 7%-8% historically.
2. Suddenly for the past one week, i see it consistently at 25%, server load too has increased hence
3. Since then it has kept increasing incrementally to now 32%.
4. No major codebase changes.
5. Standard Apache 2.4 installation with Php 5.4 + Node + Redis + Mongo.
6. 2 Operational Sites, with average combine traffic of 15K pageviews daily.
7. Mysql Cache was turned off as over the months i found that it was generating more overhead than providing any help.
8. Queries not-using-indexes has remained high forever (pardon, programmatic handicap)


tuning-primer.sh


Code:

        -- MYSQL PERFORMANCE TUNING PRIMER --
            - By: Matthew Montgomery -

MySQL Version 5.5.36-cll x86_64

Uptime = 13 days 18 hrs 56 min 12 sec
Avg. qps = 196
Total Questions = 233818121
Threads Connected = 5

Server has been running for over 48hrs.
It should be safe to follow these recommendations

To find out more information on how each of these
runtime variables effects performance visit:
http://dev.mysql.com/doc/refman/5.5/en/server-system-variables.html
Visit http://www.mysql.com/products/enterprise/advisors.html
for info about MySQL's Enterprise Monitoring and Advisory Service

SLOW QUERIES
The slow query log is NOT enabled.
Current long_query_time = 1.000000 sec.
You have 101 out of 233818159 that take longer than 1.000000 sec. to complete
Your long_query_time seems to be fine

BINARY UPDATE LOG
The binary update log is NOT enabled.
You will not be able to do point in time recovery
See http://dev.mysql.com/doc/refman/5.5/en/point-in-time-recovery.html

WORKER THREADS
Current thread_cache_size = 16
Current threads_cached = 12
Current threads_per_sec = 0
Historic threads_per_sec = 0
Your thread_cache_size is fine

MAX CONNECTIONS
Current max_connections = 151
Current threads_connected = 5
Historic max_used_connections = 29
The number of used connections is 19% of the configured maximum.
Your max_connections variable seems to be fine.

INNODB STATUS
Current InnoDB index space = 13 M
Current InnoDB data space = 558 M
Current InnoDB buffer pool free = 4 %
Current innodb_buffer_pool_size = 560 M
Depending on how much space your innodb indexes take up it may be safe
to increase this value to up to 2 / 3 of total system memory

MEMORY USAGE
Max Memory Ever Allocated : 1021 M
Configured Max Per-thread Buffers : 2.10 G
Configured Max Global Buffers : 608 M
Configured Max Memory Limit : 2.69 G
Physical Memory : 23.59 G
Max memory limit seem to be within acceptable norms

KEY BUFFER
Current MyISAM index space = 104 M
Current key_buffer_size = 32 M
Key cache miss rate is 1 : 305208
Key buffer free ratio = 40 %
Your key_buffer_size seems to be too high.
Perhaps you can use these resources elsewhere

QUERY CACHE
Query cache is supported but not enabled
Perhaps you should set the query_cache_size

SORT OPERATIONS
Current sort_buffer_size = 2 M
Current read_rnd_buffer_size = 8 M
Sort buffer seems to be fine

JOINS
Current join_buffer_size = 2.00 M
You have had 53101252 queries where a join could not use an index properly
You have had 347 joins without keys that check for key usage after each row
You should enable "log-queries-not-using-indexes"
Then look for non indexed joins in the slow query log.
If you are unable to optimize your queries you may want to increase your
join_buffer_size to accommodate larger joins in one pass.

Note! This script will still suggest raising the join_buffer_size when
ANY joins not using indexes are found.

OPEN FILES LIMIT
Current open_files_limit = 32768 files
The open_files_limit should typically be set to at least 2x-3x
that of table_cache if you have heavy MyISAM usage.
Your open_files_limit value seems to be fine

TABLE CACHE
Current table_open_cache = 10240 tables
Current table_definition_cache = 10240 tables
You have a total of 1491 tables
You have 1819 open tables.
The table_cache value seems to be fine

TEMP TABLES
Current max_heap_table_size = 32 M
Current tmp_table_size = 32 M
Of 53364610 temp tables, 33% were created on disk
Perhaps you should increase your tmp_table_size and/or max_heap_table_size
to reduce the number of disk-based temporary tables
Note! BLOB and TEXT columns are not allow in memory tables.
If you are using these columns raising these values might not impact your
ratio of on disk temp tables.

TABLE SCANS
Current read_buffer_size = 2 M
Current table scan ratio = 699 : 1
read_buffer_size seems to be fine

TABLE LOCKING
Current Lock Wait ratio = 1 : 3632
You may benefit from selective use of InnoDB.
If you have long running SELECT's against MyISAM tables and perform
frequent updates consider setting 'low_priority_updates=1'
If you have a high concurrency of inserts on Dynamic row-length tables
consider setting 'concurrent_insert=ALWAYS'.


mysqltuner.pl

Code:

root@some-network [~/scripts]# perl mysqltuner*

 >>  MySQLTuner 1.2.0 - Major Hayden <major@mhtx.net>
 >>  Bug reports, feature requests, and downloads at http://mysqltuner.com/
 >>  Run with '--help' for additional options and output filtering

-------- General Statistics --------------------------------------------------
[--] Skipped version check for MySQLTuner script
[OK] Currently running supported MySQL version 5.5.36-cll
[OK] Operating on 64-bit architecture

-------- Storage Engine Statistics -------------------------------------------
[--] Status: +Archive -BDB -Federated +InnoDB -ISAM -NDBCluster
[--] Data in MyISAM tables: 311M (Tables: 1113)
[--] Data in InnoDB tables: 558M (Tables: 324)
[--] Data in PERFORMANCE_SCHEMA tables: 0B (Tables: 17)
[--] Data in MEMORY tables: 14M (Tables: 13)
[!!] Total fragmented tables: 74

-------- Security Recommendations  -------------------------------------------
[OK] All database users have passwords assigned

-------- Performance Metrics -------------------------------------------------
[--] Up for: 13d 18h 57m 24s (233M q [196.269 qps], 11M conn, TX: 4220B, RX: 117B)
[--] Reads / Writes: 96% / 4%
[--] Total buffers: 640.0M global + 14.2M per thread (151 max threads)
[OK] Maximum possible memory usage: 2.7G (11% of installed RAM)
[OK] Slow queries: 0% (101/233M)
[OK] Highest usage of available connections: 19% (29/151)
[OK] Key buffer size / total MyISAM indexes: 32.0M/104.6M
[OK] Key buffer hit rate: 100.0% (6B cached / 21K reads)
[!!] Query cache is disabled
[OK] Sorts requiring temporary tables: 0% (6K temp sorts / 66M sorts)
[!!] Joins performed without indexes: 53107745
[!!] Temporary tables created on disk: 33% (27M on disk / 80M total)
[OK] Thread cache hit rate: 99% (339 created / 11M connections)
[!!] Table cache hit rate: 8% (1K open / 21K opened)
[OK] Open file limit used: 7% (2K/32K)
[OK] Table locks acquired immediately: 99% (424M immediate / 424M locks)
[OK] InnoDB data size / buffer pool: 558.4M/560.0M

-------- Recommendations -----------------------------------------------------
General recommendations:
    Run OPTIMIZE TABLE to defragment tables for better performance
    Enable the slow query log to troubleshoot bad queries
    Adjust your join queries to always utilize indexes
    When making adjustments, make tmp_table_size/max_heap_table_size equal
    Reduce your SELECT DISTINCT queries without LIMIT clauses
    Increase table_cache gradually to avoid file descriptor limits
Variables to adjust:
    query_cache_size (>= 8M)
    join_buffer_size (> 2.0M, or always use indexes with joins)
    tmp_table_size (> 32M)
    max_heap_table_size (> 32M)
    table_cache (> 10240)


mysql config

Code:

[mysqld]
bind-address=127.0.0.1
innodb_file_per_table=1
innodb_buffer_pool_size=560M
key_buffer_size=32M
join_buffer_size=2M
sort_buffer_size=2M
read_buffer_size=2M
read_rnd_buffer_size=8M
myisam_sort_buffer_size=32M
table_open_cache=10240
table_definition_cache=10240
thread_cache_size=16
tmp_table_size=32M
max_heap_table_size=32M
long_query_time=1
open_files_limit=32768


Load Averages sar -p


Code:

  root@some-network [~/scripts]# sar -p
Linux 3.10.9-xxxx-grs-ipv6-64 (some.hostname.net)        Thursday 20 February 2014        _x86_64_        (8 CPU)

12:00:01  IST    CPU    %user    %nice  %system  %iowait    %steal    %idle
12:10:01  IST    all      2.20      0.00      0.35      0.42      0.00    97.03
12:20:01  IST    all      2.34      0.00      0.37      0.33      0.00    96.95
12:30:01  IST    all      2.15      0.00      0.34      0.36      0.00    97.15
12:40:01  IST    all      1.93      0.05      0.39      0.39      0.00    97.24
12:50:01  IST    all      2.26      0.00      0.47      0.38      0.00    96.89
01:00:01  IST    all      1.89      0.00      0.34      0.38      0.00    97.40
01:10:01  IST    all      1.71      0.00      0.31      0.33      0.00    97.65
01:20:01  IST    all      2.14      0.00      0.36      0.41      0.00    97.09
01:30:01  IST    all      1.71      0.01      0.27      0.53      0.00    97.49
01:40:01  IST    all      1.82      0.00      0.28      0.38      0.00    97.51
01:50:01  IST    all      1.88      0.00      0.31      0.36      0.00    97.44
02:00:01  IST    all      1.66      0.00      0.25      0.35      0.00    97.75
02:10:01  IST    all      1.46      0.00      0.22      0.35      0.00    97.97
02:20:01  IST    all      1.94      0.01      0.38      0.37      0.00    97.31
02:30:01  IST    all      1.55      0.00      0.22      0.33      0.00    97.91
02:40:01  IST    all      1.67      0.00      0.25      0.31      0.00    97.77
02:50:01  IST    all      1.78      0.04      0.31      0.37      0.00    97.50
03:00:01  IST    all      4.30      0.00      1.19      0.42      0.00    94.09
03:10:01  IST    all      1.79      0.01      0.28      0.32      0.00    97.61
03:20:01  IST    all      1.54      0.00      0.20      0.33      0.00    97.92
03:30:01  IST    all      1.87      0.00      0.29      0.31      0.00    97.53
03:40:01  IST    all      1.92      0.01      0.30      0.36      0.00    97.41
03:50:01  IST    all      2.45      0.01      0.44      0.44      0.00    96.67
04:00:01  IST    all      1.67      0.00      0.31      0.46      0.00    97.56
04:10:01  IST    all      1.79      0.00      0.30      0.39      0.00    97.52
04:20:01  IST    all      1.97      0.01      0.29      0.37      0.00    97.36
04:30:01  IST    all      1.54      0.00      0.24      0.35      0.00    97.87
04:40:01  IST    all      1.74      0.04      0.29      0.33      0.00    97.60
04:50:01  IST    all      1.63      0.04      0.24      0.33      0.00    97.75
05:00:01  IST    all      1.59      0.00      0.22      0.31      0.00    97.87
05:10:01  IST    all      1.87      0.01      0.27      0.34      0.00    97.51
05:20:01  IST    all      1.56      0.00      0.25      0.31      0.00    97.87
05:30:01  IST    all      1.46      0.00      0.22      0.31      0.00    98.02
05:40:01  IST    all      1.56      0.00      0.25      0.30      0.00    97.89
05:50:01  IST    all      1.47      0.00      0.22      0.27      0.00    98.04
06:00:01  IST    all      1.70      0.01      0.25      0.30      0.00    97.74
06:10:01  IST    all      1.65      0.00      0.27      0.31      0.00    97.77
06:20:01  IST    all      1.44      0.00      0.22      0.30      0.00    98.04
06:30:01  IST    all      1.82      0.00      0.30      0.28      0.00    97.60
06:40:01  IST    all      1.61      0.00      0.25      0.26      0.00    97.88
06:50:01  IST    all      1.83      0.04      0.37      0.27      0.00    97.49
07:00:01  IST    all      1.59      0.00      0.25      0.32      0.00    97.83

07:00:01  IST    CPU    %user    %nice  %system  %iowait    %steal    %idle
07:10:01  IST    all      1.64      0.00      0.26      0.33      0.00    97.77
07:20:01  IST    all      1.67      0.00      0.31      0.30      0.00    97.72
07:30:01  IST    all      1.63      0.00      0.34      0.30      0.00    97.73
07:40:01  IST    all      1.36      0.01      0.24      0.29      0.00    98.11
07:50:01  IST    all      1.99      0.00      0.35      0.35      0.00    97.31
08:00:01  IST    all      2.58      0.00      0.61      0.36      0.00    96.44
08:10:01  IST    all      2.49      0.00      0.53      0.35      0.00    96.63
08:20:01  IST    all      2.90      0.00      0.73      0.35      0.00    96.02
08:30:01  IST    all      2.33      0.01      0.42      0.34      0.00    96.90
08:40:01  IST    all      3.06      0.04      0.75      0.36      0.00    95.79
08:50:01  IST    all      2.43      0.00      0.40      0.36      0.00    96.80
09:00:01  IST    all      3.08      0.00      0.65      0.36      0.00    95.90
09:10:01  IST    all      2.96      0.00      0.58      0.41      0.00    96.04
09:20:01  IST    all      3.28      0.01      0.62      0.39      0.00    95.70
09:30:01  IST    all      3.11      0.00      0.73      0.38      0.00    95.79
09:40:01  IST    all      2.40      0.00      0.42      0.45      0.00    96.73
09:50:01  IST    all      2.51      0.00      0.45      0.35      0.00    96.69
10:00:01  IST    all      2.26      0.00      0.39      0.39      0.00    96.96
10:10:01  IST    all      2.10      0.01      0.34      0.38      0.00    97.17
10:20:01  IST    all      2.08      0.00      0.39      0.43      0.00    97.10
10:30:01  IST    all      2.70      0.00      0.51      0.35      0.00    96.44
10:40:01  IST    all      3.09      0.04      0.57      0.38      0.00    95.91
10:50:01  IST    all      3.05      0.00      0.58      0.37      0.00    96.00
11:00:01  IST    all      2.91      0.01      0.50      0.37      0.00    96.21
11:10:01  IST    all      3.22      0.00      0.70      0.44      0.00    95.64
11:20:01  IST    all      3.27      0.00      0.59      0.42      0.00    95.70
11:30:01  IST    all      2.94      0.00      0.50      0.39      0.00    96.17
11:40:01  IST    all      3.10      0.00      0.55      0.38      0.00    95.96
11:50:01  IST    all      3.52      0.01      0.63      0.41      0.00    95.43
12:00:01  IST    all      3.06      0.00      0.49      0.37      0.00    96.08
12:10:01  IST    all      3.81      0.00      0.74      0.45      0.00    95.00
12:20:01  IST    all      3.76      0.00      0.71      0.37      0.00    95.16
12:30:02  IST    all      3.82      0.01      0.61      0.37      0.00    95.20
12:40:01  IST    all      3.15      0.05      0.50      0.38      0.00    95.92
12:50:01  IST    all      2.91      0.00      0.41      0.36      0.00    96.32
01:00:01  IST    all      3.08      0.00      0.46      0.35      0.00    96.12
01:10:01  IST    all      3.25      0.00      0.51      0.41      0.00    95.82
01:20:01  IST    all      3.38      0.00      0.63      0.40      0.00    95.59
01:30:01  IST    all      3.79      0.01      0.71      0.37      0.00    95.12
01:40:01  IST    all      3.10      0.00      0.45      0.34      0.00    96.11
01:50:01  IST    all      2.87      0.00      0.40      0.34      0.00    96.38
02:00:01  IST    all      3.37      0.00      0.57      0.41      0.00    95.64

02:00:01  IST    CPU    %user    %nice  %system  %iowait    %steal    %idle
02:10:01  IST    all      4.25      0.00      0.87      0.42      0.00    94.46
02:20:01  IST    all      3.54      0.01      0.61      0.38      0.00    95.46
02:30:01  IST    all      3.63      0.00      0.73      0.38      0.00    95.25
02:40:01  IST    all      3.56      0.00      0.53      0.43      0.00    95.47
02:50:01  IST    all      3.92      0.05      0.68      0.40      0.00    94.95
03:00:01  IST    all      3.51      0.00      0.56      0.35      0.00    95.59
03:10:01  IST    all      4.27      0.01      0.73      0.41      0.00    94.58
03:20:01  IST    all      4.03      0.00      0.76      0.41      0.00    94.80
03:30:01  IST    all      3.75      0.01      0.61      0.36      0.00    95.27
03:40:01  IST    all      3.86      0.00      0.72      0.43      0.00    94.99
03:50:01  IST    all      4.30      0.00      0.76      0.40      0.00    94.54
04:00:01  IST    all      3.53      0.00      0.59      0.38      0.00    95.50
04:10:01  IST    all      6.22      0.01      0.65      0.37      0.00    92.75
04:20:01  IST    all      2.61      0.00      0.43      0.34      0.00    96.61
04:30:01  IST    all      3.40      0.00      0.63      0.34      0.00    95.63
04:40:01  IST    all      3.69      0.00      0.56      0.39      0.00    95.35
04:50:01  IST    all      3.30      0.05      0.54      0.35      0.00    95.76
05:00:01  IST    all      3.48      0.01      0.52      0.35      0.00    95.64
05:10:01  IST    all      3.72      0.00      0.60      0.39      0.00    95.29
05:20:01  IST    all      3.86      0.00      0.65      0.36      0.00    95.13
05:30:01  IST    all      2.82      0.00      0.49      0.38      0.00    96.31
05:40:01  IST    all      2.73      0.00      0.47      0.37      0.00    96.43
05:50:01  IST    all      2.70      0.34      0.43      0.37      0.00    96.16
06:00:01  IST    all      2.61      0.00      0.39      0.32      0.00    96.68
06:10:01  IST    all      2.67      0.00      0.41      0.37      0.00    96.54
06:20:01  IST    all      2.65      0.00      0.41      0.36      0.00    96.58
06:30:01  IST    all      2.78      0.00      0.44      0.30      0.00    96.47
06:40:01  IST    all      2.81      0.05      0.42      0.33      0.00    96.39
06:50:01  IST    all      2.92      0.00      0.50      0.32      0.00    96.26
07:00:01  IST    all      2.72      0.00      0.49      0.34      0.00    96.44
07:10:01  IST    all      2.81      0.00      0.75      0.34      0.00    96.10
07:20:01  IST    all      2.29      0.00      0.42      0.29      0.00    96.99
07:30:01  IST    all      2.34      0.01      0.38      0.30      0.00    96.97
07:40:01  IST    all      2.61      0.00      0.42      0.33      0.00    96.64
07:50:01  IST    all      2.67      0.00      0.51      0.32      0.00    96.50
08:00:01  IST    all      2.25      0.00      0.37      0.31      0.00    97.07
08:10:01  IST    all      2.32      0.00      0.36      0.33      0.00    96.98
08:20:01  IST    all      2.07      0.01      0.36      0.32      0.00    97.25
08:30:01  IST    all      3.06      0.00      0.63      0.35      0.00    95.96
08:40:01  IST    all      2.70      0.04      0.57      0.29      0.00    96.40
08:50:01  IST    all      2.47      0.00      0.40      0.34      0.00    96.78
09:00:01  IST    all      2.10      0.00      0.36      0.34      0.00    97.20

09:00:01  IST    CPU    %user    %nice  %system  %iowait    %steal    %idle
09:10:01  IST    all      2.33      0.01      0.37      0.35      0.00    96.95
09:20:01  IST    all      2.97      0.00      0.51      0.32      0.00    96.18
09:30:01  IST    all      2.35      0.00      0.37      0.36      0.00    96.92
09:40:01  IST    all      2.22      0.00      0.33      0.31      0.00    97.13
09:50:01  IST    all      2.44      0.00      0.42      0.35      0.00    96.79
10:00:01  IST    all      2.69      0.01      0.44      0.36      0.00    96.50
10:10:01  IST    all      2.78      0.00      0.56      0.36      0.00    96.29
10:20:01  IST    all      2.89      0.00      0.59      0.35      0.00    96.17
10:30:01  IST    all      2.42      0.00      0.44      0.34      0.00    96.79
10:40:01  IST    all      2.52      0.04      0.40      0.33      0.00    96.71
10:50:01  IST    all      2.30      0.01      0.36      0.33      0.00    97.00
11:00:01  IST    all      2.12      0.00      0.32      0.32      0.00    97.23
11:10:01  IST    all      2.13      0.00      0.36      0.35      0.00    97.15
11:20:01  IST    all      2.45      0.00      0.39      0.34      0.00    96.82
11:30:01  IST    all      2.61      0.00      0.49      0.36      0.00    96.54
11:40:01  IST    all      2.09      0.01      0.34      0.34      0.00    97.22
11:50:01  IST    all      2.27      0.00      0.38      0.34      0.00    97.00
12:00:01  IST    all    13.58      0.02      1.90      0.49      0.00    84.01
12:10:01  IST    all    15.27      0.00      2.27      0.58      0.00    81.88
12:20:01  IST    all    15.82      0.00      2.33      0.50      0.00    81.34
12:30:01  IST    all    15.66      0.00      2.25      0.47      0.00    81.61
12:40:01  IST    all    15.36      0.00      2.26      0.52      0.00    81.86
12:50:01  IST    all    15.75      0.11      2.27      0.51      0.00    81.38
01:00:01  IST    all    16.36      0.00      2.44      0.55      0.00    80.65
01:10:01  IST    all    15.83      0.00      2.34      0.64      0.00    81.19
01:20:01  IST    all    15.98      0.00      2.29      0.71      0.00    81.01
01:30:01  IST    all    16.05      0.00      2.39      0.67      0.00    80.89
01:40:01  IST    all    15.98      0.01      2.36      0.61      0.00    81.04
01:50:01  IST    all    16.54      0.00      2.63      0.61      0.00    80.22
02:00:01  IST    all    16.67      0.00      2.38      0.61      0.00    80.33
02:10:01  IST    all    15.86      0.00      2.33      0.54      0.00    81.27
02:20:01  IST    all    15.89      0.00      2.28      0.48      0.00    81.35
02:30:01  IST    all    15.74      0.01      2.35      0.57      0.00    81.32
02:40:01  IST    all    15.68      0.10      2.30      0.61      0.00    81.32
02:50:01  IST    all    15.10      0.00      2.28      0.49      0.00    82.13
03:00:01  IST    all    15.41      0.00      2.23      0.51      0.00    81.85
03:10:01  IST    all    16.04      0.00      2.33      0.63      0.00    81.00
03:20:01  IST    all    16.51      0.01      2.40      0.58      0.00    80.50
03:30:01  IST    all    15.20      0.00      2.20      0.43      0.00    82.16
03:40:01  IST    all    15.96      0.02      2.33      0.48      0.00    81.21
03:50:01  IST    all    16.38      0.00      2.35      0.47      0.00    80.79
04:00:01  IST    all    15.37      0.04      2.23      0.45      0.00    81.91

04:00:01  IST    CPU    %user    %nice  %system  %iowait    %steal    %idle
04:10:01  IST    all    15.55      0.01      2.26      0.54      0.00    81.64
04:20:01  IST    all    15.62      0.00      2.24      0.62      0.00    81.51
04:30:01  IST    all    15.77      0.00      2.26      0.57      0.00    81.39
04:40:01  IST    all    15.74      0.09      2.32      0.56      0.00    81.29
04:50:01  IST    all    15.45      0.00      2.26      0.43      0.00    81.85
05:00:01  IST    all    16.45      0.01      2.44      0.54      0.00    80.56
05:10:01  IST    all    15.25      0.00      2.26      0.51      0.00    81.98
05:20:01  IST    all    16.03      0.00      2.33      0.49      0.00    81.15
05:30:01  IST    all    16.10      0.00      2.31      0.49      0.00    81.09
05:40:01  IST    all    15.48      0.00      2.25      0.54      0.00    81.73
05:50:01  IST    all    14.72      0.01      2.27      0.44      0.00    82.57
06:00:01  IST    all    15.40      0.00      2.20      0.47      0.00    81.92
06:10:01  IST    all    15.94      0.00      2.31      0.51      0.00    81.23
06:20:01  IST    all    14.39      0.00      2.05      0.49      0.00    83.06
06:30:01  IST    all    13.76      0.00      1.95      0.52      0.00    83.77
06:40:01  IST    all    15.10      0.10      2.22      0.61      0.00    81.96
06:50:01  IST    all    14.88      0.00      2.22      0.51      0.00    82.38
07:00:01  IST    all    14.71      0.00      2.14      0.52      0.00    82.62
07:10:01  IST    all    14.42      0.00      2.11      0.46      0.00    83.01
07:20:01  IST    all    13.62      0.00      1.97      0.56      0.00    83.86
07:30:01  IST    all    13.82      0.01      1.99      0.52      0.00    83.66
07:40:01  IST    all    13.88      0.00      1.97      0.46      0.00    83.69
07:50:01  IST    all    13.34      0.00      1.92      0.54      0.00    84.20
08:00:01  IST    all    14.61      0.00      2.21      0.42      0.00    82.76
08:10:01  IST    all    14.48      0.00      2.11      0.51      0.00    82.89
08:20:01  IST    all    15.40      0.01      2.24      0.50      0.00    81.85
08:30:01  IST    all    15.30      0.00      2.19      0.37      0.00    82.13
08:40:01  IST    all    16.15      0.00      2.40      0.60      0.00    80.84
08:50:01  IST    all    16.31      0.11      2.39      0.54      0.00    80.65
09:00:01  IST    all    14.46      0.00      2.10      0.57      0.00    82.86
09:10:01  IST    all    15.64      0.01      2.30      0.57      0.00    81.49
09:20:01  IST    all    16.32      0.00      2.43      0.61      0.00    80.64
09:30:01  IST    all    15.15      0.00      2.18      0.54      0.00    82.13
09:40:01  IST    all    15.94      0.00      2.31      0.53      0.00    81.21
09:50:01  IST    all    16.27      0.00      2.43      0.57      0.00    80.73
10:00:01  IST    all    15.19      0.01      2.24      0.54      0.00    82.02
10:10:01  IST    all    15.37      0.00      2.22      0.54      0.00    81.87
10:20:01  IST    all    15.77      0.00      2.27      0.62      0.00    81.34
10:30:01  IST    all    15.80      0.00      2.26      0.63      0.00    81.31
10:40:01  IST    all    16.02      0.00      2.33      0.60      0.00    81.04
10:50:01  IST    all    16.08      0.10      2.34      0.66      0.00    80.82
11:00:01  IST    all    14.85      0.00      2.15      0.57      0.00    82.43

11:00:01  IST    CPU    %user    %nice  %system  %iowait    %steal    %idle
11:10:01  IST    all    15.40      0.00      2.31      0.52      0.00    81.77
11:20:01  IST    all    15.86      0.00      2.29      0.56      0.00    81.29
11:30:01  IST    all    15.54      0.00      2.29      0.59      0.00    81.58
11:40:01  IST    all    15.70      0.01      2.27      0.54      0.00    81.48
11:50:01  IST    all    15.81      0.00      2.29      0.77      0.00    81.12
12:00:01  IST    all    16.26      0.00      2.37      0.75      0.00    80.62
12:10:01  IST    all    14.53      0.00      2.04      0.75      0.00    82.68
12:20:01  IST    all    14.98      0.00      2.13      0.51      0.00    82.37
12:30:01  IST    all    16.39      0.01      2.39      0.51      0.00    80.70
12:40:01  IST    all    16.57      0.10      2.41      0.54      0.00    80.39
12:50:01  IST    all    14.42      0.00      2.10      0.65      0.00    82.83
01:00:01  IST    all    16.87      0.00      2.44      0.86      0.00    79.82
01:10:01  IST    all    15.01      0.00      2.22      0.67      0.00    82.09
01:20:01  IST    all    15.13      0.01      2.13      0.49      0.00    82.24
01:30:01  IST    all    16.26      0.00      2.49      0.58      0.00    80.65
01:40:01  IST    all    15.42      0.00      2.22      0.55      0.00    81.80
01:50:01  IST    all    15.60      0.00      2.25      0.86      0.00    81.28
02:00:01  IST    all    14.82      0.00      2.10      0.79      0.00    82.28
02:10:01  IST    all    19.04      0.01      2.52      0.72      0.00    77.72
02:20:01  IST    all    15.42      0.00      2.20      0.75      0.00    81.62
02:30:01  IST    all    15.51      0.00      2.22      0.77      0.00    81.50
02:40:01  IST    all    15.28      0.09      2.26      0.54      0.00    81.82
02:50:01  IST    all    15.96      0.00      2.33      0.68      0.00    81.03
03:00:01  IST    all    16.47      0.00      2.42      0.83      0.00    80.27
03:10:01  IST    all    16.25      0.01      2.39      0.79      0.00    80.57
03:20:01  IST    all    16.27      0.00      2.39      0.88      0.00    80.46
03:30:02  IST    all    17.21      0.00      2.58      0.68      0.00    79.53
03:40:01  IST    all    15.56      0.00      2.22      0.87      0.00    81.35
03:50:01  IST    all    16.05      0.00      2.33      0.90      0.00    80.71
04:00:01  IST    all    16.19      0.01      2.34      0.85      0.00    80.60
04:10:01  IST    all    16.06      0.00      2.34      0.83      0.00    80.76
04:20:02  IST    all    16.80      0.00      2.44      0.75      0.00    80.01
04:30:01  IST    all      8.06      0.00      1.09      0.57      0.00    90.28
04:40:01  IST    all    15.70      0.10      2.26      0.52      0.00    81.43
04:50:01  IST    all    16.19      0.01      2.33      0.53      0.00    80.95
05:00:01  IST    all    15.34      0.00      2.22      0.53      0.00    81.91
05:10:01  IST    all    15.89      0.00      2.28      0.54      0.00    81.30
05:20:01  IST    all    15.75      0.00      2.28      0.54      0.00    81.43
05:30:01  IST    all    15.95      0.00      2.35      0.68      0.00    81.02
05:40:01  IST    all    16.17      1.63      2.40      0.55      0.00    79.25
05:50:01  IST    all    17.11      0.01      2.54      0.59      0.00    79.76
06:00:01  IST    all    17.19      0.00      2.55      0.55      0.00    79.71

06:00:01  IST    CPU    %user    %nice  %system  %iowait    %steal    %idle
06:10:01  IST    all    16.83      0.00      2.51      0.65      0.00    80.02
06:20:01  IST    all    16.78      0.00      2.49      0.63      0.00    80.10
06:30:01  IST    all    15.85      0.00      2.35      0.59      0.00    81.20
06:40:01  IST    all    16.74      0.10      2.45      0.55      0.00    80.16
06:50:01  IST    all    15.78      0.00      2.33      0.59      0.00    81.29
07:00:01  IST    all    16.33      0.00      2.45      0.76      0.00    80.45
07:10:01  IST    all    17.40      0.00      2.56      0.83      0.00    79.20
07:20:01  IST    all    17.14      0.00      2.50      0.66      0.00    79.69
07:30:01  IST    all    18.79      0.01      2.76      0.61      0.00    77.83
07:40:01  IST    all    17.23      0.00      2.49      0.62      0.00    79.65
07:50:01  IST    all    18.18      0.00      2.66      0.63      0.00    78.53
08:00:01  IST    all    17.46      0.00      2.50      0.58      0.00    79.45
08:10:01  IST    all    17.51      0.00      2.59      0.75      0.00    79.14
08:20:01  IST    all    16.55      0.01      2.42      0.78      0.00    80.25
08:30:01  IST    all    16.15      0.00      2.32      0.56      0.00    80.97
08:40:01  IST    all    17.59      0.00      2.50      0.72      0.00    79.18
Average:        all    12.60      0.02      1.78      0.49      0.00    85.11 



--------------------------------------------------------------------------------------------


hardware info

Code:

root@some-network [~/scripts]# cat /proc/cpuinfo
processor        : 0
vendor_id        : GenuineIntel
cpu family        : 6
model                : 26
model name        : Intel(R) Xeon(R) CPU          W3530  @ 2.80GHz
stepping        : 5
microcode        : 0x11
cpu MHz                : 2801.000
cache size        : 8192 KB
physical id        : 0
siblings        : 8
core id                : 0
cpu cores        : 4
apicid                : 0
initial apicid        : 0
fpu                : yes
fpu_exception        : yes
cpuid level        : 11
wp                : yes
flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 5600.32
clflush size        : 64
cache_alignment        : 64
address sizes        : 36 bits physical, 48 bits virtual
power management:

processor        : 1
vendor_id        : GenuineIntel
cpu family        : 6
model                : 26
model name        : Intel(R) Xeon(R) CPU          W3530  @ 2.80GHz
stepping        : 5
microcode        : 0x11
cpu MHz                : 2801.000
cache size        : 8192 KB
physical id        : 0
siblings        : 8
core id                : 1
cpu cores        : 4
apicid                : 2
initial apicid        : 2
fpu                : yes
fpu_exception        : yes
cpuid level        : 11
wp                : yes
flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 5600.32
clflush size        : 64
cache_alignment        : 64
address sizes        : 36 bits physical, 48 bits virtual
power management:

processor        : 2
vendor_id        : GenuineIntel
cpu family        : 6
model                : 26
model name        : Intel(R) Xeon(R) CPU          W3530  @ 2.80GHz
stepping        : 5
microcode        : 0x11
cpu MHz                : 2801.000
cache size        : 8192 KB
physical id        : 0
siblings        : 8
core id                : 2
cpu cores        : 4
apicid                : 4
initial apicid        : 4
fpu                : yes
fpu_exception        : yes
cpuid level        : 11
wp                : yes
flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 5600.32
clflush size        : 64
cache_alignment        : 64
address sizes        : 36 bits physical, 48 bits virtual
power management:

processor        : 3
vendor_id        : GenuineIntel
cpu family        : 6
model                : 26
model name        : Intel(R) Xeon(R) CPU          W3530  @ 2.80GHz
stepping        : 5
microcode        : 0x11
cpu MHz                : 2801.000
cache size        : 8192 KB
physical id        : 0
siblings        : 8
core id                : 3
cpu cores        : 4
apicid                : 6
initial apicid        : 6
fpu                : yes
fpu_exception        : yes
cpuid level        : 11
wp                : yes
flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 5600.32
clflush size        : 64
cache_alignment        : 64
address sizes        : 36 bits physical, 48 bits virtual
power management:

processor        : 4
vendor_id        : GenuineIntel
cpu family        : 6
model                : 26
model name        : Intel(R) Xeon(R) CPU          W3530  @ 2.80GHz
stepping        : 5
microcode        : 0x11
cpu MHz                : 2801.000
cache size        : 8192 KB
physical id        : 0
siblings        : 8
core id                : 0
cpu cores        : 4
apicid                : 1
initial apicid        : 1
fpu                : yes
fpu_exception        : yes
cpuid level        : 11
wp                : yes
flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 5600.32
clflush size        : 64
cache_alignment        : 64
address sizes        : 36 bits physical, 48 bits virtual
power management:

processor        : 5
vendor_id        : GenuineIntel
cpu family        : 6
model                : 26
model name        : Intel(R) Xeon(R) CPU          W3530  @ 2.80GHz
stepping        : 5
microcode        : 0x11
cpu MHz                : 2801.000
cache size        : 8192 KB
physical id        : 0
siblings        : 8
core id                : 1
cpu cores        : 4
apicid                : 3
initial apicid        : 3
fpu                : yes
fpu_exception        : yes
cpuid level        : 11
wp                : yes
flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 5600.32
clflush size        : 64
cache_alignment        : 64
address sizes        : 36 bits physical, 48 bits virtual
power management:

processor        : 6
vendor_id        : GenuineIntel
cpu family        : 6
model                : 26
model name        : Intel(R) Xeon(R) CPU          W3530  @ 2.80GHz
stepping        : 5
microcode        : 0x11
cpu MHz                : 2801.000
cache size        : 8192 KB
physical id        : 0
siblings        : 8
core id                : 2
cpu cores        : 4
apicid                : 5
initial apicid        : 5
fpu                : yes
fpu_exception        : yes
cpuid level        : 11
wp                : yes
flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 5600.32
clflush size        : 64
cache_alignment        : 64
address sizes        : 36 bits physical, 48 bits virtual
power management:

processor        : 7
vendor_id        : GenuineIntel
cpu family        : 6
model                : 26
model name        : Intel(R) Xeon(R) CPU          W3530  @ 2.80GHz
stepping        : 5
microcode        : 0x11
cpu MHz                : 2801.000
cache size        : 8192 KB
physical id        : 0
siblings        : 8
core id                : 3
cpu cores        : 4
apicid                : 7
initial apicid        : 7
fpu                : yes
fpu_exception        : yes
cpuid level        : 11
wp                : yes
flags                : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 5600.32
clflush size        : 64
cache_alignment        : 64
address sizes        : 36 bits physical, 48 bits virtual
power management:


memory info


Code:

root@some-network [~/scripts]# cat /proc/meminfo
MemTotal:      24737800 kB
MemFree:        16371108 kB
Buffers:          788680 kB
Cached:          4937140 kB
SwapCached:            0 kB
Active:          5279624 kB
Inactive:        1600700 kB
Active(anon):    1157900 kB
Inactive(anon):  116256 kB
Active(file):    4121724 kB
Inactive(file):  1484444 kB
Unevictable:          0 kB
Mlocked:              0 kB
SwapTotal:        525308 kB
SwapFree:        525308 kB
Dirty:              1004 kB
Writeback:            0 kB
AnonPages:      1153496 kB
Mapped:          166080 kB
Shmem:            120240 kB
Slab:            1254664 kB
SReclaimable:    995104 kB
SUnreclaim:      259560 kB
KernelStack:        3104 kB
PageTables:        11188 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    12894208 kB
Committed_AS:    3086672 kB
VmallocTotal:  34359738367 kB
VmallocUsed:      326396 kB
VmallocChunk:  34359409652 kB
HardwareCorrupted:    0 kB
DirectMap4k:        5632 kB
DirectMap2M:    25151488 kB

I just want to know is there any particular reason for sudden increase in mysql load?
Thank you guys.

Webmail Issue

$
0
0
I have a client who is having difficulty logging into web mail. When he enters his log info, he is redirected back to the login screen with the email address and password blanked out. I can log in using his info form my location just fine. I have tried with the firewall disabled to rule out that as the issue and that has no effect on the situation. Any ideas on what might be going on here?

How to check for imap?

$
0
0
Hi all,

I am just in the process of setting up WHMCS and am trying to setup my support ticketing system. But apparently I need imap for this to work....

Following a tutorial I created a new file phpinfo.php but received a security warning saying I do not have permission, permission disabled.

Does anyone know of another way I can check to see if I have imap installed on my cPanel?

Thanks :)

Spam bounces in Exim queue

$
0
0
Hi, the Exim queue in my VPS is currently being filled with thousands of bounced emails per minute. I found an old formmail script in a client's website and removed it, I am sure this was the cause of the spam, however even after deleting the whole queue (which took forever) there are still all these bounced messages being generated. They all look like this:

Headers spool file
1WQh2m-0007mQ-0w-H
mailnull 47 12
<>
1395337576 0
-ident mailnull
-received_protocol local
-body_linecount 143
-max_received_linelength 110
-allow_unqualified_recipient
-allow_unqualified_sender
-frozen 1395337576
-localerror
XX
1
otlichnaya.idea@mail.ru

159P Received: from mailnull by server1.webrightnow.co.uk with local (Exim 4.82)
id 1WQh2m-0007mQ-0w
for otlichnaya.idea@mail.ru; Thu, 20 Mar 2014 17:46:16 +0000
045 X-Failed-Recipients: les-tech.ro@les-tech.ru
029 Auto-Submitted: auto-replied
069F From: Mail Delivery System <Mailer-Daemon@server1.webrightnow.co.uk>
028T To: otlichnaya.idea@mail.ru
059 Subject: Mail delivery failed: returning message to sender
058I Message-Id: <E1WQh2m-0007mQ-0w@server1.webrightnow.co.uk>
038 Date: Thu, 20 Mar 2014 17:46:16 +0000
Data spool file
1WQh2m-0007mQ-0w-D
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

les-tech.ro@les-tech.ru
Domain geodesigns.co.uk has exceeded the max emails per hour (375/300 (125%)) allowed. Message discarded.

------ This is a copy of the message, including all the headers. ------

Return-path: <otlichnaya.idea@mail.ru>
Received: from [91.235.7.37] (port=51282 helo=91.235.7.37)
by server1.webrightnow.co.uk with esmtpa (Exim 4.82)
(envelope-from <otlichnaya.idea@mail.ru>)
id 1WQh2l-0007jC-OD
for les-tech.ro@les-tech.ru; Thu, 20 Mar 2014 17:46:15 +0000
Message-ID: <83D941273583465C9AA30C86CCAE77CF@91.235.7.37>
From: =?windows-1251?B?zODw4+Dw6PLg?= <otlichnaya.idea@mail.ru>
To: <les-tech.ro@les-tech.ru>
Subject: =?windows-1251?B?y/7k7Ojr4CwgxfHr6CDi+yDw5eDr/O3uIObl?=
=?windows-1251?B?6+Dl8uUg6+Xj6u4g5+Dw4OHu8uDy/CAxMs5P?=
=?windows-1251?B?zvAsIA==?=
Date: Thu, 20 Mar 2014 21:46:05 +0400


The "X-Failed-Recipients" are all different but the "envelope-from" are all the same three or four.

Is it possible that even though I have removed the cause of the outgoing spam, previously undelivered messages are still causing problems, or are these new emails being sent, which means I still have a source of spam in that account? I don't understand enough about the way Exim works to know the answer.

Thanks!

Restoring Email from backup questions

$
0
0
Hello,

I recently had a client tell me that they are missing all emails from before January. This is when they switched web hosts. Fortunately, I have a full backup of each month before they switched web hosts and I am thinking that I can restore her older emails from before January by using Decembers backup. I have searched the forums and found out how to do this and I found her username in the backups.

My questions are:

Will restoring her email account by transferring her username folder delete all her emails after January? I am just looking to restore the lost emails before January and keep the existing.

Second, her account folder looks like a shortcut to another mail folder. When I click on it it takes me to another folder .username@domain.com. Is this the folder I transfer/replace? It appears that way as the size of the entire contents of the folder is 58.4mb.

cpsrvd is down

$
0
0
cpsrvd is down.

# /scripts/checkperlmodules
scripts/checkperlmodules is deprecated. cPanel no longer uses /usr/bin/perl and provides its perl modules as a set of RPMs. For more information, see cPanel & WHM 11.36 Release Notes

tailwatchd_log file:

[1595] [2014-03-20 21:02:51 +0200] [Cpanel::TailWatch] [1595] [2014-03-20 21:02:51 +0200] [Cpanel::TailWatch] tailwatch exiting on SIGTERM
[1595] [2014-03-20 21:02:51 +0200] [Cpanel::TailWatch] tailwatch exiting on SIGTERM
[2252] [2014-03-20 21:02:51 +0200] [Cpanel::TailWatch] [INFO] Opened /usr/local/cpanel/logs/tailwatchd_log in append mode
[2252] [2014-03-20 21:02:51 +0200] [main] [STOP Ok] 1595
[2252] [2014-03-20 21:02:51 +0200] [Cpanel::TailWatch::Utils::Stop] [2252] [2014-03-20 21:02:51 +0200] [main] Current process '1595' stopped
[2255] [2014-03-20 21:02:52 +0200] [Cpanel::TailWatch] [INFO] Opened /usr/local/cpanel/logs/tailwatchd_log in append mode
[2255] [2014-03-20 21:02:52 +0200] [Cpanel::TailWatch] [INFO] Configured to conserve memory; skipped load of Linux::Inotify2.
[2255] [2014-03-20 21:02:54 +0200] [Cpanel::TailWatch] The tailwatchd driver 'Cpanel::TailWatch::JailManager' is not enabled.
[2255] [2014-03-20 21:02:54 +0200] [Cpanel::TailWatch::Eximstats] Loading email sending limits from 1395342000 - 1395345600
[2279] [2014-03-20 21:02:55 +0200] [main] [START] 2279 1395342175
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] /var/log/maillog opened with inode 263313
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] /var/log/exim_mainlog opened with inode 270189
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Restored /var/log/maillog (size:46971) to 45989 (requested 45989)
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Restored /var/log/exim_mainlog (size:60827) to 60827 (requested 60827)
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Caught up /var/log/maillog to 46971
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Reading back thirty lines of /var/log/maillog starting at 30587
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Restoring /var/log/maillog to catch up position 46971
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Restored /var/log/maillog to position 46971
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Caught up /var/log/exim_mainlog to 60827
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Reading back thirty lines of /var/log/exim_mainlog starting at 44443
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Restoring /var/log/exim_mainlog to catch up position 60827
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch] [INFO] Restored /var/log/exim_mainlog to position 60827
[2279] [2014-03-20 21:02:55 +0200] [Cpanel::TailWatch::ChkServd] [INFO] Opening /var/log/chkservd.log in append mode

Block authentication emails within a specified interval of time.

$
0
0
I need the account authentication email from a specific domain to be blocked at a certain time during the day. This is to prevent users from using the email accounts outside of working hours.

Sub dominios

$
0
0
Hola,

Estoy tratando de crear subdominios para un dominio, pero quiero que cuando éstos carguen me deriven a dominio.com/pepe

Por ejemplo yyy.dominio.com > dominio.com/pepe

Agregué una wildcard en las DNS: * IN A domain_ip

Y mediante apache estuve tratando mediante server alias pero no me da resultado.

Consigo que yyy.dominio.com muestre dominio.com pero no dominio.com/pepe

me pueden ayudar?

gracias.-

Habilitar o acesso ao cPanel/WHM através de domínio pois estou atrás de um firewall

En busca de soporte para mi whm VPS optimized3

$
0
0
Hola, buen día. Les comento cual es mi situación. Soy de Argentina y estoy teniendo problemas en mi whm con respecto a spammers y quiero solucionar eso ahora y para futuro no tener mas problemas con esos scripts que les entran a mis pocos clientes que tengo. Y yo no entiendo mucho sobre tema scripts que hacen esas cosas. He buscado muchas guías pero la mayorías son incompletas, entonces recurrí a mi soporte donde alquilo el VPS que es MyHosting.com y pedí ayuda para que me solucionen el problema. Me derivaron a su soporte personalizado para que pida presupuesto para solucionar mi problema y me pasaron un monto de $450USD. Yo dije ¿WHAAAT? el monto es mas de la mitad de sueldo de mi trabajo.
Entonces lo que estoy buscando es a alguien que tenga bastante nivel y experiencia en el manejo de WHM para contar con un soporte y que no sea tan caro así. O recomendación de alguna empresa y si es en español mejor todavía.
Espero prontas respuestas.
Saludos!!!

SpamAssassin Scoring

$
0
0
Please help me in understanding SpamAssassin and BoxTrapper a little better.

I am getting a lot of spam email don't understand it. I have SpamAssassin set at 5 and BoxTrapper set to 9.9. Below is the header from a typical header which shows a spam score of 24, spam status of no, score = 2.4.

1) I don't understand the difference between the 2 spam numbers. Which numbers do SpamAssassin use and which numbers do BoxTrapper use?
2) The X Ham report in the header shows " has identified this incoming email as possible spam" so again why did I get the email?

Code:

X-Spam-Status: No, score=2.4
X-Spam-Score: 24
X-Spam-Bar: ++
X-Ham-Report: Spam detection software, running on the system "ecbiz124.inmotionhosting.com", has  identified this incoming email as possible spam.  The original message  has been attached to this so you can view it (if it isn't spam) or label  similar future email.  If you have any questions, see  root\@localhost for details.

cant change dns in go daddy

$
0
0
Hi all

hoping someone an help me please, i have a reseller hosting acct with hostgator and a clients website i have just finished is registered at go daddy.

I have created a new account in WHM and believe i have everything set up correctly at that end but when i go into the clients account on godaddy i find i cant change the nameservers.

When i add the custom nameservers : ns1.ourweb-hosting.info ns2.ourweb-hosting.info i get errors saying i must enter a registered nameserver. I have changed DNS settings just fine on another website so i dont understand the issue, can anyone explain what i need to do?

thanks

WHM cpu load warning symbol even tho not over loaded

$
0
0
I am running cPanel/WHM on an OpenVZ vps with 3 cores 4GB ram,
for some reason when the VPS gets above 1.00 load it shows a warning symbol on server status.

For example - http://puu.sh/7DT25/001f237198.png
Do you know why it would do this when the server is not over load as it can go up to 3.00 (3 cores)?
Thanks, Matt.

Verb Tampering Issue

$
0
0
Good afternoon,

First of all sorry of possible mistakes on my communication.

My cPanel website has been tested by an Audit Company in order to gain a license for our bussiness.

This test check outs different security vulnerabilities that a website or a server has got.

Sadly the report was not succesful. The weird thing is that the high risk issues appeared on the subdomain "webmail".

This subdomain is use in cPanel for accessing to webmail.

The High Risk details are these

===================================
References Bypassing Web Authentication and Authorization with HTTP Verb Tampering Affected items
Details / No details are available.

POST / HTTP/1.1 Cookie: webmailrelogin=no; webmailsession=%3aAfxTY3P1CSCi6H20_4Kt6ojyiSLUJci2WW8HWP2gnrh2cEOJOjjL0VYoj32xeHoT%2ca8b a84b5f287fd149c4fba97a79d4befc866004160b89a5bc970e73844df8208; session_locale=pl Host: webmail.panasonicproclub.com Connection: Keep-alive Accept-Encoding: gzip,deflate User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) Acunetix-Product: WVS/8.0 (Acunetix Web Vulnerability Scanner - NORMAL) Acunetix-Scanning-agreement: Third Party Scanning PROHIBITED Acunetix-User-agreement: http://www.acunetix.com/wvs/disc.htm Accept: */* Request headers
Details /login/ No details are available.

POST /login/ HTTP/1.1 Cookie: webmailrelogin=no; webmailsession=%3aAfxTY3P1CSCi6H20_4Kt6ojyiSLUJci2WW8HWP2gnrh2cEOJOjjL0VYoj32xeHoT%2ca8 Request headers 4Acunetix Website Audit
ba84b5f287fd149c4fba97a79d4befc866004160b89a5bc970e73844df8208; session_locale=pl Host: webmail.panasonicproclub.com Connection: Keep-alive Accept-Encoding: gzip,deflate User-Agent: Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) Acunetix-Product: WVS/8.0 (Acunetix Web Vulnerability Scanner - NORMAL) Acunetix-Scanning-agreement: Third Party Scanning PROHIBITED Acunetix-User-agreement: http://www.acunetix.com/wvs/disc.htm Accept: */*
=================================

There are the same, because going to Webmail on cPanel is the same if you put nothing or if you added /login.

Some ideas of if really exists problems of Verb Tampering on the Webmail Login access?
Is there a way to fix it, or to demonstrate that cPanel is secure in this task to show it to my business?

The cPanel version actually is WHM 11.42.0 (build 22)

And the server is a CENTOS 6.5.

Thanks in advance.

Email Backups

$
0
0
Just recently had to have my VPS moved to a new server thanks to the lovely ebury virus

Anyway, one of the people who has a domain on my server asked me if it is possible to do a backup of his emails so if a transition is ever needed int he future he will not lose email data.

Not looking to backup just the email account but the actual email messages on the server.

Is that something that is possible in cpanel? I see the backup option of the home directory but see nothing pertaining to actual email messages.

Unable to with WHM user

$
0
0
Hello,

I have root account & when i try to reset reseller user password but its now working his whm with reset password.

Can please provide us the solution.

Thank You

SSL Certificate

$
0
0
Just wanted to clarify

Had to move to a new server and since then every time me (or someone with a domain on my server) goes to their cpanel or webmail a security warning appears telling them it is an untrusted site.

My server company told me I must get an SSL Certificate to stop this from happening. I looked around and godaddy offers SSL certificate but they have a single domain and for more of a price they offer one for multiple domains.

If I am to install on my server itself can I go ahead with just the single domain? and I assume I would install it in the WHM for my server
Viewing all 5759 articles
Browse latest View live