شب بخیر
شاید این مطلبی که اینجا مطرح میکنم خیلی مخاطب عمومی نداشته باشه. توضیح مختصر اینکه Trellis Desk یک سیستم مدیریت ارتباط با مشتری و Ticketing رایگان از شرکت َACCORD5 هست که اینترفیس جذاب و ساده ای داره، اما متاسفانه داکیومنت جامع و کاملی برای نصب و کاربریش وجود نداره.
در پایان مراحل نصب مشکلی پیش میاد و اون مشکل اینه که صفحه اول ورود به نرم افزار بصورت یک صفحه سفید و خالی باز میشه و دیگر هیچ.
با وجود اینکه تقریبا اطلاعات من در مورد برنامه نویسی مخصوصا زبان برنامه نویسی PHP نزدیک به یک میلیونیوم اتم گاز هلیوم تخمین زده شده، بعد از کلی کلنجار رفتن و کمک دو تن از همکاران عزیز و مقداری گوگلینگ، با تغییر و اصلاح کد برنامه به صورت زیر مشکل به خیر و خوشی حل و فصل شد:
If you forgot your root password for your debian server use the following procedure to reset.
Boot to the GRUB menu. Then, press <e> (for edit) before Linux has a chance to boot.
Using your keyboard arrow keys, move the cursor down a line or so, and press <e> (for edit) again, you should now be on the kernel line, and press <End> to go out to the very end of that line. Now hit the spacebar once, if necessary, to add a space, and then add one of the folllowing:
init=/bin/bash
or
init=/bin/sh
Then press <Enter>, and you're back at the kernel line, press <b> (for boot) and the computer will proceed to boot to a root prompt.
At this point, the root file system is still mounted read-only, so enter the following command:
mount -n -o remount,rw /
Then type:
passwd
Enter your new password. Retype if asked to confirm.
Then restart the machine by typing:
reboot
Now you should be able to login with your new root password as required.
Linux Debian - Set Time Zone
جهت تنظیم Time Zone بر روی سرور لینوکس Debian از دستور زیر استفاده می شود:
dpkg-reconfigure tzdata
ZABBIX 3.0
:: The Enterprise-class Monitoring Solution for Everyone ::
سلام ؛ خدا قوت.
از اونجا که به تازگی شرکت ZABBIX نسخه LTS و جدید نرم افزار مانیتورینگ خودشو به نسخه شماره 3 ارتقائ داده ، و من هم برای نصب این نسخه به نسبت ورژن قبلی وقت بیشتری رو صرف کردم؛ توی این پست قصد دارم اون نکات کلیدی که در هنگام نصب انرژی بیشتری ازم گرفت رو خیلی شسته رفته با شما به اشتراک بزارم. امیدوارم شما هم با نصب و بهره برداری از این نرم افزار مانیتورینگ شبکه از امکانات و ویژه گیهای منحصر به فرد اون لذت ببرید.
با توجه به تجربه نه چندان دلچسب در خصوص استفاده از موارد 1 و 3، من قصد دارم در اینجا در خصوص مراحل نصب این نرم افزار به روش شماره 2 یعنی دانلود و کامپایل سورس توضیح بدم.
روش نصب نرم افزار ZABBIX به روش دانلود و کامپایل سورس بصورت مفصل و البته به زبان انگلیسی در لینک https://www.zabbix.com/documentation/3.0/manual/installation/install_from_packages توسط شرکت زبیکس تشریح شده ولی من احساس میکنم در بعضی قسمت ها سلسله مراتب کار رعایت نشده و یا با توجه به توضیحات ناقص و مبهم باعث سردرگمی افراد بویژه کاربرانی که مثل من زیاد سررشته ای از کاربری حرفه ای سیستم عامل لینوکس و خط فرمان Shell Script ندارند میشه.
مرور مراحل نصب نرم افزار از طریق دانلود و کامپایل سورس:
# wget http://repo.zabbix.com/zabbix/3.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.0-1+trusty_all.deb # dpkg -i zabbix-release_3.0-1+trusty_all.deb # apt-get update
# apt-get install zabbix-server-mysql zabbix-frontend-php
# apt-get install zabbix-agent
shell> mysql -uroot -p<password> mysql> create database zabbix character set utf8 collate utf8_bin; mysql> grant all privileges on zabbix.* to zabbix@localhost identified by '<password>'; mysql> quit;
# cd /usr/share/doc/zabbix-server-mysql # zcat create.sql.gz | mysql -uroot zabbix
# vi /etc/zabbix/zabbix_server.conf DBHost=localhost DBName=zabbix DBUser=zabbix DBPassword=zabbix
# service zabbix-server start
php_value max_execution_time 300 php_value memory_limit 128M php_value post_max_size 16M php_value upload_max_filesize 2M php_value max_input_time 300 php_value always_populate_raw_post_data -1 # php_value date.timezone Europe/Riga
# service apache2 restart
:: موفق باشید ::
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet static address 192.168.0.100 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.1 |
127.0.0.1 localhost.localdomain localhost 192.168.0.100 server1.example.com server1 # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters ff02::3 ip6-allhosts |