i check my site on checkdns.com and its show me this Error Report
CheckDNS.NET is verifying if NS are alive[url] NS list mismatch: registration authority reports that domain is hosted on the following servers: 'ns.sitename.com; ns1.sitename.com', but DNS server ns.sitename.com reports domain to be hosted on 'ns.sitename.com'. Please make sure that you configure the same DNS servers in registrar database and on your DNS
A lot of domains are running more then one NameServer, but I could not find any tutorial on how to "clone" the NS from one to an other. Is it enough to just add some kind of "transfer to IP setting" in bind, or do I have to have scripts that download settings and files from one server to an other regularly?
On my server I'd like to keep sites as fast as possible and not drain too much on the server. I don't have many users, but I'd like to get it right the first time. What's the best DB engine to use? What about other settings? I'm not sure I should run caching yet, I'm not under much load.
how come I can't route all traffic through openvpn.
1. I was able to ping my client and server ip no problem. So the tunnel connection is fine.
The problem is i can't route internet traffic through openvpn.
I was able to ping from tun0 interface after i add below command iptables -t nat -A PREROUTING -s 10.8.0.0/24 -o eth0 -j MASQUERADE
root@host188 [/etc/openvpn/config]# ping -I tun0 4.2.2.2 PING 4.2.2.2 (4.2.2.2) from 10.8.0.1 tun0: 56(84) bytes of data. 64 bytes from 4.2.2.2: icmp_seq=1 ttl=55 time=8.94 ms 64 bytes from 4.2.2.2: icmp_seq=2 ttl=55 time=8.65 ms 64 bytes from 4.2.2.2: icmp_seq=3 ttl=55 time=8.90 ms
However, my client can't ping 4.2.2.2 from vpn tunnel and I use tcpdump I saw the traffic coming.
downloaded WAMP5_1.7.0. Prior to downloading I was freaking out wondering if I was going to screw up my computer with software conflicts, but I pressed on. I read the Apache information regarding IIS / Apache conflicts. The tutiorial told me to check the services installed on my computer. The tutorial told me to look for a service titled "World Wide Publishing" The service (WWP) did not exist so I proceeded to the WAMP installation wizard. I installed it. Apache does not display in the services window. As if it does not exist. Apache will not fire up. From what I got from the instructions at Apache, it seems there are alot of modifications I can perform to setup Apache correctly. The long and short of it is I connot see my see what my HTML/PHP code is spitting out because Apache never fires up. Can anyone give me some pointers on setting WAMP up in plain ENGISH? Just a note, when I float my mouse over the Apache icon, a little mouse over windows comes up saying "one of two servers running". Is ISS enabled on my computer? I'm frustrated. Any help regarding this matter is worth a beer (or 12).
I purshased a web hosting and I uploaded just one folder to it with my email contact form. The fact is that Google is already listing my site but it is showing the full content of my HTML public folder! Everyone could search my site like an FTP! I don't really want that. How can I avoid that? I just want web browsers to show my web pages, not the folders neither my HTML public folder with all my files: scripts, photos, etc.
Google is showing all this:
Index of /[DIR] Parent Directory 15-Jan-2007 07:58 - [DIR] cgi-bin/ 15-Jan-2007 02:37 -. Apache/1.3.37
Maybe the solution is too easy but for me it is a nightmare right now.
Between our Linux servers, I can get speed up to 80Mbps when transferring big files. However, between Linux and Windows, it's just around 800Kbps - 2Mbps. It shows in network connection properties that connected at 100Mbps, but not sure why it's so slow
Is there any setting I should pay attention? Running Windows 2003 on that box.
This is a instructional overview thread for those developers who are getting into setting up their own server with a LAMP (Linux Apache MySQL PHP) setup. The linux distro referred to in this thread is a centOS (fedora|redhat) setup.
Before Anything
- Make sure that your actual RAM is the same amount that is displayed by the server (there could be some BIOS restrictions on RAM so check for that).
Linux OS Installation
- Use a server system for the type of install. ------------------------------ - Setup you partitions with care: - Make sure that everything other than /swap is an ext3 partition type. - /swap (usually double the amount of space that your ram has but never larger than 4 gigs. - /tmp (700meg is ok). - /boot (100meg is ok). - / (leave rest of the available space in the harddrive for this). ------------------------------ - Use GRUB boot loader - Use DCHP only if your IP address changes due to the network. If not, then assign the IP address of the box. - Assign the netmask if DCHP is not in use. ------------------------------ - When setting up the packages, select only what you need. Most of the time it's better to just install no packages and then install everything you need by yum (yellowdog update manager). If you do not select any packages, only the 1st CD of the linux install will be needed.
Linux OS Customizing
- Create a new user and provide it a password (with # passwd). Do not create a user with a generic or commonly known names used in any daemon programs (ex. mysql, apache, admin, user, php, postgresql). - Disable the ROOT login in SSH (this means that when you login using the other user with SSH, you'll have to $ su to the root user). - Install "Development Tools" with yum using group install if you plan to compile your own apache. If not then install apache with yum install apache.
Apache Settings
- Disable the extensions that you're not using for your website. If the server is only hosting one website, then there is no use for Virtual Hosts. - Set the ServerLimit value to a suitable value so that users won't get locked out of the website. - Change the User and Group directives to the newly created user. - Set Options +Indexes to Options -Indexes so that the contents of directories w/o an index file will not be displayed. - Change the DocumentRoot setting to the newly created user's home (~) directory. Or if you plan to use the default (/var/www/htdocs or /var/www/html) then assign the permissions of the user to that directory. - Add apache as a start up program when the operating system boots up (this can be set in /etc/rc.d/local). - Setup logs accordingly. If you setup image logging and your server has 20+ images per page then your website performance can suffer. - Setup Error Logs to a suitable level. - If any web pages are not displaying and the web server appears to be on when accessing it from the localhost (wget http://localhost) then disable or flush the iptables (/usr/sbin/iptables --fliush). You should also set this as a start up option for the OS. - Use mod_rewrite to use modern URLs.
MySQL Settings
- Use --skip-name-resolve. - Use --skip-bdb (if you're not using it). - Use --skip-innodb (if you're not using it). - Set a log for slow queries. - Set the max_connections to a high value. - Do not set a user with a wildcard ip-address. Only setup users with a specific ip. - Use Query Caching for frequently used queries.
PHP Settings
- Disable Magic Quotes. - Disable Register Globals. - Disable Short Tags. - Disable ERROR REPORTING if the website is not in development mode. - Enable HTTP Only Session Cookies. - Set Session Cookies to only be cookies (and not URL's). - If sessions do not work, then set the session save path to a directory where the apache user has access to. - Use Gzip Compression.
Optimizing Concepts
- Use an optcode cache for PHP (Eaccelerator). - Consider using a static domain for CSS and JS files (this way the same cookies for the website won't be sent on each request). - If your website uses alot of CSS and JS files per page, bundle all of them together into one request using mod_rewrite and php [url] - For Apache, use the lingerD module (this reduces the amount of resources that are used when an apache connection is closed).
Here are some links for optimizing your server build:
I am running IIS 6 for testing & developing web sites offline before uploading the.But i am having little problem reagarding name server and how to configure sub-domain in name server,
I have 2 servers, 1 has its DNS sorted out, and I have a domain on it. The other is an unmanned dedicated server. I need to configure plesk, and I understand it needs a valid DNS to function.
What I want from the second server is simply for its pages, content etc to be accessed via the IP address, not a domain, as it is purely a media server. So how can I configure this? I created a virtual domain but the plesk server shows the default folder content and not the virtually created one, how can I get the server to point to my virtually created folder content?
when i set the Backup Destination to ( /home/cpbackup/daily/) this error appear to me
Quotas cannot be built! Your cpbackup destination is on a filesystem which has quotas enabled. Please move it to a filesystem which does not have quotas turned on or a separate partition/disk slice mounted at /backup.Backup has been disabled to prevent quota problems...
I want to include script wpisz.php from /srv/www/vhosts/default/htdocs into /srv/www/vhosts/domena.pl/httpdocs/, but i recive this error:
Code: Warning: main() [function.main]: open_basedir restriction in effect. File(/srv/www/vhosts/domena.pl/httpdocs/wpisz.php) is not within the allowed path(s): (/srv/www/vhosts/default/htdocs:/tmp) in /srv/www/vhosts/default/htdocs/index.php on line 3
Warning: main(/srv/www/vhosts/domena.pl/httpdocs/wpisz.php) [function.main]: failed to open stream: Operation not permitted in /srv/www/vhosts/default/htdocs/index.php on line 3
Warning: main() [function.include]: Failed opening '/srv/www/vhosts/domena.pl/httpdocs/wpisz.php' for inclusion (include_path='.:/usr/share/php') in /srv/www/vhosts/default/htdocs/index.php on line 3
So, I ask you to help me to set it up (propably open_basedir) in that way in which will it work fine. But please.. use a simple language and describe the solution step-by-step because I'm not doing well whith this..
to configure mod_wodan but received no response. As I couldn't do it myself, I'm now trying to install mod_proxy. Bellow are the relevant sections of the httpd.conf file. The problem is that, though the web server starts correctly, I can't access the [url]. ......................................................
root@host [~]# pecl install fileinfo WARNING: "pear/Fileinfo" is deprecated in favor of "channel://php-src/ext/fileinfo/in php sources" WARNING: channel "pear.php.net" has updated its protocols, use "channel-update pear.php.net" to update downloading Fileinfo-1.0.4.tgz ... Starting to download Fileinfo-1.0.4.tgz (5,835 bytes) .....done: 5,835 bytes 3 source files, building running: phpize Configuring for: PHP Api Version: 20041225 Zend Module Api No: 20060613 Zend Extension Api No: 220060519 building in /var/tmp/pear-build-root/Fileinfo-1.0.4 running: /root/tmp/pear/cache/Fileinfo-1.0.4/configure checking for egrep... grep -E checking for a sed that does not truncate output... /bin/sed checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... configure: error: cannot run C compiled programs. If you meant to cross compile, use `--host'. See `config.log' for more details. ERROR: `/root/tmp/pear/cache/Fileinfo-1.0.4/configure' failed
./configure is looking for the configuration program called MagickWand-config, but my configuration program in the /ext/magickwand directory was simply configure. I just did a cp configure MagickWand-config and then the ./configure proceeded without any problems.
I don't know why I typed SMTP in the title. I meant just the mail server. I just posted a message saying that my VPS is down due to FDCServers being down as they supply my host.
I can live with a 24 hr blackout on my site (however definitely not happy about it).
What I can't live with is having my mail.mydomain.com server being down at all. I run my VPS and host a few sites from it including a few clients. I need to make sure that my email doesn't go down when my VPS goes down.
How can I go about this? If I purchase a second VPS plan can I have that run just my email server for me? If so, how much in resources do I need? Will a cheap plan do the trick (ie. 64mb Ram or something)?
my current dedi server and want to configure shoutcast for the server. I have install the shoutcast located in /usr/local/shoutcast.
Just curious one of my customer would like to use the shoutcast so how can i create a user for them? should i install manually for each of my customer that want to host shoutcast?
I am not sure what forum this is for but I think I have the right one. I am having a heck of a time getting my IIS server to parse files with the .css extension properly. Can someone give a newb some advice on how to do this?
I think it is IIS 6.
The problem arose when I tried to use external style sheets and while IE handles them fine Firefox does not. I have been told this is because of the way my server deals with the css extension.
ns2.mywebsite.net. IN NS ns1.mywebsite.net. ns2.mywebsite.net. IN NS ns2.mywebsite.net. ns2.mywebsite.net. IN A 208.109.108.10
localhost.ns2.mywebsite.net. IN A 127.0.0.1
ns2.mywebsite.net. IN MX 0 ns2.mywebsite.net.
mail IN CNAME ns2.mywebsite.net. www IN CNAME ns2.mywebsite.net. ftp IN CNAME ns2.mywebsite.net.
After i have restartet named :
service named start
This is the output in /val/log/message
Code: Aug 19 07:54:33 ip-208-109-108-10 named[12209]: starting BIND 9.3.4-P1 -u named -c /etc/named.caching-nameserver.conf -t /var/named/chroot Aug 19 07:54:33 ip-208-109-108-10 named[12209]: found 2 CPUs, using 2 worker threads Aug 19 07:54:33 ip-208-109-108-10 named[12209]: loading configuration from '/etc/named.caching-nameserver.conf' Aug 19 07:54:33 ip-208-109-108-10 named[12209]: listening on IPv6 interface lo, ::1#53 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: listening on IPv4 interface lo, 127.0.0.1#53 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: command channel listening on 127.0.0.1#953 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: command channel listening on ::1#953 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone 0.in-addr.arpa/IN/localhost_resolver: loaded serial 42 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone 0.0.127.in-addr.arpa/IN/localhost_resolver: loaded serial 1997022700 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone 255.in-addr.arpa/IN/localhost_resolver: loaded serial 42 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN/localhost_resolver: loaded serial 1997022700 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone localdomain/IN/localhost_resolver: loaded serial 42 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone localhost/IN/localhost_resolver: loaded serial 42 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone mywebsite.net/IN/localhost_resolver: loaded serial 2007081900 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: /var/named/ns1.mywebsite.net.db:1: no TTL specified; using SOA MINTTL instead Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone ns1.mywebsite.net/IN/localhost_resolver: loaded serial 2007081900 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: /var/named/ns2.mywebsite.net.db:1: no TTL specified; using SOA MINTTL instead Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone ns2.mywebsite.net/IN/localhost_resolver: loaded serial 2007081900 Aug 19 07:54:33 ip-208-109-108-10 named[12209]: running Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone mywebsite.net/IN/localhost_resolver: sending notifies (serial 2007081900) Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone ns1.mywebsite.net/IN/localhost_resolver: sending notifies (serial 2007081900) Aug 19 07:54:33 ip-208-109-108-10 named[12209]: zone ns2.mywebsite.net/IN/localhost_resolver: sending notifies (serial 2007081900)
I have changed at my registrar the DNS adresses to NS1.mywebsite.net and NS2.mywebsite.net, the result is that work only NS1.mywebsite.net:
Code: [url] --> don't work [url] --> work [url] --> don't work
I got dedicated server with Windows Server 2k3 OS and have not configured it yet. I've installed Serv-U and Apache 2 (PHP, MySQL will be the next step). But I can't open my Website from home (from server there is no problems). And I can't get into my FTP server either. I scanned ports from home to figure that out. 21 for FTP is seen. 80 http is not seen. However on the server I did "netstat -an" and it showed the port 80 listening. So why can't I reach my FTP server and open my site? Is the problem in Windows Server 2k3 configuration?
(I am using apache 2.2.25).I have this "HTML5 and CSS all in one for dummies" Book. And it tells me I have to configure the .conf file to make apache work with PHP.
At this point I have only edited the Document root folder. The book tells me to find a Loadmodule with an # with a mention of PHP (I'll put the text of the book at the end) and to add an "addtype" statement. If have found neither and when I add the manually the server doesnt work.how can I make PHP work? Also, I have noticed that the Apache commands in CMD don't work. I am running windows 8.1. URL....