Showing posts with label Server. Show all posts
Showing posts with label Server. Show all posts

Sunday, June 19, 2016

How to Install Zabbix Server 3.0 on linux environment

At first update all package on your system
[root@localhost ~]#yum -y update
[root@localhost ~]#rpm –import http://repo.zabbix.com/RPM-GPG-KEY-ZABBIX

Installing repository configuration package

Install the repository configuration package. This package contains yum configuration files.
[root@localhost ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
Retrieving http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
Preparing…                          ################################# [100%]
Updating / installing…
1:zabbix-release-3.0-1.el7         ################################# [100%]

Installing Zabbix packages

Now Install Zabbix packages. Example for Zabbix server and web frontend with mysql database.
[root@localhost ~]# yum -y install zabbix-server-mysql zabbix-web-mysql mysql mariadb-server httpd php
How to Install Zabbix Server 3.0 on linux environment

Creating initial database

Create zabbix database and user on MySQL. For instructions on doing that,
[root@localhost ~]# systemctl start mariadb
[root@localhost ~]# systemctl enable mariadb
[root@localhost ~]# mysql_secure_installation
In order to log into MariaDB to secure it, we’ll need the current
password for the root user.  If you’ve just installed MariaDB, and
you haven’t set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
OK, successfully used password, moving on…
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n] Y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
… Success!
Remove anonymous users? [Y/n] Y
… Success!
Disallow root login remotely? [Y/n] Y
… Success!
Remove test database and access to it? [Y/n] Y
– Dropping test database…
… Success!
– Removing privileges on test database…
… Success!
Reload privilege tables now? [Y/n] Y
… Success!

Cleaning up…
How to Install Zabbix Server 3.0 on linux environment
All done!  If you’ve completed all of the above steps, your MariaDB
installation should now be secure.
[root@localhost ~]# mysql_secure_installation
MariaDB [(none)]>

MariaDB [(none)]> create database zabbix_db;
Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]> grant all privileges on zabbix_db.* to zabbix@localhost identified by ‘redhat’;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]> exit
[root@localhost ~]# cd /usr/share/doc/zabbix-server-mysql-3.0.2/
[root@localhost zabbix-server-mysql-3.0.2]# gunzip create.sql.gz
[root@localhost zabbix-server-mysql-3.0.2]# mysql -u root -p zabbix_db < create.
sql

Starting Zabbix server process


Edit database configuration in zabbix_server.conf
[root@localhost ~]# vi /etc/zabbix/zabbix_server.conf
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=zabbix

Editing PHP configuration for Zabbix frontend

Apache configuration file for Zabbix frontend is located in /etc/httpd/conf.d/zabbix.conf. Some PHP settings are already configured.
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 Asia/Dhaka

After changing the configuration file restart the apache web server.
Install Zabbix Server 3.0 on linux
[root@localhost ~]# systemctl start httpd

Finally Start Zabbix server process by
[root@localhost ~]#service zabbix-server start


Now you login your zabbix and install web content with Database.

Sunday, June 5, 2016

How to Show My Computer Icon on Windows 2012, R2 Server

As mentioned earlier, this feature is not included by default. If you can manage the server without  My computer icon on desktop or other personalization options, better continue with it without installing additional features. But if you desperately want my computer icon then follow these steps.missing personalize option
We must install ‘Desktop Experience’ feature to get back personalization options which will help to get My computer back on Windows 2012 R2 server desktop.
Go to ‘Add Roles and Features’ in server dashboard, select ‘Role-based or Feature-based installation’ , do not select anything in Server Roles, and under Features select ‘Desktop Experience’ as mentioned below.
select desktop experience in features
Install other required features too.
You must restart the server after the installation.
restart screen
Even though this feature would have added several options but our concern is to get My computer icon on desktop.
After the restart you must be seeing the ‘Personalize’ from right click menu from desktop (which was not shown in earlier screenshot).
Show My Computer Icon on Windows 2012
Click on Personalize and ‘Change desktop icons’ at top left corner. It will bring back our traditional desktop icons settings like Windows 7 or 8.
Select the icons you want to show, in our case it is My Computer icon.
Show My Computer Icon on Windows 2012
That will show My computer icon on Windows 2012 and R2 server desktop.

