My First Specimen for MSU

Ctenuchidae

Response from MSU through Howard Russell

"Looks like a ctenuchid moth (Ctenuchidae)."


Send pictures at bugman@msu.edu(Note: Send only High quality pictures and don't miss-use)

Before you send, please go through Tips on submitting your specimens 

Thanks to hike team Indian Chat App by which i got to know about it.
Thanks to Howard Russell 

Openfire Chat Server Installation on Linux

openfire chat server (Default database)
Note: pre-requirements java (default openJdk)

on ubuntu
# wget http://download.igniterealtime.org/openfire/openfire_4.0.4_all.deb
# dpkg -i openfire_4.0.4_all.deb  or dpkg --force-all -i openfire_4.0.4_all.deb
# service openfire stop
# service openfire start

on centos
# wget http://download.igniterealtime.org/openfire/openfire-4.0.4-1.i386.rpm
# rpm -ivh openfire-4.0.4-1.i386.rpm
# service openfire stop
# service openfire start

open browser
Navigate to http://your-ip-address:9090
continue with installation process
domain: server ip address

after installation

user: admin password: which you have set for administrator account

2).
openfire chat server (External database)
Note: required database must be installed (here MySQL)

on ubuntu
# wget http://download.igniterealtime.org/openfire/openfire_4.0.4_all.deb
# dpkg -i openfire_4.0.4_all.deb  or dpkg --force-all -i openfire_4.0.4_all.deb
# mysql -u root -p
> create database openfire;
> exit
# cd /usr/share/openfire/resources/database
# cat openfire_mysql.sql | mysql -u root -p openfire;
# /etc/init.d/openfire restart
# service mysql restart

open browser
Navigate to http://your-ip-address:9090
continue installation, make sure you select external database
replace [your_host] with localhost and [database_name] with openfire

For custom Java like Oracle Jdk and Jre

Prefer installing Openfire from .tar.gz
download file using below link
https://www.igniterealtime.org/downloads/download-landing.jsp?file=openfire/openfire_4_0_4.tar.gz

# mv openfire_4_0_4.tar.gz /opt/
# cd /opt/
# tar -xvzf openfire_4_0_4.tar.gz
# cd openfire/conf/
# nano openfire.xml

Uncomment <network> tag and put your server’s ip address inside <interface></interface>.

# /opt/openfire/bin/openfire start

open browser
Navigate to http://your-ip-address:9090
continue with installation

Post Installation
Download client
Official Site

Reference: link

Oracle JDK installation on Ubuntu

Oracle JDK installation on ubuntu


# mkdir /opt/java

# cd /opt/java

# wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u112-b15/jdk-8u112-linux-x64.tar.gz
# wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u112-b15/jre-8u112-linux-x64.tar.gz

# tar -xvf jdk-8u112-linux-x64.tar.gz
# tar -xvf jre-8u112-linux-x64.tar.gz

# rm  jdk-8u112-linux-x64.tar.gz
# rm  jre-8u112-linux-x64.tar.gz

# nano /etc/profile
(Add below lines at the end of the file and save it)

JAVA_HOME=/opt/java/jdk1.8.0_112
JRE_HOME=$JAVA_HOME/jre
PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin
export JAVA_HOME
export JRE_HOME
export PATH

JRE_HOME=/opt/java/jre1.8.0_112
PATH=$PATH:$JRE_HOME/bin
export JRE_HOME
export PATH

# update-alternatives --install "/usr/bin/java" "java" /opt/java/jdk1.8.0_112/bin/java 100
# update-alternatives --install "/usr/bin/java" "java" /opt/java/jre1.8.0_112/bin/java 100

# update-alternatives --set java /opt/java/jdk1.8.0_112/bin/java
# update-alternatives --set java /opt/java/jre1.8.0_112/bin/java

# . /etc/profile

# java -version

Note: Make sure no other vendor java is installed on your system before you start installation.
(Use # java -version to check and  # apt-get purge "installed java" to remove)
Reference

Featured post

AHIMIHA