<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4068348</id><updated>2011-11-28T06:24:54.076+07:00</updated><category term='squid'/><category term='install'/><category term='server'/><category term='lamp server'/><category term='configure'/><category term='ubuntu server'/><category term='fedora'/><category term='ubuntu'/><category term='proxy server'/><title type='text'>am3n Linux Server</title><subtitle type='html'>My Logs while using Linux as a Server (Slackware, CentOS, RedHat, Fedora, Ubuntu)</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://am3nlinuxserv.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>28</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4068348.post-5313108716436506672</id><published>2008-04-29T14:35:00.000+07:00</published><updated>2008-04-29T14:36:13.297+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu server'/><category scheme='http://www.blogger.com/atom/ns#' term='install'/><category scheme='http://www.blogger.com/atom/ns#' term='configure'/><category scheme='http://www.blogger.com/atom/ns#' term='lamp server'/><category scheme='http://www.blogger.com/atom/ns#' term='ubuntu'/><title type='text'>Ubuntu as LAMP server</title><content type='html'>&lt;p&gt;Installing Ubuntu as LAMP (Linux, Apache, Mysql, PHP - Perl - Python) Server is very easy. As it already has the choice available if you installing your Ubuntu using Ubuntu server CD. It'll install Apache with mod_php and PHP and Mysql along with php_mysql module. All tight up together. Not like in Fedora/CentOS/Redhat where you install Apache without PHP, which may lead to miss some configuration.&lt;/p&gt;Simple and straight forward configuration is available on &lt;a target="_blank" mce_href="http://www.ubuntugeek.com/ubuntu-710-gutsy-gibbon-lamp-server-setup.html" href="http://www.ubuntugeek.com/ubuntu-710-gutsy-gibbon-lamp-server-setup.html"&gt;UbuntuGeek.com&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-5313108716436506672?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/5313108716436506672'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/5313108716436506672'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2008_04_27_archive.html#5313108716436506672' title='Ubuntu as LAMP server'/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-7667010539000917884</id><published>2008-04-29T09:52:00.003+07:00</published><updated>2008-04-29T14:37:20.190+07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='server'/><category scheme='http://www.blogger.com/atom/ns#' term='fedora'/><category scheme='http://www.blogger.com/atom/ns#' term='proxy server'/><category scheme='http://www.blogger.com/atom/ns#' term='squid'/><title type='text'>5 Minutes Squid</title><content type='html'>Using Fedora Core 4&lt;br /&gt;based on &lt;a href="http://www.redhatmagazine.com/2007/04/11/squid-in-5-minutes/"&gt;Red Hat Magazine | Squid in 5 minutes&lt;/a&gt;&lt;br /&gt;All command running as root&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Check if squid is available:&lt;br /&gt;# rpm -q squid&lt;/li&gt;&lt;li&gt;If squid available, it'll output something like&lt;br /&gt;squid-2.5.STABLE9-7&lt;br /&gt;if not then execute the command:&lt;br /&gt;# yum install squid&lt;/li&gt;&lt;li&gt;Configure squid: (just added on the last line)&lt;br /&gt;# cp /etc/squid/squid.conf ~&lt;br /&gt;# vi /etc/squid/squid.conf&lt;br /&gt;http_port 8080&lt;br /&gt;acl intranet src 192.168.0.0/24&lt;br /&gt;http_access allow intranet&lt;/li&gt;&lt;li&gt;Info:&lt;br /&gt;Our proxy server running on port 8080 so make sure you open that port on firewall&lt;br /&gt;and the proxy only allow connection from network 192.168.0.0/24&lt;/li&gt;&lt;li&gt;Turning on Squid:&lt;br /&gt;# service squid start&lt;br /&gt;# chkconfig squid on&lt;/li&gt;&lt;li&gt;Check Squid status:&lt;br /&gt;# service squid status&lt;br /&gt;# tail -f /var/log/messages/&lt;br /&gt;# netstat -pant | grep 8080&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-7667010539000917884?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/7667010539000917884'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/7667010539000917884'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2008_04_27_archive.html#7667010539000917884' title='5 Minutes Squid'/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-7849830087060586803</id><published>2008-03-19T15:16:00.000+07:00</published><updated>2008-03-19T15:19:43.141+07:00</updated><title type='text'></title><content type='html'>Since I almost forgot this blog login and password so I started to blog my linux server experience on another free web hosting. So visit &lt;a href="http://am3n.profusehost.net"&gt;am3nblog &lt;/a&gt;if you want to know what missed. Most of blog is about centos, qmailtoaster and tips about linux.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-7849830087060586803?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/7849830087060586803'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/7849830087060586803'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2008_03_16_archive.html#7849830087060586803' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-7327566586599201762</id><published>2008-02-21T15:57:00.000+07:00</published><updated>2008-02-21T16:01:57.388+07:00</updated><title type='text'></title><content type='html'>last week my friend doing same changes on his centos box, try to apply new samba config. somehow he forgot to do it. and samba can't be restarted. so he restart the whole server. but then after restarting the server, it wont boot properly.&lt;br /&gt;&lt;br /&gt;after checking what happen it seems after loading network driver, kernel sudddenly panic.&lt;br /&gt;so I switch to init 1, disable network service. restart the box, and whala.... centos recognized the system as a new box, as kudzu pop-up and asking do you want to configure a new network card, a new mouse, etc, etc....&lt;br /&gt;&lt;br /&gt;after doing same configuration on network and samba daemon. the box boot up properly.&lt;br /&gt;yuuu hu....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-7327566586599201762?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/7327566586599201762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/7327566586599201762'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2008_02_17_archive.html#7327566586599201762' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-91174461</id><published>2003-03-22T17:49:00.000+07:00</published><updated>2003-03-22T17:49:29.466+07:00</updated><title type='text'></title><content type='html'>for ftp server installed proftpd&lt;br /&gt;for phpnuke already installed and running well&lt;br /&gt;I am also installing phpbb = php script for forum&lt;br /&gt;nice!!!&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-91174461?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/91174461'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/91174461'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_03_16_archive.html#91174461' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-91174424</id><published>2003-03-22T17:47:00.000+07:00</published><updated>2003-03-22T17:47:55.186+07:00</updated><title type='text'></title><content type='html'>slackware just announce their new release!!!&lt;br /&gt;slackware 9.0 &lt;br /&gt;now I am downloading it next i'll upgrade my system&lt;br /&gt;&lt;br /&gt;yu.....hu..........!!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-91174424?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/91174424'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/91174424'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_03_16_archive.html#91174424' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-88681263</id><published>2003-02-07T09:17:00.000+07:00</published><updated>2003-02-07T09:17:07.550+07:00</updated><title type='text'></title><content type='html'>oh ya almost forgotten, I am also already installed mirc server and ftp server&lt;br /&gt;tapi gue lupa nama packagenya apa???&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-88681263?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/88681263'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/88681263'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_02_02_archive.html#88681263' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-88681158</id><published>2003-02-07T09:14:00.000+07:00</published><updated>2003-02-07T09:14:20.596+07:00</updated><title type='text'></title><content type='html'>trial and configuration for linuxserver is stopped for now because I'm concentrating on linuxdesktop and my linuxserver does'nt have powersupply&lt;br /&gt;(dikanibal buat keperluan user)&lt;br /&gt;&lt;br /&gt;yang terakhir kali di kerjakan akhir bulan Januari 2003 adalah instalasi phpnuke versi terakhir dengan konfigurasi utk website internal tsp&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-88681158?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/88681158'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/88681158'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_02_02_archive.html#88681158' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87576935</id><published>2003-01-17T13:07:00.000+07:00</published><updated>2003-01-17T13:07:28.853+07:00</updated><title type='text'></title><content type='html'>now in myserv packages for web installed are&lt;br /&gt;apache 2.0.43&lt;br /&gt;php 4.3.0&lt;br /&gt;mysql 3.23.54&lt;br /&gt;&lt;br /&gt;will install &lt;br /&gt;- phpnuke latest version&lt;br /&gt;- webalizer latest version&lt;br /&gt;- and mrtg latest version :)&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87576935?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87576935'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87576935'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87576935' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87576770</id><published>2003-01-17T13:03:00.000+07:00</published><updated>2003-01-17T13:03:18.630+07:00</updated><title type='text'></title><content type='html'>Jan 15, 2003&lt;br /&gt;Finding suitable configuration for installing php module&lt;br /&gt;&lt;br /&gt;Jan 16, 2003&lt;br /&gt;Download php source from php.net&lt;br /&gt;read the README and do&lt;br /&gt;install php with command&lt;br /&gt;'./configure' '--with-apxs2=/usr/local/apache2/bin/apxs' '--with-mysql=/usr/local/mysql' '--with-gd' '--with-zlib-dir=/usr/include/zlib.h'&lt;br /&gt;make&lt;br /&gt;make install&lt;br /&gt;&lt;br /&gt;for gd after I installing supported packages like freetypefont, libpng, xpm and other read the README&lt;br /&gt;&lt;br /&gt;create file phpinfo.php&lt;br /&gt;&lt;?&lt;br /&gt;phpinfo();&lt;br /&gt;?&gt;&lt;br /&gt;&lt;br /&gt;execute lynx http://localhost/phpinfo.php &lt;br /&gt;and success...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87576770?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87576770'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87576770'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87576770' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87419484</id><published>2003-01-14T22:04:00.001+07:00</published><updated>2003-01-14T22:04:57.423+07:00</updated><title type='text'></title><content type='html'>tomorrow will install mod_php&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87419484?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87419484'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87419484'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87419484' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87419445</id><published>2003-01-14T22:04:00.000+07:00</published><updated>2003-01-14T22:04:00.300+07:00</updated><title type='text'></title><content type='html'>I am not adding httpd and mysql to inetd because of some reason:&lt;br /&gt;not good to start inetd and mysql from inetd&lt;br /&gt;don't know how to start mysql from inetd&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87419445?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87419445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87419445'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87419445' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87412576</id><published>2003-01-14T18:37:00.000+07:00</published><updated>2003-01-14T18:37:05.450+07:00</updated><title type='text'></title><content type='html'>Install apache web server&lt;br /&gt;very..very .vvery easy just follow the README and now running in daemon mode...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87412576?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87412576'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87412576'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87412576' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87412561</id><published>2003-01-14T18:36:00.000+07:00</published><updated>2003-01-14T18:36:06.433+07:00</updated><title type='text'></title><content type='html'>Jan 12, 2003 &lt;br /&gt;Installation of LIDS (linux intrusion detection system) canceled due to no lids version available for my kernel version 2.5.3&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87412561?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87412561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87412561'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87412561' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87343014</id><published>2003-01-13T14:43:00.000+07:00</published><updated>2003-01-13T14:43:08.436+07:00</updated><title type='text'></title><content type='html'>By today I will submit describe in my logs how to install application in my server&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87343014?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87343014'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87343014'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87343014' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87342986</id><published>2003-01-13T14:41:00.000+07:00</published><updated>2003-01-13T14:41:49.636+07:00</updated><title type='text'></title><content type='html'>Make myllinux server can't reply when pings by another machine by adding &lt;br /&gt;echo "1" &gt; /proc/sys/net/ipv4/icmp_echo_ignore_all&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87342986?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87342986'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87342986'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87342986' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87342926</id><published>2003-01-13T14:39:00.000+07:00</published><updated>2003-01-13T14:39:41.180+07:00</updated><title type='text'></title><content type='html'>Jan 10, 2003&lt;br /&gt;Install package iptables for filtering use -- done installing but don't know how to use it altough already read man. and visit www.netfilter.org&lt;br /&gt;Install firewall named portsentry and using the option package filtering using iptables (after editing portsentry.conf)&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87342926?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87342926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87342926'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87342926' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87342740</id><published>2003-01-13T14:32:00.000+07:00</published><updated>2003-01-13T14:32:52.016+07:00</updated><title type='text'></title><content type='html'>Jan 9, 2003&lt;br /&gt;I want to run mysqld as a part of inetd but when I restart inetd the the mysqld not running&lt;br /&gt;so I run mysqld as a standalone server (daemon)&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87342740?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87342740'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87342740'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_12_archive.html#87342740' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87153975</id><published>2003-01-09T13:48:00.000+07:00</published><updated>2003-01-09T13:48:46.660+07:00</updated><title type='text'></title><content type='html'>need to how to configure access for mysql, how to run mysqld from inetd and learn mysql command lines :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87153975?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87153975'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87153975'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_05_archive.html#87153975' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87153813</id><published>2003-01-09T13:43:00.000+07:00</published><updated>2003-01-09T13:43:36.266+07:00</updated><title type='text'></title><content type='html'>Install mysql server&lt;br /&gt;it's very easy just follow the readme&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87153813?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87153813'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87153813'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_05_archive.html#87153813' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87107670</id><published>2003-01-08T18:30:00.000+07:00</published><updated>2003-01-08T18:30:41.843+07:00</updated><title type='text'></title><content type='html'>next time if you want to install linux for server you must install inetd&lt;br /&gt;for easy configuration of your server&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87107670?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87107670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87107670'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_05_archive.html#87107670' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87107495</id><published>2003-01-08T18:24:00.000+07:00</published><updated>2003-01-08T18:24:03.240+07:00</updated><title type='text'></title><content type='html'>Jan 7, 2003&lt;br /&gt;inetd = the super internet server running all server application from one command then the appropriate server/daemon will activated when there is a requests from clients.&lt;br /&gt;inetd.conf = contains inetd config what server/daemon to run when specifice service is requested by client. like this one below&lt;br /&gt;ssh        stream  tcp     nowait  root   /usr/sbin/tcpd  /usr/sbin/sshd -i&lt;br /&gt;service ssh is running by daemon sshd which wrapped by tcpd for security reason&lt;br /&gt;tcpd = control who can access the specific service&lt;br /&gt;file /etc/hosts.allow and /etc/hosts.deny&lt;br /&gt;/etc/services = type of services and on what port it running&lt;br /&gt;&lt;br /&gt;[answer for /etc/hosts.allow and /etc/hosts.deny and /etc/services are now found]&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87107495?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87107495'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87107495'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_05_archive.html#87107495' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-87006414</id><published>2003-01-06T21:10:00.000+07:00</published><updated>2003-01-06T21:10:39.326+07:00</updated><title type='text'></title><content type='html'>folder /var/log is containing logs which are created by syslogd and klogd&lt;br /&gt;for help type man syslog or man syslogd or man syslog.conf&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-87006414?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87006414'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/87006414'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_05_archive.html#87006414' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-86993296</id><published>2003-01-06T12:36:00.000+07:00</published><updated>2003-01-06T12:36:49.016+07:00</updated><title type='text'></title><content type='html'>Jan 2-4, 2003&lt;br /&gt;&lt;br /&gt;Looking for answer what is the purpose of /etc/hosts.allow, /etc/hosts.deny and /etc/services on the net and irc.&lt;br /&gt;Does it got something to do with Ipchains/Iptables or inetd?&lt;br /&gt;&lt;br /&gt;Got nothing/No Answer satisfied me.&lt;br /&gt;&lt;br /&gt;Will go on with the next step: Install Netfilter, LIDS and Firewall&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-86993296?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86993296'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86993296'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_05_archive.html#86993296' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-86993186</id><published>2003-01-06T12:33:00.000+07:00</published><updated>2003-01-06T12:33:31.310+07:00</updated><title type='text'></title><content type='html'>My Logs since Dec, 2002:&lt;br /&gt;&lt;br /&gt;Dec 27, 2002&lt;br /&gt;1. installing slackware 8.1 [Infolinux 7/II Oktober 2002]&lt;br /&gt;        with software series:&lt;br /&gt;        A - Base Linux System&lt;br /&gt;        AP - Various Application that do not need X&lt;br /&gt;        D - Development Program&lt;br /&gt;        F - FAQ lists, Howto&lt;br /&gt;        K - Kernel Linux Source&lt;br /&gt;        N - Networking (w/o the servers)&lt;br /&gt;&lt;br /&gt;Dec 28, 2002&lt;br /&gt;2. setting security [Infolinux 4/I/200]&lt;br /&gt;&lt;br /&gt;Dec 30, 2002&lt;br /&gt;3. re-compile kernel from kernel source&lt;br /&gt;3a. add new harddrive&lt;br /&gt;&lt;br /&gt;Dec 31, 2002&lt;br /&gt;4. install openssl from source&lt;br /&gt;5. install openssh from source&lt;br /&gt;&lt;br /&gt;Jan 1, 2003 [Happy New Year]&lt;br /&gt;1. Re-compile new kernel 2.5.53&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-86993186?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86993186'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86993186'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2003_01_05_archive.html#86993186' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-86831018</id><published>2003-01-02T22:40:00.000+07:00</published><updated>2003-01-02T22:40:42.866+07:00</updated><title type='text'></title><content type='html'>test #3&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-86831018?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86831018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86831018'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2002_12_29_archive.html#86831018' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-86825711</id><published>2003-01-02T19:29:00.000+07:00</published><updated>2003-01-02T19:29:47.866+07:00</updated><title type='text'></title><content type='html'>Second test to submit my log&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-86825711?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86825711'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86825711'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2002_12_29_archive.html#86825711' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry><entry><id>tag:blogger.com,1999:blog-4068348.post-86818330</id><published>2003-01-02T13:58:00.000+07:00</published><updated>2003-01-02T13:58:56.820+07:00</updated><title type='text'></title><content type='html'>Welcome to MyLinuxServer blog. I use this to logs what I did with mylinux box as a Documentation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4068348-86818330?l=am3nlinuxserv.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86818330'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4068348/posts/default/86818330'/><link rel='alternate' type='text/html' href='http://am3nlinuxserv.blogspot.com/2002_12_29_archive.html#86818330' title=''/><author><name>am3n</name><uri>http://www.blogger.com/profile/13510645921553765652</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author></entry></feed>
