Search found 166 matches

by a24uall
Fri May 10, 2013 10:23 pm
Forum: Svn
Topic: How to install svn on centos 6
Replies: 0
Views: 5129

How to install svn on centos 6

Login to server as root yum install mod_dav_svn subversion cp -ar /etc/httpd/conf.d/subversion.conf /etc/httpd/conf.d/subversion.conf.bak7 > /etc/httpd/conf.d/subversion.conf vi /etc/httpd/conf.d/subversion.conf Add the below lines to subversion.conf LoadModule dav_svn_module modules/mod_dav_svn.so ...
by a24uall
Fri May 10, 2013 5:33 pm
Forum: Basic Commands
Topic: How to use the telnet command to send emails
Replies: 0
Views: 1953

How to use the telnet command to send emails

telnet mydomain.com 110 How to login to pop server USER your@emailaddress.com PASS your_password You are now "logged in" to the POP server. To disconnect from pop server quit To reconnected to the SMTP port: telnet mydomain.com 25 EHLO mydomain.com MAIL FROM: anythingiwant@some_real_domai...
by a24uall
Tue May 07, 2013 9:42 pm
Forum: MISCELLANEOUS
Topic: Run commands
Replies: 0
Views: 5638

Run commands

Program Run Command Accessibility Controls = access.cpl Accessibility Wizard = accwiz Add Hardware Wizard = hdwwiz.cpl Add/Remove Programs = appwiz.cpl Administrative Tools = control admintools Adobe Acrobat ( if installed ) = acrobat Adobe Distiller ( if installed ) = acrodist Adobe ImageReady ( if...
by a24uall
Sun May 05, 2013 6:33 pm
Forum: Mysql Basic Commands
Topic: Remote mysql access from specific Ip address
Replies: 0
Views: 1812

Remote mysql access from specific Ip address

Remote mysql access to specific databases from all specific address GRANT ALL PRIVILEGES ON database_name .* TO username @ ' REMOTE_IP ' IDENTIFIED BY 'your_password' Remote mysql access from all databases from all Ip address GRANT ALL PRIVILEGES ON *.* TO username @'%' IDENTIFIED BY 'your_password'
by a24uall
Sun May 05, 2013 6:29 pm
Forum: Mysql Basic Commands
Topic: Remote mysql access
Replies: 0
Views: 1963

Remote mysql access

mysql -u username -h REMOTE_IP -p
Enter password:
by a24uall
Sun Apr 28, 2013 12:56 pm
Forum: Apache Modules
Topic: How to install mod_jk on centos
Replies: 0
Views: 5101

How to install mod_jk on centos

You need apxs installed and if not run yum install apr-util-devel yum install httpd-devel You should see apxs under /usr/sbin/apxs -rwxr-xr-x 1 root root 22029 Feb 22 06:19 /usr/sbin/apxs Download the tomcat connector from http://tomcat.apache.org/download-connectors.cgi wget http://apache.cs.utah.e...
by a24uall
Sun Apr 28, 2013 9:44 am
Forum: Tomcat Manager
Topic: How to configure tomcat manager in tomcat 6.
Replies: 0
Views: 5231

How to configure tomcat manager in tomcat 6.

SSH to server and open the file /etc/tomcat6/tomcat-users.xml vi /etc/tomcat6/tomcat-users.xml Inside that add the below lines <?xml version='1.0' encoding='utf-8'?> <tomcat-users> <role rolename="manager"/> <user username="arun" password="Pass123" roles="manager&q...
by a24uall
Sun Apr 28, 2013 9:42 am
Forum: Tomcat Manager
Topic: How to configure tomcat manager on tomcat7
Replies: 0
Views: 2868

How to configure tomcat manager on tomcat7

Get in to the directory where apache-tomcat is installed. In our example cd /usr/share/apache-tomcat-7.0.39/ cd conf Make a backup of "tomcat-users.xml" if you want and then empty the contents cp -ar tomcat-users.xml tomcat-users.xml.bak > tomcat-users.xml vi tomcat-users.xml Add the below...
by a24uall
Sat Apr 27, 2013 8:16 pm
Forum: Errors in Terminal
Topic: Package .rpm is not signed
Replies: 0
Views: 2034

Package .rpm is not signed

To install a unsigned package edit yum.conf and change "gpgcheck" to 0
vi /etc/yum.conf
Change
gpgcheck=0
to
gpgcheck=1
by a24uall
Thu Apr 25, 2013 11:04 pm
Forum: DNS
Topic: How to install and configure bind + centos6
Replies: 0
Views: 5467

How to install and configure bind + centos6

yum install bind-chroot In named.conf change vi /etc/named.conf listen-on port 53 { IP_ADDRESS1; IP_ADDRESS2; }; allow-query { any; }; recursion no; Add the zone file path to the bottom of named.conf vi /etc/named.conf zone "domain.com" IN { type master; file "/var/named/domain.com.d...

Go to advanced search