Backup Server using rsync #1
Yes, you can use rsync as your backup system over the network.
Here is my real problem on site:
The box must not restart, shutdown or any downtime.
The firewall has configured with only couple of port opened ( SSH, ftp ) these port has been changed into un-usual port. ( lets say 30022 as SSH, and 30021 […]
About rsync
rsync is a software application for Unix systems which synchronizes files and directories from one location to another while minimizing data transfer using delta encoding when appropriate. An important feature of rsync not found in most similar programs/protocols is that the mirroring takes place with only one transmission in each direction. rsync can copy or […]
Advertisement
More about Linux, Hostings, Website, Server, Microsoft and various advertisements will appear below.Backup Server without restart the engine
Backup all the system is very important, many backup programs are available in internet but they are bootable disc.
The programs will start when the machine is restarting and booted from CD.
The problem is, the server is running and no way to turn it off even to restart it.
Based on that problem, I will try to […]
Apache with Samba or CIFS Shared Files
Web server and File server is good to be placed on different machine.
In my case, I have web server running apache+php+mysql under Centos Box, and File Server is on Windows Advanced Server 2000. The problem is apache cannot read the php file in Windows server.
All I have done :
I added line at fstab configuration
//192.168.1.3/data/media/code cifs […]
Kannel SMS gateway running as daemon
It is important to make kannel running as daemon, so it will easily to start-stop this service
Create file kannel in /etc/init.d
#!/bin/sh
#
# kannel This script takes care of starting and stopping the kannel \
# WAP gateway services (bearer/wap/smsbox).
# chkconfig: - 97 03
# description: The Kannel WAP and SMS gateway services
# config: /etc/kannel.conf
# Use start-stop-kannel
prog=”/usr/sbin/start-stop-kannel”
args=”–start –background –exec […]