投稿

ipアドレスとmacアドレスを一括取得できるコマンド

便利なツールがあるものですね。 ipアドレスとmacアドレスを一括取得できるコマンドです。 arp-scan --localnet -l --retry=7

nginx ssl offload tomcat dspace

いやー難儀しました。 ssl -> nginx -> offload ssl -> tomcat dspace を実現したい。 /etc/nginx/nginx.conf # For more information on configuration, see: # * Official English Documentation: http://nginx.org/en/docs/ # * Official Russian Documentation: http://nginx.org/ru/docs/ user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; # Load dynamic modules. See /usr/share/nginx/README.dynamic. include /usr/share/nginx/modules/*.conf; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include

MySQLのトリガーで値セット

MySQLのトリガーで値セット create table hoge( id MEDIUMINT NOT NULL AUTO_INCREMENT, order_no CHAR(7), PRIMARY KEY (id) ); DROP TRIGGER trigger_name; DELIMITER $$ CREATE TRIGGER trigger_name BEFORE INSERT ON hoge FOR EACH ROW BEGIN declare max_id MEDIUMINT; IF NEW.order_no = "" THEN select max(id) into max_id from hoge; SET NEW.order_no := CONCAT("AA",lpad(max_id+1, 5, '0')); END IF; END; $$ DELIMITER ; insert into hoge (order_no) values(""); select * from hoge;

wgetでsitemap作成

wgetでsitemap作成します。 wget --spider --recursive --no-verbose --output-file=wgetout.log http://おれのサイト/ grep -i URL wgetout.log | awk -F 'URL:' '{print $2}' | awk '{$1=$1};1' | awk '{print $1}' | sort -u | sed '/^$/d' > links.txt ほら、かんたんでしゅ

Resin

知らなかったなーResin(レジン)というWebApplicationServerがあったなんて。 tomcatより3倍速いというAPPServerです。 Resinの開発元は米国のCaucho Technology 最近4.0も登場し、無償、有償があるようです。 http://caucho.com/products/resin/download tomcatで動かしていたアプリをResinにしたらどのぐらいパフォーマンスがでるんだろう。

HDDの初期化

ハードディスクのセクタ不良が発生し、HDD交換しました。 元のHDDはかろうじてアクセスできるので、初期化が必要でしたが、 通常OSなどの初期化コマンドでは復元できてしまう可能性があるということで、 復元できないくらい初期化できるツールを調べてみたところ、 以下のツールが見つかりました。 その名も killdisk! 早速使ってみることに。 KillDisk for DOS v. 4.1をチョイスしました。 初期化する方法は数種類あって選択できるようなのですが、 Free Versionのため、1つしか選択できないようです。

Apache OpenMeetings install

CentOS6.xにApache OpenMeetingsをインストールしてみます。 基本はここに書かれている手順で行います https://openmeetings.apache.org/installation.html ■前準備 $ yum install -y java-1.8.0-openjdk ntp sox epel-release git gcc $ yum install -y http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm $ yum install -y mysql mysql-devel mysql-server mysql-utilities $ yum install -y ImageMagick GhostScript lame $ yum install -y openoffice.org-core openoffice.org-langpack-ja_JP $ yum groupinstall -y "Development Tools" $ yum install -y zlib-devel git subversion opencv-devel openssl-devel gnutls-devel $ yum install -y glibc-static openssl-static zlib-static ■MySQL設定ファイル(my.cnf)を修正 $ vi /etc/my.cnf # For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html [mysqld] # # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. # innodb_buffe

ドメインサーチ

https://www.makko.biz/whois/?q=bg.bahaiquotesillustrated.info