Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Web Hosting


Advertisements:




SuperbHosting.net & Arvixe.com have generously sponsored dedicated servers and web hosting to ensure a reliable and scalable dedicated hosting solution for BigResource.com.







How To Install ASSP On Linux System Without Cpanel?


How to install ASSP on linux system without cpanel.


View Complete Thread with Replies

Sponsored Links:

Related Forum Messages:
ASSP Install Issues.
I followed the tutorial provided here for installing ASSP but am running into a small problem with exim failing on my vps. I am using ConfigServers csf and lfd and didn't know if there was more modifications needed for ASSP.

my exim panic log shows this:

2007-03-12 00:19:39 socket bind() to port 125 for address 127.0.0.1 failed:
Address already in use: daemon abandoned

I think that it may have to be my exim.conf or assp.cfg, but both read the same.

Exim.conf
local_interfaces = 127.0.0.1.125

Assp.cfg
smtpDestination:=127.0.0.1:125

View Replies!   View Related
Howto: ASSP Installation In CPanel
What is ASSP? ASSP is an Anti-Spam SMTP Proxy . The homepage can be found here. ASSP is a lightweight daemon that can filter mail based on various things such as SPF, RBLs, Bayesian word lists, as well as blocking email addresses from getting mail, or having mail filtered.

This tutorial will walk you through getting the admin interface for CPanel setup for ASSP. Currently, a paid user interface can be obtained here (note that I am in no way affiliated with, nor have I tried to use this UI, I am just offering the link to those that might find it useful)

Firstly, the setup:
You will need to activate Cpanel PRO (pro.cpanel.net/activate) for your server in order for this to fully work. This activation is currently free. Simply go to the previous mentioned URL and enter your IP address if you have not done so already.
Once you have activated CPanel PRO, go into whm->addon modules and check clamav connector, then click on "save". This will install clamav for you to use
Once you have done THIS, go to whm->service manager and UNcheck spamd (it is no longer necessary with ASSP), and again click on save/submit. Note that this IS optional, however the purpose of ASSP is to defeat spam before it GETS to SpamAssassin.
Once you have done THAT, go into whm -> tweak settings and uncheck SpamAssassin and BoxTrapper mail.

Secondly, the requirements:
ASSP needs certain perl modules established To install these, simply login (as root) to your server, and type the following

Code:
/scripts/perlinstaller --force Compress::Zlib
/scripts/perlinstaller --force Email::Valid
/scripts/perlinstaller --force File::ReadBackwards
/scripts/perlinstaller --force File::Scan::ClamAV
/scripts/perlinstaller --force Mail::SPF::Query
/scripts/realperlinstaller --force Mail::SRS
/scripts/realperlinstaller --force Tie::RDBM
/scripts/realperlinstaller Sys::Syslog
/scripts/perlinstaller --force Net::LDAP
/scripts/perlinstaller --force Time::HiRes
/scripts/perlinstaller --force Tie::DBI
Note that the --force is optional, however it will make sure you've got it installed. Do these one at a time as some of these have configurable options to them.
One more perl module is needed. Since the later versions of Net::DNS are known to cause issues with RBLs, SPFs and the like, it is advised to use 0.57 . This can be obtained by doing the following:

Code:
mkdir /usr/local/assp
cd /usr/local/assp
mkdir /usr/local/assp/tmp
cd /usr/local/assp/tmp
wget [url]
tar xzf Net-DNS-0.57.tar.gz
cd Net-DNS-0.57
perl Makefile.PL
make
make test
make install
Do NOT remove the /usr/local/assp/tmp directory as when you update cpanel, it will try to auto update Net::DNS again, so you will want this intact.

Now, let's get with the program here and install ASSP:

