Symptoms
If an account transfer fails to complete or you abort it, you cannot update cPanel, and this message displays on the "cPanel & WHM Upgrade Blockers" page in WHM:
CONFIG_TEXT: There are active transfers to this server. The system will block updates until those transfers end, or a user aborts them. Please read our Transfer Tool documentation for more information.
Cause
When the system detects unfinished transfers, it does not allow cPanel updates to proceed.
Resolution
Identify the unfinished transfer's session ID:
# /usr/local/cpanel/3rdparty/bin/sqlite3 /var/cpanel/transfer_sessions/whmxfer.sqlite "select sessionid from sessions where state != '100'"
cpthisisatestcopya202607210601035abRemove the session ID from the transfers database:
Note: You will need to replace SESSID in the following command with the output from step 1.
# /usr/local/cpanel/3rdparty/bin/sqlite3 /var/cpanel/transfer_sessions/whmxfer.sqlite "delete from sessions where sessionid = 'SESSID';"
Move aside the update-blocker file:
# mv -v /var/cpanel/update_blocks.config /var/cpanel/update_blocks.config.bak
Identify the unfinished transfer's session ID:
# sqlite3 /var/cpanel/transfer_sessions/whmxfer.sqlite "select sessionid from sessions where state != '100'"
cpthisisatestcopya202607210601035abRemove the session ID from the transfer database:
Note: You will need to replace SESSID in the following command with the output from step 1.
# sqlite3 /var/cpanel/transfer_sessions/whmxfer.sqlite "delete from sessions where sessionid = 'SESSID';"
Move aside the update-blocker file:
# mv -v /var/cpanel/update_blocks.config /var/cpanel/update_blocks.config.bak
Comments
0 comments
Article is closed for comments.