Articles by admin

  • Download the ISPConfig Manual for ISPConfig 3.1

    ispconfig Author: adminTags: , Comments: 15

    Download the ISPConfig Manual for ISPConfig 3.1 (Released: 09/27/2016) The updated ISPConfig 3.1 manual is finally available (in PDF format). On more than 400 pages, it covers the concept behind ISPConfig (admin, resellers, clients), explains how to install and update ISPConfig 3.1, includes a reference for all forms and form fields in ISPConfig together with examples of valid inputs, and provides tutorials for the most common tasks in ISPConfig 3.1. It also lines out how to make your server more secure and comes with a troubleshooting section at the end.

  • Tutorial Formatting Guide

    apache Author: adminTags: Comments: 0

    Tutorial Formatting Guide Version 1.3 If you want to publish a tutorial on HowtoForge, please read this guide to learn how to format your tutorial so that it fits into the look and feel of HowtoForge and looks attractive to as many readers as possible. These guidelines also help you to minimize the size of your document.   1 What Program Do I Use To Write My HowTo? Use an HTML editor like Dreamweaver or any other HTML editor that creates valid HTML. Do not use MS Word to produce HTML content because Word produces "strange" HTML...

  • How To Import VMware Images Into VMware Player/Server

    Author: adminTags: Comments: 5

    How To Import VMware Images Into VMware Player/Server Version 1.3Author: Falko Timme <ft [at] falkotimme [dot] com> Last edited 26/06/2014 This article shows how to download a VMware image of a HowtoForge tutorial and import it into the free VMware Player the free VMware Server Both VMware Player and VMware Server are available for Windows and Linux. I assume you have one of them already installed on your system because this document doesn't cover VMware installation.

  • HowtoForge Subscription

    Author: adminTags: Comments: 0

  • List Of Downloadable VMware Images (For HowtoForge Subscribers)

    Author: adminTags: Comments: 0

  • Subscription FAQ

    Author: adminTags: Comments: 5

    Subscription FAQ << Back to the Become A HowtoForge Subscriber page New! We now accept RBS WorldPay payments in addition to PayPal. This page answers the most frequently asked questions (FAQ) regarding our HowtoForge subscriptions. Cost: €5 for 1 Month; €25 for 6 Months What benefits do I get if I buy a HowtoForge subscription? How long does a subscription last? What does it cost? Do subscriptions renew themselves automatically? How can I buy a subscription?5.1 If you use PayPal 5.2 If you use RBS WorldPay What payment gateways do you offer? What currencies do you support? Who will receive my payment? When can I cancel a subscription? How do I cancel a subscription?10.1 If you use PayPal 10.2 If you use RBS WorldPay What's your refund policy? Do you offer subscriptions for free? How do I import VMware Images Into VMware Player/Server? What's the root password of the VMware images? What are the network settings of the HowtoForge VMware images? How can I change the keyboard layout of the HowtoForge VMware images? Whom can I contact if I encounter problems with my subscription? 1. What benefits do I get if I buy a HowtoForge subscription? If you buy a subscription, you receive the following benefits:

  • Invalid or corrupt certificate error code -8182, how can i fix it?

    apache Author: adminTags: Comments: 0

    You can re-generate the ISPConfig SSL certificate like this: openssl genrsa -des3 -passout pass:yourpassword -out /root/ispconfig/httpd/conf/ssl.key/server.key2 1024 openssl req -new -passin pass:yourpassword -passout pass:yourpassword -key /root/ispconfig/httpd/conf/ssl.key/server.key2 -out /root/ispconfig/httpd/conf/ssl.csr/server.csr -days 365 openssl req -x509 -passin pass:yourpassword -passout pass:yourpassword -key /root/ispconfig/httpd/conf/ssl.key/server.key2 -in /root/ispconfig/httpd/conf/ssl.csr/server.csr -out /root/ispconfig/httpd/conf/ssl.crt/server.crt -days 365

  • How do I search for a term in a file?

    apache Author: adminTags: Comments: 0

    With the grep command. If you want to find out if the term user is in /etc/httpd/conf/httpd.conf, you would run grep -i user /etc/httpd/conf/httpd.conf (-i makes the search case-insensitive). Normally grep does not tell you the line number where it finds the term. If you want to find out the line number, run grep -n -i user /etc/httpd/conf/httpd.conf

  • How do I find out who is logged in on my system?

    apache Author: adminTags: Comments: 0

    You can find out about logged in users either by running who (Sample output: server:~# who root pts/0 Nov 12 11:28 (192.168.0.202) ) or w which gives more detailed output: server:~# w 11:29:49 up 2:19, 1 user, load average: 0.02, 0.01, 0.00 USER TTY FROM [email protected] IDLE JCPU PCPU WHAT root pts/0 192.168.0.202 11:28 0.00s 0.08s 0.01s w

  • How do I find out which gateway a Linux system is currently using?

    apache Author: adminTags: Comments: 6

    Run route -nee The output will look like this: Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface MSS Window irtt 192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0 0 0 0 0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 0 0 0 0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth0 0 0 0 This means that the system with the IP address 192.168.0.100 is using 192.168.0.1 as gateway.