<?php $prev_day = 30; $prev_hari = mktime(0,0,0,date("m"),date("d")-$prev_day,date("Y")); echo "30 hari sebelum tanggal sekarang = ".date("Y-m-d",$prev_hari); echo "tanggal sekarang = ".date("Y-m-d"); ?>
Search This Blog
Monday, April 14, 2014
menampilkan tanggal sebelum tanggal hari ini dengan php
Thursday, April 10, 2014
mengaktifkan modul mCrypt di Ubuntu
sudo ln -s /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available
sudo php5enmod mcrypt
sudo service apache2 restart
Monday, April 7, 2014
MEMBUAT SERVER CLOUD STORAGE SENDIRI PADA JARINGAN LAN
Saya sudah pernah menulis tentang layanan cloud storage yang bisa kita gunakan seperti Dropbox, Google Drive, dan Ubuntu One. Nah tulisan kali ini akan membahas tentang cara bagaimana membuat server cloud storage sendiri pada jaringan lokal (LAN). Perangkat lunak yang saya gunakan untuk server cloud storage ini menggunakan distro Linux Ubuntu 12.04 sebagai sistem operasi servernya, LAMP untuk web server dan database, dan yang terakhir ownCloud sebagai perangkat lunak aplikasi untuk cloud storagenya.
Change MySQL Password on Zentyal
1.Change the default password in the config file for Zentyal
2. Copy and paste the password to a text file for root login later. Comment out the password in the file and list your new password for mysql. Then press ctrl 'x' then 'y'
3. Stop the MySQL Server.
4. Start the mysqld configuration
5. Login to MySQL as root. EDIT: Use original password in "ebox-zarafa.passwd", the one you commented out in step 2
6. Replace YOURNEWPASSWORD with your new password!
Code:
sudo nano/var/lib/zentyal/conf/zentyal-mysql.passwd
3. Stop the MySQL Server.
Code:
sudo /etc/init.d/mysql stop
Code:
sudo mysqld --skip-grant-tables &
Code:
mysql -u root
Code:
UPDATE mysql.user SET password=password('your new pass') WHERE user='root' AND host='localhost'; FLUSH PRIVILEGES; exit;
sudo /etc/init.d/mysql start
Subscribe to:
Posts (Atom)
-
On 1st July 2014 , Zentyal developers announced the release of Zentyal Linux 3.5 Community Small Business Server , a native drop-in repla...
-
This tutorial will demonstrate how you can access and manage your Zentyal 3.4 Community Edition as a Primary Domain Controller from a W...