cPanel Update (upcp) Is Already Running Problem CPanel Update (upcp) Problema este deja în execuţie
cPanel web hosting control panel has upcp update script that automatically updates cPanel software. CPanel gazduire web panoul de control a upcp script de actualizare care CPanel automat, actualizările de software. upcp script is scheduled to run once a day as a cron job, and once the update task is completed, crontab will automatically send an notification email to administrator or webmaster. upcp script-ul este programat să ruleze o dată pe zi, ca o acţiune de cron, o dată de actualizare şi de sarcină este completat, crontab va trimite automat un email de notificare de la administrator sau webmaster. Sometimes, however, the following error message will be sent instead. Uneori, totuşi, următorul mesaj de eroare va fi trimis în loc.
cPanel Update (upcp) is already running. CPanel Update (upcp) este deja în derulare. Please wait for the previous upcp to complete, or kill off all upcp processes and try again. Vă rugăm să aşteptaţi pentru upcp precedent pentru a finaliza, sau omor upcp de pe toate procesele şi încercaţi din nou. You may wish to use ‘–force’ at /scripts/upcp line 48. Poate doriţi să utilizaţi "-vigoare-la / scripts / upcp linia 48.
or sau
cPanel Update (upcp) is already running. CPanel Update (upcp) este deja în derulare. Please wait for the previous upcp to complete, or kill off all upcp processes and try again. Vă rugăm să aşteptaţi pentru upcp precedent pentru a finaliza, sau omor upcp de pe toate procesele şi încercaţi din nou. You may wish to use ‘–force’ Poate doriţi să utilizaţi "-vigoare"
The error message above may also appear when users try to update cPanel software manually by clicking on “Update Server Software” link under “Software” section in cPanel WebHost Manager (WHM). Mesajul de eroare de mai sus poate apărea, de asemenea, atunci când utilizatorii încearcă să CPanel actualizare software-ul manual, făcând clic pe "Actualizare Software a Server-ului" link-ul de sub "Software" din CPanel webhost Manager (WHM). The update process initially appears working fine, but fails later on. Procesul de actualizare apare iniţial de lucru bine, dar nu mai târziu. The issue may occur when updating from command shell line using /scripts/upcp too. Problema poate apărea la actualizarea de la linia de comandă shell folosind / scripts / upcp prea.
It’s pretty obvious what’s happening that cause the problem. Este destul de evident ce se întâmplă, care cauzează problema. It’s due to another process is currently still running upcp script. E din cauza la un alt proces este în prezent continuă să fie difuzate upcp script-ul. It shouldn’t be, as most upcp update won’t take more than a few minutes. Nu ar trebui să fie, ca cele mai multe reactualizare upcp nu va dura mai mult de câteva minute. To solve the problem, simply kill and terminate any unterminated or defunct upcp process. Pentru a rezolva problema, pur şi simplu ucide şi încetarea oricărei unterminated sau defunct upcp proces.
To kill upcp running process, use the following command to determine the process ID (pid) of the upcp process: Pentru a ucide upcp proces să fie difuzate, utilizaţi următoarea comandă pentru a stabili procesul de identificare (PID) de upcp proces:
ps aux | grep upcp ps aux | grep upcp
You should see a number which represent the pid for upcp in the front (normally second) column. Ar trebui să vedeţi un număr care reprezintă de PID pentru upcp în faţa (în mod normal secunde) coloana. Assuming it’s 88888, then use the following command to send the kill term signal to close upcp task. Presupunând că este 88888, atunci utilizaţi următoarea comandă pentru a trimite un semnal de a ucide termen aproape upcp sarcină.
kill -9 88888 -9 omor 88888
Replacing the ‘88888′ with the pid for upcp. De înlocuire a'88888 'cu PID pentru upcp. Sometimes, upcp appears defunct, and cannot be killed. Uneori, apare upcp defunct, şi nu poate fi ucis. If you’ve never manually ran the upcp script, the problem may be caused by hanged crond daemon that didn’t exit gracefully or simply defunct. Dacă aţi fugit niciodată manual de upcp script-ul, problema poate fi provocată de spânzurat crond daemon, care nu au ieşire cu graţie sau pur şi simplu mort. In this case, try to kill the crond daemon process. În acest caz, încercaţi să-l omoare pe crond daemon proces.
Determine which pid is the crond with this command: Determinaţi care PID este crond cu această comandă:
ps aux | grep crond ps aux | grep crond
Note: In some system, you may have to use CROND (capital) instead of crond. Notă: În unele de sistem, poate fi necesar să utilizaţi CROND (de capital), în loc de crond.
Then kill off with the same command: Atunci ucide cu aceeaşi comandă:
kill -9 <pid> -9 ucide <pid>
After killing crond process, you will have to După uciderea crond proces, va trebui să start crond daemon crond porni daemon again, else all cron jobs won’t run. din nou, mai toate cron de locuri de muncă nu va rula.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANT: Aceasta este o pagină de masina de tradus, care este furnizat "ca atare", fără garanţie. Machine translation may be difficult to understand. Machine traducere poate fi dificil de înţeles. Please refer to Vă rugăm să original English article articol original English whenever possible. ori de câte ori este posibil.
Share and contribute or get technical support and help at Ponderea şi de a contribui sau a obţine asistenţă tehnică şi de a ajuta la My Digital Life Forums Meu digital viaţă forumuri .
Related Articles Articole
- Cannot FTP to Web Host or Server running cPanel/WHM Nu poate să FTP Server Web Gazdă sau execută CPanel / WHM
- Windows Update or Office Update Encounters 0×80070643 Failed Update Error Actualizare Windows sau Actualizare Office de lucruri 0 × 80070643 eşuat Actualizare Eroare
- How to Change Hostname in cPanel Web Host Cum se modifică de gazdă în CPanel Gazdă Web
- How to Add IP Addresses to Server with cPanel WebHost Manager (WHM) Cum se Adauga Adrese IP a server cu CPanel webhost Manager (WHM)
- Auto Delete Forwarded Emails in cPanel Web Host Auto ştergeţi mesaje de poştă electronică transmise în CPanel web gazdă
- cPanel Mail Main Account and Workaround to Disable CPanel Mail principal de cont şi Soluţie Pentru a dezactiva
- cPanel Perl Module PNGgraph Could Not Be Installed Error CPanel perl modul PNGgraph nu a putut fi instalat de eroare
- cPanel Invalid License File After Changing Hostname Error CPanel licenţei de fişier invalid după schimbarea de gazdă eroare
- cPanel Unable or Cannot Start or Restart POP3 Mail Service CPanel Nu poate sau nu poate porni sau a Reporniţi Serviciul de poştă electronică POP3
- cPanel WHM Failed to Receive Status Information From Apache Error CPanel WHM nu a reuşit să primească statutul de informaţii de la Apache eroare


























June 27th, 2008 13:13 June 27th, 2008 13:13
Thank you for this. Vă mulţumim pentru asta. I had 3 dead processes that i needed to kill and this did the trick Am avut 3 mort ca i procedeele necesare pentru a ucide şi a făcut acest truc
September 17th, 2008 15:21 17 septembrie 2008 15:21
[...] cPanel Update (upcp) Is Already Running Problem My Digital Life b [...] CPanel Update (upcp) este deja în execuţie Problema mea Digital Life, b