Insights, updates, and deep dives into cybersecurity, cloud technology, and AI innovation.
This solution was given to us by the Ensim staff, as a paid support request. Hopefully, if you’re reading this, you will not have to buy a support ticket: To delete the sites manually you will have to do the following: 1. Find the siteID. sitelookup -d domainname 2.cd /etc/virtualhosting/mappings/ grep siteID * 3. Remove […]
AIX has a neat feature that allows to manage a system completely from a browser interface. Since AIX 6.1 TL3, this interface runs on port 80, which makes it easy to find it. However there might be several reasons one might not want to run the AIX Web Based System Manager. For example: Something else […]
To be able to report SPAM, Viruses, or any other problem with email, the system administrators need the full email headers. These can be easily found in Netscape or Mozilla Thunderbird, just by viewing the raw message source, or by selecting View Full Headers in the View menu. However in Outlook 2003 it is a […]
Here are the links to a number of Jahia README files: http://www.jahia.org/download/jahia4/4_0/update/readme.txt http://www.jahia.org/download/jahia4/4_0/patch/README_4_0_1.html http://www.jahia.org/download/jahia4/4_0/patch/README_4_0_2.html http://www.jahia.org/download/jahia4/4_0/patch/README_4_0_3.html http://www.jahia.org/download/jahia4/4_0/patch/README_4_0_4.html http://cvspub.jahia.org/cgi-bin/cvsweb.cgi/jahia/src/views/html/startup/Attic/readme.html?rev=1.68&content-type=text/html
IP audit web is an excellent tool to monitor traffic on a given interface, and create daily and monthly statistics. It is really made of 2 components: – IPAudit – IPAudit-web As of this writing the latest version is IPAudit-Web-1.0BETA9. It contains both packages bundled. Here are the steps to follow: wget http://umn.dl.sourceforge.net/sourceforge/ipaudit/ipaudit-web-1.0BETA9.tar.gz tar xvzf […]
From the command line, as the root user, run: # perl -MCPAN -e shell And then at the cpan command line run: cpan> install Module::Name Alternatively, using sudo on one line, as any user you can directly intall a module by running: sudo perl -MCPAN -e ‘install Module::Name’
usage: sitelookup [ -w ] [ -s ] [ -d ] [ -u ] [ -a ] [ domain,wp_user,site_handle,site_root,site_admin ] -w:wp_user is the top level unix user (admin1) -s:site_handle is the site equivalent of wp_user (site1) -d:domain is the hostname for a site (myco.com) -u:site_admin is the username for a site (bob) -a:returns info on […]
A) Converting a Name-based site to a ip-based sitelogin as root and run the command: EditVirtDomain -c ipinfo,namebased=0,nbaddrs=\[\],ipaddrs=\[new_ip_addr\] domain_namewherenew_ip_addr is the new ip addressdomain_name is the domain name of the site e.g. EditVirtDomain -c ipinfo,namebased=0,nbaddrs=\[\],ipaddrs=\[10.5.3.2\] mydomain.com B) Converting an ip-based site to a Name-based sitelogin as root and run the command: EditVirtDomain -c ipinfo,namebased=1,ipadrs=\[\] domain_namewheredomain_name […]
Bruce Guenter’s cvm librairies use Linux style sockets. That is usually fine on OpenBSD, except that the cvm_udp code opens a socket, and then uses sendto() which implicitly reoppens the socket. OpenBSD doesn’t like that, so here is the patch to fix cvm-0.18: — client.c.org Fri Feb 20 12:07:55 2004 +++ client.c Fri Feb 20 […]