Code:
cd /usr/local/assp
wget [url]
unzip -d /usr/local/assp /usr/local/assp/ASSP_1.2.6-Install.zip
mv --target-directory=/usr/local/assp /usr/local/assp/ASSP/*
mv --target-directory=/usr/local/assp /usr/local/assp/ASSP/.DS_Store
rm -rf /usr/local/assp/__MACOSX
rm -rf /usr/local/assp/ASSP
rm -f ASSP_1.2.6-Install.zip
rm -f Win32-quickstart-guide.txt;rm -f freshclam.bat
cd /usr/local/assp
mkdir pb
cd pb
touch denysmtp.txt
touch exportedextreme.txt
touch pbdb.black.db
touch pbdb.rbl.db
touch pbdb.white.db
cd /usr/local/assp
mkdir /usr/local/assp/notspam
mkdir /usr/local/assp/spam
mkdir /usr/local/assp/errors
mkdir /usr/local/assp/errors/notspam
cd /usr/local/assp
wget [url]
chmod 755 start
wget [url]
chmod 755 stop
cd /etc/rc.d/init.d
wget [url]
chmod 755 assp
The core of ASSP is now installed. However, the development versions have updated functions to use for users. Of course, this is completely optional, but is recommended completely. This can be done by the following in SSH

Code:
cd /usr/local/assp/
mv assp.pl assp.pl_old
mv spamdb spamdb.old
mv rebuildspamdb.pl rebuildspamdb.pl.old
mv repair.pl repair.pl.old
mkdir Data
mkdir Data/Lists
wget [url]
wget [url]
000F4555.2/rebuildspamdb.pl
wget [url]
wget [url]
mv assp.css images
wget [url]
cd Data/Lists
wget [url]
chmod u+x /usr/local/assp/*.pl
Now, let's get it up and running, and configure it, shall we?

Code:
cd /usr/local/assp
/etc/init.d/assp start
You'll see ASSP sending out some messages and then doing nothing. This is ok, and it's the expected response. Now, we need to edit some stuff. Hit ctrl-c (cancel) to shut down ASSP
once it's stopped, you'll see the following file in the assp directory - assp.cfg . Edit that with whatever you want for an editor, something like:

Code:
nano assp.cfg
You want to change a few options immediately just to get it working
Look for the lines that are something like:

Code:
runAsGroup:=
runAsUser:=
and change them to be:

Code:
runAsGroup:=root
runAsUser:=root
Then look for the line that is

Code:
AsADaemon:=
and change it to

Code:
AsADaemon:=1
Now, let's change the password just so that we're secure:
look for the line that is

Code:
webAdminPassword:=nospam4me
and change that to

Code:
webAdminPassword:=insertrandompasswordhere
Now, let's tell ASSP to setup and accept mail for our domains. Look for the line something like

Code:
localDomains:=
and change that to be

Code:
localDomains:=file:/etc/localdomains
Almost there, just a couple more changes needed.
Look for the line that is something like

Code:
smtpDestination:=127.0.0.1:225
and change that to be

Code:
smtpDestination:=127.0.0.1:125
(or another port instead of 125, just REMEMBER the port!)
and one more change
change the line that looks like

Code:
listenPort:=125
to

Code:
listenPort:=25
Now save and exit the file. If you're using nano/pico, that would be ctrl-x , just make SURE to save the file before you exit!
Now, let's get ASSP fired up again

Code:
/etc/init.d/assp start
let's make sure you have assp starting on system boot:

Code:
chkconfig --add assp
Let's add a crontab to make sure that ASSP rebuilds the bayesian spam list

Quote:

crontab -e

Code:
10 4 * * * cd /usr/local/assp;/usr/local/assp/rebuildspamdb.pl
Occasionally, what I've seen is ASSP will get "hung" on certain things and just kill itself. This fix will work for this, and make sure your ASSP installation is running smoothly

Open up another file on the server, my example will be /bin/asspcheck. In this file, add the following contents

Code:
assplog=/usr/local/assp/check.log
DATE=`date "+%m-%d-%y [%k:%M]"`
pidof=/usr/local/assp/pid
thispid=`cat $pidof`
if [ ! -d /proc/$thispid ];then
rm -rf $pidof;
/etc/init.d/assp start
echo "$DATE - ASSP - restarted" >> $assplog
else
echo "$DATE - ASSP - ok" >> $assplog
fi
Now, chmod the file itself

Code:
chmod u+x /bin/asspcheck
Now, make sure it's called every 60 seconds. Add this to your root crontab

Quote:

crontab -e

Code:
* * * * * /bin/asspcheck
Now, let's go BACK into WHM and setup the variables needed to get exim to use ASSP
In exim configuration editor, click on "advanced editor"
Clear out EVERYTHING from all of the existing boxes. Keeping these with data can cause ASSP to not function as it should
When you've done that, add the following to the top box:

Code:
# assp
local_interfaces = 127.0.0.1.125
If you changed this variable to something else

Code:
smtpDestination:=127.0.0.1:125
put in the other port, NOT 125, so it would look like 127.0.0.1.whateverporthere

Click on Save
Exim will restart and you now have a working installation of assp

Now, let's go to it and work with it a bit, shall we?
go to [url], enter the user admin and the password you changed nospam4me to. This will get you logged in and you can tweak the settings as you feel necessary.

ASSP is a great and powerful proxy for any mail server, which blocks using RBLS, whitelists, etc. It is advisable to setup the email interface and let your customers know of this so that you can get them to help you in reporting and addressing spam.

Parts of this howto were taken from this page, however much of that data has been found to be outdated as far as downloads from CVS and the like go, and I've added quite a bit of useful information into it as well.

Go through the ASSP configuration VERY carefully, and ONLY change what you're sure of.

Start with the RBLs, increase the list to 5 and max hits to 2 as suggested.

If you notice problems with this or know how it might be better, hey, feel free to post in here and I'll keep it as updated as possible :)

View Replies!   View Related
VPS With Cpanel And Preinstalled ASSP Instead Of SpamAssassin
I am looking for a VPS provider that can install ASSP instead

of SpamAssassin does anybody know of any?

View Replies!   View Related
Linux System
I am planning to start linux hosting but don't have much knowledge about linux Operating system... can I do this without having sufficient knowledge of linux background?

Also please suggest me some good links from where I can get basic linux command and some kind of flash tutorials from which I get to know how to do work in Appache and dns etc.

how to download tar file using Terminal,

View Replies!   View Related
Install Xen Vps System To Test Out
I'd like to install xen vps system to test out instead of paying Virtuozzo $1k+ for licensing.

I found this article:
[url]

I installed this on Centos 5 server. I got one tiny problem now:

[root@server ~]# virt-manager
Traceback (most recent call last):
File "/usr/share/virt-manager/virt-manager.py", line 304, in ?
main()
File "/usr/share/virt-manager/virt-manager.py", line 224, in main
import gtk
File "/usr/lib/python2.4/site-packages/gtk-2.0/gtk/__init__.py", line 76, in ?
_init()
File "/usr/lib/python2.4/site-packages/gtk-2.0/gtk/__init__.py", line 64, in _init
_gtk.init_check()
RuntimeError: could not open display

Also, that tutorial doesn't explain how to create actual vps

Anyone care to explain? Isn't there some web gui available for xen too?

View Replies!   View Related
Rescue Linux System - UK Datacenter
Does rapidswitch and poundhost offer Rescue Linux System on their portal?

I want to load a linux distro on server RAM and do my own FreeBSD installation.

View Replies!   View Related
Learning Linux System Administration
Where would someone go to learn Linux System Administration?

Are the Redhat courses worthwhile?

View Replies!   View Related
Determining Operating System (Linux)
Without having all of the operating systems at my disposal for testing, I would like to figure out a way to determine the operating system of a remotely accessed Linux machine.

It seems pretty strange though, since cPanel reports both machines I am using as being

CENTOS Enterprise 4.5 i686, yet one's uname -a reports:

Code:
Linux hostsentry.crucialwebhost.com 2.6.9-023stab044.4-enterprise #1 SMP Thu May 24 17:41:23 MSD 2007 i686 i686 i386 GNU/Linux

Code:
Linux main.7kb.org 2.6.9-55.0.6.ELsmp #1 SMP Tue Sep 4 21:36:00 EDT 2007 i686 i686 i386 GNU/Linux
I'm assuming there is a way to determine the OS from this information. Anyone know how?

View Replies!   View Related
Which Linux Family Operating System Is More Stable
I would like to know which Linux family Operating System is more stable and have a better support for a Dedicated Server .....?

View Replies!   View Related
Ticket System And WHM And Cpanel
I have VPS having whm/cpanel base, i also install RT ticket system, it install successfully, same way i did on 5 other server its ok, but on VPS due to apache different configuration it gives me.

You haven't yet configured your webserver to run RT. You appear to have installed RT's web interface correctly, but haven't yet configured your web server to "run" the RT server which powers the web interface. The next step is to edit your webserver's configuration file to instruct it to use RT's mod_perl, FastCGI or SpeedyCGI handler.

View Replies!   View Related
User Nobody Using All System Memory Cpanel
I tracked down another issue that I am having with this same server. I login and look at the system and 100% of the swap is used and 99% of the Ram. I look to see who's using it, and the user name is Nobody. What role does this user play in cpanel? Can I disable the user?

UPDATE: It is actually apache doing it.

7044 nobody 0

0.6

8.3 /usr/local/apache/bin/httpd -DSSL
2836 nobody 0

0.6

0.2 /usr/local/apache/bin/httpd -DSSL
2835 nobody 0

0.6

1.8 /usr/local/apache/bin/httpd -DSSL
2838 nobody 0

0.6

0.5 /usr/local/apache/bin/httpd -DSSL
2854 nobody 0

0.6

0.2 /usr/local/apache/bin/httpd -DSSL
7934 nobody 0

0.5

22.8 /usr/local/apache/bin/httpd -DSSL
2839 nobody 0

0.4

0.2 /usr/local/apache/bin/httpd -DSSL
2887 nobody 0

0.4

24.5 /usr/local/apache/bin/httpd -DSSL
2848 nobody 0

0.4

2.7 /usr/local/apache/bin/httpd -DSSL

View Replies!   View Related
Cannot Get Mod_dav Installed On CPanel System
I have installed SVN but it also requires mod_dav to be installed. I have tried installing it but keep getting a broken APXS error. However, APXS is working fine on other installs.

View Replies!   View Related
How To Install Tomcat On Linux
You can easily install tomcat on Linux through this tutorial
[url]

View Replies!   View Related
Scalix Install On Linux
I want to test out the software Scalix and need a server to install it on. I'm currently on a shared environment so I can't do it on my current host.

What is the cheapest option for me? I guess I need a Linux server hosting package where I can install programs myself. Dedicated servers are too expensive for me.

What do? Any host that has cheap hosting that would me to install this?

View Replies!   View Related
Install MySQL On Linux
I have recently moved to a dedicated server and its a clean Fedora Core 5 installation with mysql 4.0.12 i guess...

I want to install MySQL 5.1 on this one but i don't know much about how to install this on linux...and since i don't have a control panel,things got tough for me.

I tried to install it and seemed it installed fine but when i tried to start it i got an error:

Code:
[root@myuserid bin]# mysqld
071223 21:57:51 InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Restoring possible half-written data pages from the doublewrite
InnoDB: buffer...
071223 21:57:51 InnoDB: Starting log scan based on checkpoint at
InnoDB: log sequence number 0 43912.
InnoDB: Doing recovery: scanned up to log sequence number 0 43912
071223 21:57:51 InnoDB: Started; log sequence number 0 43912
071223 21:57:51 [ERROR] mysqld: Can't find file: './mysql/host.frm' (errno: 13)
071223 21:57:51 [ERROR] mysqld: Can't find file: './mysql/host.frm' (errno: 13)
071223 21:57:51 [ERROR] Fatal error: Can't open and lock privilege tables: Can't find file: './mysql/host.frm' (errno: 13)
071223 21:57:51 [ERROR] mysqld: Error on delete of '/var/lib/mysql/crcfefvs.pid' (Errcode: 13)

View Replies!   View Related
System To Control Server Load On Cpanel
a good method to have processes controlled in the resources they use, in a shared cpanel environment?

For example, it appears that the cpanel backup (compressed) made the load skyrocket to beyond 60% cpu and 95% memory usage today, and this server is beefy to begin with.

I want some system to kill processes immediately if they exceed X amount of resources or kill processes that spiral out of control (X amount of processes from same user).

I'd like to be alerted of this action as well.

How can I set this up?

View Replies!   View Related
Install Fonts For Imagemagick *Linux*
I installed imagemagick on my server and I'm trying to write text to an image. However, I dont think i have any fonts installed on my server because I've checked my code and it appears right but theres no text. (The same code worked on an old server)

How would I go about installing fonts on my Cent OS server and what types of fonts work? (I have root access).

View Replies!   View Related
Can Not Use Yum To Install Mhash On Linux
The control panel is plesk.

When I run

Code:
yum install php5-mhash
I get

Quote:

Loaded plugins: security
Setting up Install Process
No package php5-mhash available.
Nothing to do

When I run

Quote:

yum install php-mhash

Same thing happen.

Linux version 2.6.18-128.4.1.el5PAE (mockbuild@hs20-bc1-6.build.redhat.com) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-44)) #1 SMP Thu Jul 23 20:14:48 EDT 2009

When I run on centOS, it works just fine.

View Replies!   View Related
Remove Linux And Install Windows XP
I need to remove CentOS from an old office PC. Dont get me wrong I use Linux almost on everything but for specific reason I need to get XP back into this old AMD PC.

I cannot install XP. I cannot remove Linux. This install is devil. It will not let me remove it. I tried everything. XP disk goes black screen and stays there, this is happens with some hardware and you have to remove all Linux partitions to me the Windows XP disk install start.

The problem I CANT remove it.

I go to rescue mode, or interactive, mode, it doesnt matter, I cannot remove linux.

"fisk -l"

Go to my partition
fdisk /dev/sda2

d for delete and it just outputs:
No partition is defined yet!

I tried lots of ways around it and always that message. Linux doesnt let me remove the partitions.

How in the world do I get XP back now?

View Replies!   View Related
How Do I Install Webmin On A Linux Server
How do I install Webmin on a Linux server?

I am using Putty to remotely access the server which runs RedHat Enterprise OS and Apache.

I mean I have downloaded the .rpm file from Webmin and just need to know what are the commands for installing a .rpm file on Linux and then how to configure webmin for proper operation and usage?

View Replies!   View Related
How To Disable All Email Services On Cpanel Based System
For one of my server based on cpanel i want to disable all email services/ send/receive etc. How do i go about it ?

Would Main >> Service Configuration >> Service Manager be the best place and disable the following services :

antirelayd

POP before SMTP daemon

exim

SMTP Server

imap

IMAP Server

pop

POP3 Server


spamd

SpamAssasin Server (if you choose to disable this, you should disable SpamAssasin in tweak settings as well)

Would that be enough to stop any emails from going out of server? Say via any contact form or any other way?

Please advice or i need to do it mannually via ssh and disable them.

I have SIM installed, so would i need to configure or remove something out of it too?

View Replies!   View Related
How To Install MYSQL Server On VPS Linux
I want to use (Microsoft SQL Server 2005 "on my PC") to conect with my database on my VPS linux, but I can't

View Replies!   View Related
Install Adobe AIR On Linux With SSH
how to install Adobe AIR on linux with ssh?


View Replies!   View Related
Linux Fresh Install / Reinstall Remotely
Anybody have a good scheme of fresh install or preinstallling a server with Linux (CentOS in this case) remotely?

View Replies!   View Related
Install Linux From Windows 2003, Without CD Nor Floppy
I have a Windows 2003 server running on a machine, and I'd like to convert this machine to a Linux (Fedora) machine.

Suppose I don't have a CD-Rom/Floppy/USB drive. Is it possible to install Linux?

View Replies!   View Related
Linux System Compromised, Hacker In As "root"
I've been trying to fight off a hacker's attack for the past 24 hours. Chronologically, this is how the events evolved:

- Yesterday, I tried SSH-ing into my server as usual and I got an error saying that the host's key was not recognized, which made a bit suspicious

- I tried logging into my VPS' PowerPanel, but my root password did not work, which I found disturbing. I reached out to support and they reset the password

- I ignored Putty's warning and SSH-ed into the server and was greeted by this, which I've never seen before:

Code:
Last login: Wed Mar 14 2007 14:13:35 -0500
No mail.
This made even more conscious and I started actively searching for indicators of a breach.

- The following processes were running, and I did not recognize them:

Code:
named 15756 0.0 0.4 36088 2256 ? S Mar14 0:00 /usr/sbin/named -u named -t /var/named/chroot

dmorg 26360 0.0 0.1 2264 872 pts/2 T 20:40 0:00 sh -c (cd /usr/share/man && (echo ".ll 14.2i"; echo ".pl 1100i"; /usr/bin/gunzip -c '/usr/share
dmorg 26361 0.0 0.1 2264 512 pts/2 T 20:40 0:00 sh -c (cd /usr/share/man && (echo ".ll 14.2i"; echo ".pl 1100i"; /usr/bin/gunzip -c '/usr/share
- Then I found a user called 'pma' in the /home directory, which I had never created. I could not find any suspicious files in the user's directory

- I finally spotted the point of breach in /var/log/messages:

Code:
Mar 15 15:05:25 xxxxxxxxx passwd(pam_unix)[28121]: password changed for root
Mar 15 15:06:34 xxxxxxxxx su(pam_unix)[30182]: session opened for user news by (uid=0)
Mar 15 15:07:16 xxxxxxxxx su(pam_unix)[30182]: session closed for user news
Mar 15 15:22:04 xxxxxxxxx sshd[20118]: Listener created on port 22.
Mar 15 15:22:04 xxxxxxxxx sshd[20119]: Daemon is running.
Mar 15 15:28:01 xxxxxxxxx su(pam_unix)[32568]: session opened for user pma by (uid=0)
Mar 15 15:28:45 xxxxxxxxx su(pam_unix)[32568]: session closed for user pma
Somehow they had gotten in as root and then opened sessions for news and pma.

- This morning I finally found where the hacker's files are hiding. He had created a new user overnight and a directory in there called "...". The folder contains various files:

Code:
[root@xxxxxxxxx root]# ls -al
total 445
drwxr-x--- 8 root root 1024 Mar 16 15:48 .
drwxr-xr-x 20 root root 1024 Mar 16 15:48 ..
drwxr-xr-x 2 1004 1004 1024 Dec 17 08:57 ...
-rw-r--r-- 1 root root 1126 Aug 23 1995 .Xresources
-rw------- 1 root root 14641 Mar 16 15:47 .bash_history
-rw-r--r-- 1 root root 24 Jun 10 2000 .bash_logout
-rw-r--r-- 1 root root 234 Jul 5 2001 .bash_profile
-rw-r--r-- 1 root root 176 Aug 23 1995 .bashrc
-rw-r--r-- 1 root root 210 Jun 10 2000 .cshrc
-rw------- 1 root root 38 Jul 26 2005 .mysql_history
drwx------ 2 root root 1024 Mar 15 18:01 .ssh
drwxr-xr-x 2 root root 1024 Mar 15 15:21 .ssh2
-rw-r--r-- 1 root root 196 Jul 11 2000 .tcshrc

Code:
[root@xxxxxxxxx root]# cd "..."
[root@xxxxxxxxx ...]# ls -al
total 420
drwxr-xr-x 2 1004 1004 1024 Dec 17 08:57 .
drwxr-x--- 8 root root 1024 Mar 16 15:48 ..
-rwxr-xr-x 1 1004 1004 141817 Sep 3 2001 init
-rw-r--r-- 1 1004 1004 113482 Mar 15 15:09 log
-rw------- 1 1004 1004 640 Feb 18 05:34 messages
-rw-r--r-- 1 1004 1004 664 Feb 27 01:12 muhrc
-rwxr-xr-x 1 1004 1004 165596 Nov 2 2004 pico
-rw------- 1 1004 1004 5 Mar 15 15:09 pid
[root@xxxxxxxxx ...]#
- Here's what's in the log file:

Code:
[root@xxxxxxxxx ...]# less log

[Thu 08 May 08:03:27] + ---------- NEW SESSION ----------
[Thu 08 May 08:03:27] + muh version 2.05d - starting log...
[Thu 08 May 08:03:27] + listening on port 6667.
[Thu 08 May 08:03:27] + muh's nick is 'StefanG'.
[Thu 08 May 08:03:27] + trying server 'geneva.ch.eu.undernet.org' on port 6667...
[Thu 08 May 08:03:28] + tcp-connection to 'geneva.ch.eu.undernet.org' established!
[Thu 08 May 08:03:29] + connected to 'Geneva.CH.EU.Undernet.org'.
[Thu 08 May 08:03:30] + caught client from 'pcp02588223pcs.shlb1201.mi.comcast.net'.
[Thu 08 May 08:03:45] + authorization successful!
[Thu 08 May 08:03:45] + reintroducing channels...

[Thu 08 May 08:07:54] + ---------- NEW SESSION ----------
[Thu 08 May 08:07:54] + muh version 2.05d - starting log...
[Thu 08 May 08:07:54] + listening on port 6667.
[Thu 08 May 08:07:54] + muh's nick is 'StefanG'.
[Thu 08 May 08:07:54] + trying server 'eu.undernet.org' on port 6667...
[Thu 08 May 08:07:55] + tcp-connection to 'eu.undernet.org' established!
[Thu 08 May 08:08:05] + connected to 'Diemen.NL.EU.Undernet.org'.
[Thu 08 May 08:08:05] + caught client from 'pcp02588223pcs.shlb1201.mi.comcast.net'.
[Thu 08 May 08:08:05] + authorization successful!
[Thu 08 May 08:08:05] + reintroducing channels...
There is a whole lot of these in that log file, and the timestamps look odd. I am not sure what all this is.

- This is where I am at right now. Can you guys help figure this thing out?
How did they get in? What sort of vulnerability are they using? How can I patch things up?

- Here is my server info:

Code:
[root@xxxxxxxxx ...]# uname -a
Linux xxxxxxxxx.org 2.6.9-023stab033.9-enterprise #1 SMP Tue Dec 5 14:40:57 MSK 2006 i686 athlon i386 GNU/Linux

[root@xxxxxxxxx httpd]# vmstat 5 5
procs -----------memory---------- ---swap-- -----io---- --system-- ----cpu----
r b swpd free buff cache si so bi bo in cs us sy id wa
1 0 0 390688 0 0 0 0 0 0 0 8365 1 0 99 0
0 0 0 390524 0 0 0 0 0 0 0 0 0 0 100 0
0 0 0 390524 0 0 0 0 0 0 0 0 0 0 100 0
0 0 0 390528 0 0 0 0 0 0 0 0 0 0 100 0
0 0 0 390528 0 0 0 0 0 0 0 0 0 0 100 0

- I have Apache & MySQL & PHP running. I host 3 websites. They run Simple Machines Forum 1.1.2, phpMyAdmin, phpcollab, awstats and that's about it.

View Replies!   View Related
Install GD For PHP4 On Red Hat Enterprise Linux, Version 4 From SSH
I only know basic commands for SSH and have been trying for hours to get GD installed for PHP4. I have tried:

# apt-get install php-gd
bash: apt-get: command not found

apt-get install php4-gd
bash: apt-get: command not found

# up2date -i php-gd

Fetching Obsoletes list for channel: rhel-i386-es-4...

Fetching Obsoletes list for channel: rhel-i386-es-4-extras...

Fetching rpm headers...

Name Version Rel
----------------------------------------------------------

The following Packages were marked to be skipped by your configuration:

Name Version Rel Reason
-------------------------------------------------------------------------------
kernel 2.6.9 55.0.2.ELPkg name/pattern
kernel-devel 2.6.9 55.0.2.ELPkg name/pattern
kernel-hugemem-devel 2.6.9 55.0.2.ELPkg name/pattern
kernel-smp 2.6.9 55.0.2.ELPkg name/pattern
kernel-smp-devel 2.6.9 55.0.2.ELPkg name/pattern
php-gd 4.3.9 3.22.5Pkg name/pattern

The following packages you requested were marked to be skipped by your configuration:
php-gd

None of these things work and I was wondering if anyone knew how to get this to work without recompiling PHP.

View Replies!   View Related
Cpanel Install Failed
I have tried my best to install cpanel on a fresh new CentOS 5.2 server.

But everytime failed,it take me about 5 hours to install.

And I find no cpanel service is installed.

I think re-install is also no use.

View Replies!   View Related
Install Mod_security On CPANEL
i have install modsecurity by WHM > Manage Plugins > check Name: modsecurity and save .and so without error its complite .

and restart my apache.

but i cant finde it in phpinfo and my Plugins in whm

View Replies!   View Related
Install Cpanel On Fedora
i have fedora core 4

i run sh latest

but take me error :

____ _
___| _ __ _ _ __ ___| |
/ __| |_) / _` | '_ / _ |
| (__| __/ (_| | | | | __/ |
\___|_| \__,_|_| |_|\___|_|

Installer Version 11.4.0

grep: /etc/yum.conf: No such file or directory
grep: /etc/yum.conf: No such file or directory
Your operating system's rpm update method (yum) was not able to locate the glibc package. This is an indication of an improper setup. You must correct this error before you can proceed.

View Replies!   View Related
ASSP
I tried to understand ASSP by searching in your documentation but nowhere it mentions that when we use a mail client programs. For example:

I install ASSP correctly. I start it. Actually, our spam database is empty. From my understanding, ASSP still let spams and non spams e-mails go through to build its database.

My question is:

Is there a way to know our first 400 or 1000 e-mails are spams in despite to categorize them properly?

How to categorize them on our server when we use Kmail or Outlook to download e-mails from the server?

If I create two folders: spam and nonspam in Outlook or Kmail and move the e-mails to the prosper folders, will it be synchronized with the server automatically?

View Replies!   View Related
How-To: Install APF Firewall For CPanel
Ok so you need a firewall. Well we recommend using APF. The following are the instructions you need to install

1) Login to your box as root
2) Download the APF Source (current version 0.9.3.3) ...........

View Replies!   View Related
Install Imagemagick On CPanel VPS
how i can install imagemagick on cPanel VPS?

View Replies!   View Related
Install S3 Backup On CPanel VPS
I'm not experienced with linux or web hosting software and I want to find a way to get my cPanel or WHM to send the backups it does to my amazon s3 storage account.

Now I know this can be done as I've see lots of places around the web talk about it. I'm not experienced enough to do it so to just get it done and setup I'm willing to pay someone.

My VPS is at ServInt.net running on Centos5 with WHM/cPanel.

View Replies!   View Related
Possible Uninstall Directadmin And Install Cpanel
I receive my server tha preinstall diectadmin. May I know is it possible I remove the directmin adn install the cpanel without format the drive?

View Replies!   View Related
How To Install Mrtg On A Cpanel Server
How to install mrtg on a cpanel server?

I followed the tutorial on [url]but it didn't work

View Replies!   View Related
SSL - CA Bundle Won't Install In CPanel
Has anybody ever had this error in CPanel 11 SSL Manager? How did you solve it? We used the CA Bundle supplied by Comodo. We tried installing SSL with Comodo and the CA Bundle isn't installing at all. Is this an issue with the server?

The CRT itself installs fine so it looks OK from web browsers - but not Google Checkout.

Error in CPanel:
=====
Verifcation Result [/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=[url] error 2 at 3 depth lookup:unable to get issuer certificate]
====
As a result, Google Checkout refuses to calculate shipping:
--------------------
SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086: SSL routines: func(144): reason(134)
--------------------

I tried manually with curl (Google Checkout uses curl) and it says:
~: curl [url]
curl: (60) SSL certificate problem, verify that the CA cert is OK. Details:
error:14090086SL routinesSL3_GET_SERVER_CERTIFICATE:certificate verify failed

View Replies!   View Related
Install SSL Certificate Using Cpanel
to install SSL certificate to my site using Cpanel. I dont know anything about it and have zero idea. I am open to hear all of you, are know about SSL installation.

View Replies!   View Related
Cpanel Install And HDD Partition
I have a server without cpanel and it have this partition details :

Code:
server-rescue / # df -h
Filesystem Size Used Avail Use% Mounted on
192.168.0.1:/nfsroot/gentoo
228G 134G 82G 63% /
none 1.9G 56K 1.9G 1% /mnt/unionfs/etc
none 230G 134G 84G 62% /etc
none 1.9G 720K 1.9G 1% /mnt/unionfs/var
none 230G 134G 84G 62% /var
none 1.9G 0 1.9G 0% /mnt/unionfs/root
none 230G 134G 84G 62% /root
none 1.9G 4.0K 1.9G 1% /tmp
udev 1.9G 160K 1.9G 1% /dev
shm 1.9G 0 1.9G 0% /dev/shm
/dev/sda2 226G 28G 187G 13% /mnt/sysimage

what I can do for this partition before start Cpanel Install?

View Replies!   View Related
Install Cpanel Backup Into Plesk
I'm going from a reseller account that used cPanel to a dedicated server using Plesk. I don't have access to anything on the cPanel server (long story), but the host said they will create a cPanel backup for me. Is it possible to install this into Plesk? I know it's possible to do a migration from a cPanel server to Plesk, which requires root access that I don't have and can't get, so this cPanel backup is the best I've got.

View Replies!   View Related
How To Re-install Named On CPanel Server
I have server on CPanel, and Named failed yesterday. Some named files damage, and BIND not work. re-install this service.

View Replies!   View Related
Assp Configuration
I Want to use ASSP for a large number of server with different IP,

ASSP is use as SMTP proxy for the outbound traffic,

In Relaying > AcceptAllMail in put my network,

the question is : does the network will be scanned by assp, i have see that the network contribute to the whitelist?

View Replies!   View Related
ASSP X No Good
My host seem to like interfering with spam setting on the server. They had spamassasin installed which works perfectly and i haven't been getting any spam when i enable the software.

All of a sudden all my subscription and a lot of email is rejected and now perfectly legit email is marked as spam.

I fail to understand why use software that reject normal mail.

View Replies!   View Related
ASSP With Plesk
I have been running ASSP for a long time on a Fedora/Postfix box without a single problem. Recently, however, I have acquired a CentOS/Plesk/Qmail machine and I am having a terrible time getting ASSP to play nicely with qmail.

I am attempting to follow the directions on the assp wiki regarding plesk. I changed qmail to listen on 125 instead of 25 by editing /etc/services. I then restarted everything but it then appeared that mail was going through without authentication. I was successfully able to send mail from an internal address to an external one without a problem, but I think I was able to do so without authenticating myself.

However, when attempting to send mail from an outside address to an internal one, I get a relay denied error message. Obviously ASSP isn't aware of the addresses I have set up on the system.

Also - I attempted to manually run the sh scripts downloaded from the wiki entry, but I kept getting the error message that I couldn't execute binary file, even though I gave the file execute permissions. I even tried adding #!/bin/sh to the top of the file, to no avail....

If anyone has successfully installed assp with Plesk and has authentication and the plesk automation scripts running like they should, please let me know how you did it.

Right now this machine is processing about 3000 emails a day, 90% of which are spam, so I really need to get ASSP installed and running here.

View Replies!   View Related
ASSP Deluxe
Anyone recommend using ASSP Deluxe for cpanel 11 on a shared server or even dedicated?

I couldn't find any reviews, except a couple poor ones on the clone asspx

View Replies!   View Related
Coldfusion And Linux/cpanel
my dad hired someone to build a web site for one of his clients and the guy used codfusion for the forms. I should have just built the site myself, but time is money and I have little time. So, is it possible to install coldfusion on a linux server RHEL3 with cpanel? I've got 3 other dedicated servers as well without cpanel that are running centos.

View Replies!   View Related
Cpanel And Linux OS Choice
For one of my server, I have to use cpanel, my host offers these possibilities:

CentOS Linux
Fedora Core Linux
Debian Linux
Gentoo Linux
RedHat Enterprise Linux

In term of compatibility and evolution, what is the best choice OS/Cpanel?

View Replies!   View Related
Linux VPS With CPanel
What VPS providers do you recommend me?

I need a Linux VPS with cPanel and modest allocated resources (like 10-30GB bandwith, 5-10GB disk space).

Provider must be VERY reliable.

Budget $35/mo all included with Paypal.

View Replies!   View Related
CPanel DNS Only, Now Cant Install PHP, MySQL Etc
i am running a VPS and recently installed cPanel DNS Only so it can operate as a standalone DNS server.

I would also like to serve standard webpages on it via apache and php, i therefore tired to install php, mysql etc via 'yum install php' but it says there is no package to be installed.

Has the cPanel DNS only install done someting to the yum config? I have installed Yum Priorities plugin, and my repos files are as follows:


Code:
root@stripe [~]# yum list installed | grep httpd
httpd.i386 2.2.3-22.el5.centos.1 installed
root@stripe [~]# yum list installed | grep php*

root@stripe [~]# cat /etc/yum.repos.d/CentOS-Base.repo
# CentOS-Base.repo
#
# This file uses a new mirrorlist system developed by Lance Davis for CentOS.
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#

[base]
name=CentOS-$releasever - Base
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
#baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
priority=1

#released updates
[updates]
name=CentOS-$releasever - Updates
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
#baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
priority=1

#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons
mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=addons
#baseurl=http://mirror.centos.org/centos/$releasever/addons/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
priority=1

View Replies!   View Related
SSL Possible To Install In WHM/CPANEL Login
i worrying about WHM/CPanel login without SSL, it possible to install SSL?

View Replies!   View Related
How To Install Shared Ssl In Cpanel Server
how to install shared ssl in cpanel server

View Replies!   View Related
Install Htop On CPanel CentOS Server
I found htop much more easier to understand than top and would like to install it on my cPanel CentOS server. I tried executing following command from root shell:

yum install htop

and got following output:

..................Reading repository metadata in from local files
Excluding Packages in global exclude list
Finished
Parsing package install arguments
No Match for argument: htop
Nothing to do

Not sure if htop is available for CentOS cpanel servers? If so how can I install it?

View Replies!   View Related
How To Install Mod_top On A Cpanel / Centos Box?
how to install mod_top on a Cpanel / Centos box?

[url]

This does not work (gives off errors such as file or dir not found)

View Replies!   View Related
Copyright © 2005-08 www.BigResource.com, All rights reserved