Squid Installation Issue Plz Help

Status
Not open for further replies.

JoomlaZ

Active Member
1,262
2010
227
0
Hey guys i have been trying to install squid version 3.2 on centos 6. Well upon compilation using the commands
cd /usr/local/src
wget http://www.squid-cache.org/Versions/v3/3.2/squid-3.2.0.7.tar.gz
tar -zxvf squid-3.2.0.7.tar.gz
cd squid-3.2.0.7
./configure
make all
make install

the installation halts with the following


Code:
 /usr/bin/install -c -m 644 squidclient.1 '/usr/local/squid/share/man/man1'
test -z "/usr/local/squid/share/man/man8" || /bin/mkdir -p "/usr/local/squid/share/man/man8"
 /usr/bin/install -c -m 644 cachemgr.cgi.8 '/usr/local/squid/share/man/man8'
make[3]: Leaving directory `/usr/local/src/squid-3.2.0.7/tools'
make[2]: Leaving directory `/usr/local/src/squid-3.2.0.7/tools'
make[1]: Leaving directory `/usr/local/src/squid-3.2.0.7/tools'
Making install in test-suite
make[1]: Entering directory `/usr/local/src/squid-3.2.0.7/test-suite'
make[2]: Entering directory `/usr/local/src/squid-3.2.0.7/test-suite'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/usr/local/src/squid-3.2.0.7/test-suite'
make[1]: Leaving directory `/usr/local/src/squid-3.2.0.7/test-suite'
make[1]: Entering directory `/usr/local/src/squid-3.2.0.7'
make[2]: Entering directory `/usr/local/src/squid-3.2.0.7'
make[2]: Nothing to be done for `install-exec-am'.
make[2]: Nothing to be done for `install-data-am'.
make[2]: Leaving directory `/usr/local/src/squid-3.2.0.7'
make[1]: Leaving directory `/usr/local/src/squid-3.2.0.7'

well m i doing anything wrong? I aint into linux much so mine all is copy paste work and any help would be appreciated :)
 
3 comments
Any specific reason why you want to compile it from source, rather than just installing it from the official repos or something like CentALT, RPMForge or EPEL? What do you mean by the installation "halts"? I don't see any error message, so are you sure it's not fully compiled already? You can check with "which squid". Furthermore run "make clean" before "./configure" and see if that helps.
 
Try using the below commands :-

Code:
yum -y install squid
Code:
chkconfig squid on

By default, Squid listens on port 3128. If you would like to use a different port, modify/etc/squid/squid.conf

Code:
http_port 3128

Code:
service squid start
 
Status
Not open for further replies.
Back
Top