By default, some of the application installation provide you a sample configuration file. Usually the sample of configuration will end with name like *.sample, *.default and so on. Let say you have 20 of *.sample files and it will take you some time to copy, move or rename one by one. Lets do some quicker way which will save more time.
Create a sample file file random name ended with *.sample. Example
touch apple.sample.cfg
touch microsoft.sample.cfg
touch php.sample.cfg
touch config.sample.cfg
touch apache.sample.cfg
touch mysql.sample.cfg
touch pgsql.sample.cfg
touch cacti.sample.cfg
touch wordpress.sample.cfg
touch jessicaalba.sample.cfg
Now you have all the sample configuration, you are going to use them. Are you going to copy one by another and change the same with .cfg prefix? We can do it, in a better and faster way.
Make a new directory to store all the sample file
mkdir sample
cp *.sample.cfg sample/
After that, go to sample directory and copy the files to a location
cd sample
for d in `ls *.sample.cfg`; do cp $d `echo $d | sed s/sample.cfg/cfg`; done
That one simple line will easily save you 1-2 minutes.
takizo posted on May 18th, 2010 in Systems category | Tags: copy, linux, linux command, sed, unix, unix command
3 Comments »
I believe most system admin does remote access to the server. Who doesn’t enable SSHD on FreeBSD? Almost every new FreeBSD installation, the first thing I will do after installation is enable SSHD Service on FreeBSD. Start the service and remote access from laptop, with a cup of coffee!
To enable SSHD on FreeBSD
- Edit the file: vi /etc/rc.conf
- Add: sshd_enable=”YES”
- To start sshd service: /etc/rc.d/sshd start
If it’s the first time you enable SSHD, it will generate the keys for the first time.
takizo posted on May 18th, 2010 in Systems category | Tags: freebsd, remote access, serivces, ssh, unix
Nobody dare to comment yet »
Disabled Sendmail Service on FreeBSD is slightly different compare to Linux. We usually disabled Sendmail Service and configure exim on FreeBSD. Sendmail service can be disabled via /etc/rc.conf.
Put these lines into /etc/rc.conf
sendmail_enable="NONE"
After that restart sendmail service
/etc/rc.d/sendmail restart
If you would like sendmail to be able to host outgoing email. Put these lines in /etc/rc.conf
sendmail_enable="NO"
After that restart sendmail service
/etc/rc.d/sendmail restart
takizo posted on May 14th, 2010 in lost+found category | Tags: email, freebsd, sendmail, server
Nobody dare to comment yet »
You are running a recursive DNS server and would like to find out the statistic of your user browser behavior (Whether they browse Facebook or Google?). Turn on DNS query logs will allow you to find out the statistic. To turn on DNS query log in Bind, configure lines below on named.conf
logging{
channel query_logging {
file "/var/log/query.log" versions 3 size 10m;
severity debug 3;
print-time yes;
print-severity yes;
print-category yes;
};
category queries {
query_logging;
};
};
To turn on query logging while DNS service is running; you need to to rndc querylog and check the status with rndc status
shell> rndc querylog
shell> rndc status
version: 9.x.x
number of zones: 1200
debug level: 3
xfers running: 0
xfers deferred: 0
soa queries in progress: 0
query logging is ON
recursive clients: 0/0/1000
tcp clients: 0/100
server is up and running
query logging is ON indicates that DNS query logging is activated.
takizo posted on May 12th, 2010 in Systems category | Tags: bind, dns, logging
Nobody dare to comment yet »
By default, MySQL root privileges user is “root”, I always remove “root” userid once I got MySQL installed, mainly for security purpose, secondly I do not want stupid thing happened like someone able to brute force into MySQL database.
You can create “root” alike privilege user in MySQL by following the step below;
- Access to mysql /usr/local/bin/mysql
- mysql> GRANT ALL PRIVILEGES ON *.* TO ‘yourusername’@'localhost’ IDENTIFIED BY ‘yourpasswordhere’ WITH GRANT OPTION;
- mysql> flush privileges;
- mysql> quit;
You can add a few more privileges user if you have more than 1 person to admin MySQL Database.
takizo posted on May 11th, 2010 in Systems category | Tags: database, mysql, password, privileges, user
Nobody dare to comment yet »