Monday, March 14, 2016

How to Install Zimbra 8.6 on Ubuntu 14.04 Server

The Zimbra Collaboration Server is a mail server, collaborative web application and a web based mail server admin console in a single application. It provides LDAP, antivirus, antispam, collaboration features and a ajax webmail client. Zimbra is easy to use for administrators as well as end users due to its fast Ajax based web interface.

Prerequisites

  • Ubuntu Server 14.04 - 64bit
  • root privileges
  • Free space 25 GB
  • RAM 4 GB
My zimbra Server profile used in this tutorial:

Domain : sendaljepit.local
IP     : 192.168.1.101
Mail   : mail.sendaljepit.local

What we will do in this tutorial:
  • Install the prerequisite packages
  • Configure hostname and DNS Server
  • Download and Install Zimbra
  • Test the installation

Installation of prerequisites

Step 1 - connect to your server, get root privileges and install this package.
apt-get install libgmp10 libperl5.18 unzip pax sysstat sqlite3 dnsmasq wget

Configure hostname and DNS Server

In this tutorial will use the 'dnsmasq' resolving nameserver to speedup DNS lookups in Zimbra. Dnsmask has been installed as prerequisite in the first chapter, so we just have to configure it now:
Step 1 - Edit hostname and hosts
vim /etc/hostname
change your hostname with this 'mail.sendaljepit.local'.
Setting hostname
vim /etc/hosts
add this line:
192.168.1.101   mail.sendaljepit.local  mail
Setting host
Step 2 - Edit dnsmasq configuration
vim /etc/dnsmasq.conf
server=192.168.1.101
domain=sendaljepit.local
mx-host=sendaljepit.local, mail.sendaljepit.local, 5
mx-host=mail.sendaljepit.local, mail.sendaljepit.local, 5
listen-address=127.0.0.1
Step 3 - Reboot
sudo reboot

Installing Zimbra

Step 1 - Download Zimbra and extract it
wget https://files.zimbra.com/downloads/8.6.0_GA/zcs-8.6.0_GA_1153.UBUNTU14_64.20141215151116.tgz
tar -xvf zcs-8.6.0_GA_1153.UBUNTU14_64.20141215151116.tgz
cd zcs*
Step 2 - Run the Installer

