PowershellでMySQLに接続する
#::LoadWithPartialName(“MySql.Data”)
::LoadFrom(“C:\Program Files (x86)\MySQL\MySQL Connector N ...
急速にLANボードの構成情報と外部IPを調べる
OS:linux
#!/bin/bash
function err(){
if ;then
echo ” **”
fi
}
if ; then ...
10個 Linux コマンド
history | awk ‘{a++}END{for(i in a){print a ” ” i}}’ | sort -rn | head
2141 git
967 v ...
サーバー運行するかどうか検査、測定する
#!/bin/sh
pingcmd(){
PRE=”server $1 Ping $2″
MAILADD=”XX@yahoo.co.jp”
ping ...
JBOSS & Tomcat再起動
linux環境でJBOSSとTomcatが再起動する。
#!/bin/bash
#this shell will be used to restart Jboss & tomcat
run ...
nagiosはcpuのプラグインを検査、測定する
nagiosでcpuのプラグインを検査する。
@echo off
rem 現在batの役割
echo ==================begin========================
Windows環境でnginx起動、シャットダウンの管理
@echo off
rem 現在batの役割
echo ==================begin========================
cls
SET NGINX_PATH=D: ...
win nginx php 起動再起動シャットダウンのシェルファイル
SET NGINX_PATH=D:
SET NGINX_DIR=D:\web\nginx-1.3.11\
SET PHP_DIR=D:\web\php-5.4.11-nts-Win32-VC9-x86\
+ ...
mysqlのバックアップ
#!/bin/bash
#backup mysql data
#Auther:arezone
#website:
DBDIR=/data/mysql
BACKDIR=/data/bak/my ...
postfix log簡単整理
二つのファイルを処理する,一つは発送成功のケースです。もう一つは発送失敗場合、エラーログを書きこむ。
#!/bin/bash
#—————— ...
Linuxコマンド一覧
1.あるポートの応用を殺す
port=9996
netstat -anp | grep $port | head -1 | awk ‘{print $7}’| awk ‘BEGIN{ ...
「Windows10」システムロケールの変更をする方法
操作方法
1.「開始」 ->「Windows システムツール」 ->「コントロール パネル」をクリックします。
2.「日付、時刻、数値形式の変更」をクリックします。
3.「管理」タブをクリッ ...
nginx サービス自動起動
cp nginx.sh/etc/init.d/nginx
chmod a+x/etc/init.d/nginx
chkconfig –add nginx
chkconfig nginx on
16位のunicode番号を読む
#!/bin/bash
cat/dev/stdin | while read -r line
do
for word in $line
do
/usr/bin/printf $word; ...
HAproxy-Keepalived自動インストール配置shell
#!/bin/bash
##################################
haproxy_path=/usr/local/haproxy
haproxy_conf=/usr/local/ha ...
バッチ処理でn階段の魔方陣を出力する
@echo off
:start
set/p n=Please input your odd integer:
set/a p=n%%2
if %p% equ 0 echo Input error! ...
簡単なプロセス、ディスク、ログ監視用のシェルスクリプト
#!/bin/bas
#
################################################################################
# process s ...
batファイルは直接あるドライブのディレクトリに入る
@echo off
cd\
e:
cd Python33
dir
CMD