Pada postingan ini, kita akan membahas cara menghapus atau menghentikan akun cPanel menggunakan terminal Linux / CLI (antarmuka baris perintah).
Hapus / akhiri akun cPanel dari baris perintah
Dalam versi perangkat lunak cPanel yang lebih lama, untuk mengakhiri akun cPanel Anda perlu menjalankan skrip ini:
/scripts/killacct
atau
/usr/local/cpanel/scripts/killacct
Sintaks yang tepat untuk menghapus akun cpanel di cPanel versi lama adalah:
/scripts/killacct username
Namun, itu tidak berfungsi pada rilis cPanel yang diperbarui.
Cara mengakhiri akun cPanel pada versi cPanel terbaru
Pada versi cPanel terbaru, skrip lama tidak berfungsi lagi, dan Anda perlu menggunakan skrip 'removeacct' yang baru:
/scripts/removeacct
atau
/usr/local/cpanel/scripts/removeacct
Sintaks yang tepat untuk menghapus akun cpanel menggunakan baris perintah adalah:
/scripts/removeacct username
Contoh keluaran:
[[email protected]:~] /scripts/removeacct cptips --force Running pre removal script (/usr/local/cpanel/scripts/prekillacct)......Done Collecting Domain Name and IP......Done Locking account and setting shell to nologin......Done Removing Sessions.........Done Killing all processes owned by user......Done Removing Suspended Info.........Done Removing Web Logs......Done Removing Bandwidth Files......Done Removing any unneeded pending interface locks......Done Removing Email Sending Limits Cache......Done Removing DKIM keys......Done Removing Crontab......Done Removing IPv6......Done Removing external authentication links …......Done Running AutoSSL account deletion logic …......Done Removing domain TLS resources …......Done Removing HTTP Virtual Hosts......Done Removing ftp Virtual Hosts......Done Removing user's web content directory symlinks......Done Removing MySQL databases and users......Done Revoking MySQL Privs.......Done Removing PostgreSQL databases and users......Done Removing Two-Factor Authentication entries..........Done Removing User & Group..........Done Removing DNS Entries......Done Removing Email Setup......Done Removing mailman lists......Done Updating Databases......Done Removing bandwidth limits......Done Removing Counter Data......Done Adding IP back to the IP address pool......Done Removing user's cPanel Databases & Updating......Done Reloading Services......Done Removing mail and service configs......Done Sending Contacts......Done Updating internal databases......Done Running post removal scripts (/usr/local/cpanel/scripts/legacypostkillacct, /usr/local/cpanel/scripts/postkillacct)......Done Account Removal Complete!!!......Done User: cptips Domain: nixcp.com Removed the following non-SSL virtual hosts: nixcp.com Removed the following SSL virtual hosts: Listing MySQL dbs for removal. Fetching MySQL DB Owner information. Successnixcp.com => deleted from server. Removing /etc/valiases/nixcp.com System has 23 free ips. cptips account removed [[email protected]:~]
Sekarang Anda tahu cara mengakhiri akun cpanel dari terminal linux / baris perintah dengan satu perintah. Catatan saya lulus – paksa untuk menghindari konfirmasi (ya atau tidak) saat menjalankan proses.
Bagaimana cara menghentikan beberapa akun cPanel dari baris perintah?
Anda dapat menggunakan perulangan for, misalnya:
for cpuser in user1 user2 user3; do /scripts/removeacct $cpuser --force; done
Bagaimana cara menghentikan semua akun cpanel dari baris perintah?
Anda dapat menghapus/mengakhiri semua akun cpanel dari server dengan menjalankan for loop terhadap direktori /var/cpanel/users, contoh:
cd /var/cpanel/users for cpuser in *; do /scripts/removeacct $cpuser --force; doneCara menghapus / mengakhiri akun cPanel menggunakan terminal Linux terakhir diubah:7 Februari 2017 oleh Esteban Borges