by Perk1z on May 23, 2008
root@titik [/usr/local/nagios/etc]# /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
root@titik [/usr/local/nagios/etc]# tail -f /var/log/messages
May 23 22:19:57 titik nrpe[3306]: Starting up daemon
May 23 22:19:57 titik nrpe[3306]: Network server bind failure (99: Cannot assign requested address)
Solusi :
edit /usr/local/nagios/etc/nrpe.conf
correct server_address
and try again
root@titik [/usr/local/nagios/etc]# /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
root@titik [/usr/local/nagios/etc]# tail -f /var/log/messages
May 23 22:40:53 titik nrpe[22116]: Starting up daemon
May 23 22:40:53 titik nrpe[22116]: Listening for connections on port 5666
May 23 22:40:53 titik nrpe[22116]: Allowing connections from: 64.233.187.99
Popularity: 4% [?]
by Perk1z on May 12, 2008
Operating System : MS WIndows Server 2003 Standart Edition
Plesk Version : 7.5.6
The operation you were performing failed. You can retry the operation with or without changing its parameters. You may also want to report this problem to our support so that we could help you as soon as possible.
Backup process has failed for domain ‘titik.org’
Item has already been added. Key in dictionary: “username@domainametitik.org” Key being added: “username@domainnametitik.org”
———————- Debug Info ——————————-
0: C:\Program Files\SWsoft\Plesk\admin\htdocs\domains\backup\download.php:145 psaerror(string “Backup process has failed for domain ‘titik.org’
Item has already been added. Key in dictionary: “username@domainametitik.org” Key being added: “username@domainametitik.org”
“)
Solution :
Most probably this issue is related to Plesk database inconsistency. Try to login to MySQL and correct database recoreds in the following way:
Login to Mysql :
C:\Program Files\SWsoft\Plesk\Databases\MySQL\bin>mysql.exe -uadmin -p"pleskadminpasswd" -P8306 psa
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 816 to server version: 4.1.12-nt
Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql>
This query should return a several records with the same value ‘mailname’. You should remove duplicate records manually:
mysql> SELECT * from psa.sa_conf where mailname like 'username@domainametitik.org';
+——+————————–+————-+—————-+————–
-+————-+
| id | mailname | flt_enabled | rw_subject_tag | hits_required
| spam_action |
+——+————————–+————-+—————-+————–
-+————-+
| 1471 | username@domainametitik.org | | *****SPAM***** | 7
| save |
| 1472 | username@domainametitik.org | | *****SPAM***** | 7
| save |
+——+————————–+————-+—————-+————–
-+————-+
2 rows in set (0.08 sec)
mysql> delete from psa.sa_conf where id = ‘1471′;
Query OK, 1 row affected (0.44 sec)
Do not forget to left the original record in this table as this is the only one that should not be erased
Popularity: 8% [?]
by Perk1z on February 14, 2008
Exim Error Log :
2008-02-12 14:37:04 1JOphQ-0007td-6w <= nobody@titik.org U=nobody P=local S=629 T=”Testing Kirim Email”
2008-02-12 14:37:04 cwd=/var/spool/exim 3 args: /usr/sbin/exim -Mc 1JOphQ-0007td-6w
2008-02-12 14:37:04 1JOphQ-0007td-6w ** me@titik.org R=checkspam2: Gid 99 is not permitted to relay mail, or has directly called /usr/sbin/exim instead of /usr/sbin/sendmail.
2008-02-12 14:37:04 1JOphQ-0007td-6w ** me@titik.org R=checkspam2: Gid 99 is not permitted to relay mail, or has directly called /usr/sbin/exim instead of /usr/sbin/sendmail.
2008-02-12 14:37:04 cwd=/var/spool/exim 7 args: /usr/sbin/exim -t -oem -oi -f <> -E1JOphQ-0007td-6w
Try :
1. Check in WHM under Tweak Settings(under Email) if the box for “Prevent the user “nobody” from sending out mail to remote addresses ” is checked, if it is uncheck that box and click save at the bottom of the page.
GID 99 is for apache(username=nobody) .
2. check and make sure that you have the domain name listed in the file “/etc/localdomains ” to allow relaying of mails.
Popularity: 53% [?]
by Perk1z on February 6, 2008
[root@pisangraja ~]# /usr/local/etc/rc.d/apache22 restart
Performing sanity check on apache22 configuration:
httpd: apr_sockaddr_info_get() failed for pisangraja.jc
httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
Syntax OK
Stopping apache22.
Waiting for PIDS: 11416.
Performing sanity check on apache22 configuration:
httpd: apr_sockaddr_info_get() failed for pisangraja.jc
httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
Syntax OK
Starting apache22.
httpd: apr_sockaddr_info_get() failed for pisangraja.jc
httpd: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
Just fix your hosts file and httpd conf
1. Edit hosts file :
[root@pisangraja ~]# hostname
pisangraja.jc
[root@pisangraja ~]# vi /etc/hosts
::1 localhost
127.0.0.1 localhost
192.168.12.200 pisangraja
192.168.12.200 pisangraja.jc
2. Edit httpd conf
[root@pisangraja ~]# vi /usr/local/etc/apache22/httpd.conf
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn’t have a registered DNS name, enter its IP address here.
#
ServerName www.pisangraja.jc:80
[root@pisangraja ~]# /usr/local/etc/rc.d/apache22 restart
Performing sanity check on apache22 configuration:
Syntax OK
apache22 not running? (check /var/run/httpd.pid).
Performing sanity check on apache22 configuration:
Syntax OK
Starting apache22.
DOne
Popularity: 56% [?]
by Perk1z on November 25, 2007
Error :
Warning: mysql_connect() [function.mysql-connect]: Client does not support authentication protocol requested by server; consider upgrading MySQL client in /home/path/public_html/includes//adodb-mysql.inc.php on line 355
Info :
dbuser=dbuser
dbpasswd=mypassword
Solution : Update your mysql user
mysql> UPDATE mysql.user SET password = OLD_PASSWORD(’mypassword’) WHERE user=’dbuser’ AND host=’localhost’;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> quit
Reference :
Google Search
Popularity: 46% [?]
by Perk1z on September 5, 2007
Error after upgrade cPanel :
“Not Acceptable An appropriate representation of the requested resource /id/administrator/index2.php could not be found on this server.”
Solution :
At the root of your CMS , locate the file .htaccess and add a line “SecFilterEngine off” without the quotes.
Reference :
http://www.contractwebdevelopment.com/
http://www.raymond.cc/
Popularity: 12% [?]
by Perk1z on June 30, 2007
Problems
*Â file asp “The system cannot find the file specified”
* Error ekseskusi file asp
Error :
Install Urlscan Security , lupa config urlscan.ini
Solusi :
Edit urlscan.ini
[AllowExtensions]
;
; Extensions listed here are commonly used on a typical IIS server.
;
; Note that these entries are effective if “UseAllowExtensions=1″
; is set in the [Options] section above.
;
.asp
[DenyExtensions]
;
; Extensions listed here either run code directly on the server,
; are processed as scripts, or are static files that are
; generally not intended to be served out.
;
; Note that these entries are effective if “UseAllowExtensions=0″
; is set in the [Options] section above.
;
; Also note that ASP scripts are denied with the below
; settings. If you wish to enable ASP, remove the
; following extensions from this list:
;Â Â Â .asp
;Â Â Â .cer
;Â Â Â .cdx
;Â Â Â .asa
Popularity: 9% [?]
by Perk1z on February 4, 2007
Copy an account from another serverÂ
Pesan error:
Packaging the account… Done
Transfer Error
The remote server didn’t report a correct md5sum of the archive. Please ensure you selected the correct type of remote serverÂ
Mesin:
Cpanel/WHM
WHM 10.8.0 cPanel 10.9.0-S35Â
RedHat Enterprise 4 i686 - WHM X v3.1.0
Solusi:
1) Login root SSH
2) Jalankan /scripts/pkgacct username (ganti username dengan account username)
3) Pastikan proses pkgacct selesai.
4) cd /home kemudian ls untuk melihat file. Seharusnya seperti cpmove-username.tar.gz.
5) Jika /home/cpmove-username.tar.gz tidak ada tetapi anda melihat cpmove-username-split kemudian jalankan scripts/pkgacct kembali.
6) Ulangi proses transfer account melalui WHM, proses tersebut menghasilkan md5sum yang baru dan seharusnya berhasil.
7) Jika belum berhasil juga, copy file /home/cpmove-username.tar.gz ke user directory cp cpmove-username.tar.gz /home/username/public_html
(Remote Machine) Login root ssh: wget ipaddress/~username/cpmove-username.tar.gz
9) (Remote Machine) mv cpmove-username.tar.gz /home
10) (Remote Machine) Login WHM dibawah menu Backup, click Restore a Full Backup/cpmove file
11) Isi username dan click restore. atau /scripts/restorepkg username.
Popularity: 8% [?]
by Perk1z on January 27, 2007
Pesan error dibawah muncul jika quota space hosting anda full atau out of space. Silahkan delete file² yang tidak diperlukan, setelah itu logout dan login kembali. Jika belum berhasil, silahkan kontak pengelola hosting anda untuk menghapusnya atau bisa juga upgrade hosting anda ke paket yang lebih besar.
|
ERROR:
|
|
ERROR: Could not complete request.
Query: COPY 17:23,32,59,503:504,509,511:513 “INBOX.Trash”
Reason Given: [ALERT] COPY failed - no write permission or out of disk space.
|
|
ERROR:
|
|
ERROR: Could not complete request.
Query: CREATE “INBOX.Drafts”
Reason Given: Cannot create this folder.
|
Popularity: 7% [?]
by Perk1z on December 5, 2006
Fatal error: Call to undefined function: populate_options() in /home/dodol/public_html/wordpress/wp-admin/install.php on line 142
Solusi :
Silahkan upload ulang file(file2) yang terbaru dari wordpress terutama yang berada di folder wp-admin.Karena ada kemungkinan gagal upload saat upgrade wordpress anda.
Popularity: 7% [?]