New IBM server has arrived, its IBM X3100-42X. Standard install required; DNS, LAMP and OpenSSH server on Ubuntu Server 9.10. Problem came when I forgot password for MySQL. I think the solution isn’t far from what I done in FreeBSD. First attempt login to MySQL server : # mysql -uroot -p Enter password: ERROR 1045 […]
FreeBSD 8.0 RELEASE has been released, get your iso or update your source now!
While waiting for official announcement I see that FreeBSD 8.0 iso file just replace 8.0RC3. Quick download iso file for FreeBSD 8.0 Release : Bootonly Disc1 DVD LiveFS Memory Stick Update via source using csup or cvsup set to : RELENG_8_0 for release or RELENG_8 for stable Update via freebsd-update : freebsd-update upgrade -r 8.0-RELEASE
Download FreeBSD 8 RC3 iso file
FreeBSD 8 RC3 already out, ready to test for all your machine. Choose your favourite forms : BootOnly CD (disc 1) DVD LifeFS MemStick Upgrade method : cvsup, use “RELENG_8_0” freebsd-update ( freebsd-update upgrade -r 8.0-RC3 ) More information for freebsd-update available here. More information about this RC please read release announcement.
Open network access for mysql on ubuntu server
Error message came out when I try to access new vps server : $ mysql -ubox-p -h box.rasyid.net Enter password: ERROR 2003 (HY000): Can’t connect to MySQL server on ‘box.rasyid.net’ (61) Edit my.cf file : # nano /etc/mysql/my.cnf find this line : bind-address          = 127.0.0.1 add # in the front into #bind-address          = 127.0.0.1 save […]
Create tar.gz in OpenSolaris
I need to make backup for our public_html directory using tar command I used to use : tar cvzf filename.tar.gz directory_name It work in linux or bsd but I have different situation with OpenSolaris : # uname -a SunOS TGLxxxxxxx 5.11 snv_86 i86pc i386 i86xpv # tar cvzf public_html.tar.gz public_html tar: z: unknown function modifier […]