./install.sh
At this step, zimbra will check the required packages and will ask you to agree to their installation.
Agreement Zimbra
and then choose the zimbra package :
Choose Zimbra Installation
here doesn`t need zimbra-dnscache, because in this tutorial use dnsmasq.
You need to wait, because this installation takes some time.
next step is configure "zimbra-store" for getting admin password. See the picture:
Configure Admin Pasword
Choose number "4" and enter. and then type your password:
Changing Password
Apply all Configuration:
Apply all configuration

and wait for Zimbra configuration finished.

Testing Zimbra

to test your zimbra server is running, you can type a command :
su - zimbra
zmcontrol status
try to access zimbra from web browser.  https://192.168.1.101/

Tuesday, March 1, 2016

Dell PowerEdge R330



Chassis: 1U rack
CPU: 3GHz Xeon E3-1220 v5
Memory: 32GB 2,133MHz 1.2V DDR4 (max 64GB)
Storage: 2 x 2TB Dell 7.2K NL-SAS SFF hard disks (max 8)
RAID: Dell PERC H330
Array support: Array support: RAID0, 1, 10, 5, 50
Network: 2 x Gigabit Ethernet
Expansion: 2 x PCI-Express 3.0 slots (with optional riser)
Power: 350W hot-plug PSU (max 2)
Management: Dell iDRAC8 Express
Warranty: 1 year basic Next Business Day

PowerEdge R730

TODO alt text

   General

  • Packaged Quantity
    1
  • Product Form Factor
    Rack-mountable - 2U
  • Server Scalability
    2-way
  • Hot-Swap Bays Qty
    8
  • Manufacturer
    Dell, Inc.

   Processor / Chipset

  • CPU
    Intel Xeon E5-2680v3 / 2.5 GHz
  • Max Turbo Speed
    3.3 GHz
  • Number of Cores
    12-core
  • Chipset Type
    Intel C610
  • Processor Main Features
    Hyper-Threading Technology, Intel Turbo Boost Technology 2
  • Processor Socket
    LGA2011-v3 Socket

    Cache Memory

  • Installed Size
    L3 cache - 30 MB
  • Cache Per Processor
    30 MB

    Memory

  • Max Supported Size
    384 GB
  • Form Factor
    DIMM 288-pin
  • Slots Qty
    24
  • Empty Slots
    23

   Storage

  • RAID Level
    RAID 0, RAID 1, RAID 10, RAID 5, RAID 50
  • Interface Type
    Serial Attached SCSI 2
  • Type
    none

    RAM

  • Memory Speed
    2133 MHz
  • Memory Specification Compliance
    PC4-17000
  • Features
    dual rank, registered
  • Configuration Features
    1 x 16 GB
  • RAM Supported
    PC4-17000 - 384 GB - registered - ECC
    PC4-17000 - 768 GB - Load-Reduced - ECC

    Environmental Parameters

  • Humidity Range Operating
    10 - 80% (non-condensing)

    Hard Drive

  • Capacity
    1 x 300 GB
  • Interface Type
    SAS 6Gb/s
  • Spindle Speed
    10000 rpm

    Storage Controller

  • Interface Type
    Serial Attached SCSI 3
  • Storage Controller Name
    Dell PERC H730P
  • Buffer Size
    2 GB

    Processor

  • Installed Qty
    1
  • Max Supported Qty
    2
  • Upgradability
    upgradable

    Monitor

  • Monitor Type
    None.

    Networking

  • Data Link Protocol
    Ethernet, Fast Ethernet, Gigabit Ethernet
  • Form Factor
    integrated
  • Ethernet Controller(s)
    Broadcom BCM5720
  • Remote Management Controller
    Integrated Dell Remote Access Controller 8 Enterprise (iDRAC8)

    Miscellaneous

  • Included Accessories
    ReadyRails sliding rails, cable management arm

    Graphics Controller

  • Form Factor
    integrated
  • Graphics Processor
    Matrox G200eR2
  • Video Memory
    16 MB
  • Video Interfaces
    VGA

    Dimensions & Weight

  • Width
    19 in
  • Depth
    29.8 in
  • Height
    3.4 in

    Manufacturer Warranty

  • Type
    3 years warranty

    Printer

  • Type
    none

    Expansion / Connectivity

  • Bays
    8 (total) / 7 (free) x hot-swap 2.5"
  • Slots
    2 (total) / 1 (free) x CPU
    24 (total) / 23 (free) x DIMM 288-pin
    3 PCIe 3.0 x16 - low-profile ( x8 mode )
    2 PCIe 3.0 x16 - full-length, full-height
    1 PCIe 3.0 x16 - full-length, full-height ( x8 mode )
  • Interfaces
    2 x USB 3.0
    2 x VGA ( 1 front, 1 rear )
    1 x USB 2.0
    1 x serial
    4 x LAN (Gigabit Ethernet)

    Physical Characteristics

  • Form Factor
    rack-mountable
  • Weight
    45.86 lbs

    Power

  • Type
    power supply - hot-plug
  • Power Redundancy
    optional
  • Power Redundancy Scheme
    1+1
  • Installed Qty
    1
  • Max Supported Qty
    2
  • Min Operating Temperature
    50 °F
  • Max Operating Temperature
    95 °F

    Operating System / Software

  • OS Provided: Type
    no operating system
  • OS Provided
    No operating system

    General


  • Manufacturer
    Dell, Inc.

Saturday, February 27, 2016

PowerEdge R720 rack server

Processor

  • Intel® Xeon® processor E5-2600 or E5-2600v2 product family

    Processor socket:2

    Internal Interconnect:2 x Intel QuickPath Interconnect (QPI) links; 6.4 GT/s; 7.2 GT/s; 8.0 GT/s

    Cache:2.5MB per core; core options: 4, 6, 8, 10, 12

Operating System

  • Microsoft® Windows Server® 2012
    Microsoft Windows Server 2008 R2 SP1, x64 (includes Hyper-V®)
    Novell® SUSE® Linux Enterprise Server
    Red Hat® Enterprise Linux®
    Virtualization options:
    Citrix® XenServer®
    VMware® vSphere® ESXi ™
    Red Hat Enterprise Virtualization®

Chipset

  • Intel C602

Memory1

  • Up to 1.5TB (24 DIMM slots) 2GB/4GB/8GB/16GB/32GB/64GB DDR3 up to 1866MT/s

Storage

  • Maximum Internal Storage:32TB
    Hot-plug hard drive options:2.5” PCIe SSD, SAS SSD, SATA SSD, SAS (15K, 10K), nearline SAS (7.2K), SATA (7.2K), SAS 512n (15K)
    3.5” SAS (15K), nearline SAS (7.2K), SATA (7.2K)
    Self-Encrypting Drives available

Drive Bays

  • Up to eight 3.5" drives or up to sixteen 2.5" drives

Slots

  • 7 PCIe slots:One x16 full-length, full-height
    Three x8 full-length, full-height
    Three x8 half-length, half-height

RAID Controllers

  • Internal controllers:PERC S110 (SW RAID)
    PERC H310
    PERC H710
    PERC H710P
    External HBAs (RAID):PERC H810
    External HBAs (non-RAID):6Gbps SAS HBA

Communications

  • Broadcom® 5720 quad-port 1GbE Base-T (no TOE or iSCSI offload)
    Intel I350 quad-port 1GbE Base-T (no TOE or iSCSI offload)
    Intel X540 dual-port 10GbE Base-T with 2 x 1GbE (FCoE capability enabled on the 10GbE ports)
    Broadcom 57800S dual-port 10GbE Base-T with 2 x 1GbE (TOE and iSCSI offload available on 10GbE ports)
    Broadcom 57800S dual-port 10GbE SFP+ with 2 x 1GbE (TOE and iSCSI offload available on 10GbE ports)
    Broadcom 57840S quad-port 10GbE SFP+ Rack NDC (NPAR1.0, SRIOV, DCB, iSCSI and FCoE offloads and CEM)

Power

  • Titanium efficiency, hot-plug redundant 750W power supply
    Platinum efficiency, hot-plug redundant 495W, 750W or 1100W power supplies
    Auto-ranging power supplies

Availability

  • High-efficiency, hot-plug, redundant power supplies; hot-plug drive bays; TPM; dual internal SD support; hot-plug
    redundant fan; optional bezel; luggage-tag; ECC memory, interactive LCD screen; extended thermal support; ENERGY STAR® compliant, extended power range; switch agnostic partitioning (SWAP)

Management

  • Remote Management:
    iDRAC7 with Lifecycle Controller
    iDRAC7 Express (default), iDRAC7 Enterprise (upgrade option)
    8GB vFlash media (upgrade option), 16GB vFlash media (upgrade optional)

    Systems Management:
    IPMI 2.0 compliant
    Dell OpenManage™ Essentials
    Dell OpenManage Power Center
    Dell OpenManage Connections:
    • Dell OpenManage Integration Suite for Microsoft® System Center
    • Dell plug-in for VMware® vCenter™
    • HP Operations Manager, IBM Tivoli® Netcool®, and CA Network and Systems Management

Rack Support

  • ReadyRails II sliding rails for tool-less mounting in 4-post racks with square or unthreaded round holes or tooled mounting in 4-post threaded hole racks, with support for optional tool-less cable management arm
    ReadyRails static rails for tool-less mounting in 4-post racks with square or unthreaded round holes or tooled mounting in 4-post threaded and 2-post (Telco) racks

Tuesday, February 9, 2016

Dell Product Driver

Image result for dell laptop
Need to download Any dell Driver Please
Click Here

Image result for dell desktop
Need to download Any dell Driver Please
Click Here

Image result for dell server


Need to download Any dell Driver Please
Click Here




how to animate individual cells, rows, or columns in my table in powerpoint

Duplicate the slide that has the table you want to animate. Leave the first instance of the slide untouched. For now, it ...