edit vpn ipsec site-to-site rename peer X to peer Y
Category Archives: VPS
chnage ipsec site-to-site peer address
set memory dom0
/opt/xensource/libexec/xen-cmdline –set-xen dom0_mem=4096M,max:4096M
Echoman VPS Review
We have been using Echoman VPS servers for about a year now.
So far we have had no troubles at all with the service, uptime has been good, and customer support is always willing to go the extra mile to help.
With their servers being located in Melbourne, Australia. Latency is super low, which is especially good for Australian clients to have that instant feel.
We also did some benchmarking using Server bear, and the Echoman servers certainly hold their own in comparison to the other Australian VPS VDS providers.
If you are in the market for a VPS, or are sick of the excuses from your current host, give Echoman a try!
Verify your emails!
Need to check if you emails are being sent out correctly?
Need verification of your SPF and DKIM settings?
check-auth@verifier.port25.com
Fire off an email to
and sit back and wait for the response
The VDI is unavailable.
List all VDIs
xe vdi-list
Forget all VDIs of the VM that cannot start.
xe vdi-forget uuid=
Rescan SR, and the true VDIs will be displayed. Reattach these to the VM and then restart.
vyatta – xenserver
http://myvirtualfunction.net/archives/128
Change Pool Master
List all hosts
xe host-list
Promote slave
xe pool-designate-new-master host-uuid=
If the pool master is down… We need to promote a slave forcibly to master by….
xe pool-emergency-transition-to-master
xe pool-recover-slaves
Xenserver Pool slave loses management interface
Can ping XenServer Master, and can Ping Management interface – however XenAPI appears down?
pool-emergency-reset-master master-address=
This will reset the management interface and should bring back up networking for dom0
Postgresql 9.0 Centos Install and Config
Download repo
wget http://yum.pgrpms.org/reporpms/9.0/pgdg-centos-9.0-2.noarch.rpm
Install repo
rpm -i pgdg-centos-9.0-2.noarch.rpm
Install Postgres
yum install postgresql90-server
Initialise DB
service postgresql-9.0 initdb
Start Service
service postgresql-9.0 start
Turn levels on
chkconfig --levels 235 postgresql-9.0 on
Edit conf file
nano /var/lib/pgsql/9.0/data/pg_hba.conf
Change IDENT to TRUST at bottom of file (all fields)
Edit postgresql.conf
Change listen 'localhost'
to
listen '*'
If using phppgadmin, you need to edit config.inc.php and set security to false to use the web interface.
To restore a DB
# psql -U
php-wkhtmltox
wkhtmltox is a great piece of kit to convert webpages to PDF format.
It is – however – an absolute Pita to install, as there are minimal resources on the net for installing this onto a Linux Server.
The first step is to download both the static library
libwxhtmltox
and the wkhtmltox static binary
wkhtmltopdf
Both of these can be downloaded from the Google Code repository found HERE Download the correct files for your server (i386 or amd64).
The will be packed in the unusal bunzip2 format, to exact type
bunzip2 #filename#
Then tar the file out with
tar xvf #filename#
copy the wkhtmltox directory to /usr/local/include
copy the lib/libwkhtmltox.so to /usr/local/lib/
unpack wkhtmltopdf and copy to a dir which is symlinked so you can use the CLI version from anywhere in your shell.
To add the PHP-extension requires a little more trickery.
Firstly download the source from HERE
unpack and run these commands
phpize
./configure
make test
make install
If the make test fails, it usually will mean that php was unable to load the library, so you need to add the following .
Go to
/etc/ld.so.conf.d/
and edit (or create if it doesn’t exist)
usr-local-lib.conf
add the following path
/usr/local/lib
then in your php.ini file add
extension=phpwkhtmltox.so
restart your web server, and check your phpinfo() to make sure the phpwkhtmltox extension has been loaded.
If you are installing on 32bit Centos 5.x you may have a very hard time trying to figure out why the phpize/configure fails. It usually means that you don’t have fontconfig installed, or it is an older version.
If you want to produce PDF’s from a site that is SSL enabled, you will fail… miserably… WKHTML 0.11 breaks UNLESS openssl-devel package has been installed… I lost 4 years of my life and now have a head full of grey hair. Hopefully this little tid bit of information helps some other poor soul.
You may also find that the rendered PDF’s have garbled boxes, you will need these fonts installed – on Centos
yum install urw-fonts
Recent Comments