Skip to content

Instantly share code, notes, and snippets.

View PharaohKJ's full-sized avatar
👺
Ten-goods come on! Working from home

ふぁらお加藤 PharaohKJ

👺
Ten-goods come on! Working from home
View GitHub Profile
@PharaohKJ
PharaohKJ / history_of_install_jenkins_on_sakura_vps
Last active December 17, 2015 01:58
jenkins install command log
1002 yum list installed|grep java
1003 sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo
1004 sudo rpm --import http://pkg.jenkins-ci.org/redhat-stable/jenkins-ci.org.key
1005 sudo yum install jenkins
1006 yum list installed|grep java
1007 sudo yum install java-1.7.0-openjdk
1008 java -version
1009 sudo yum install jenkins
1010 sudo service jenkins start
1011 sudo chkconfig jenkins on
@PharaohKJ
PharaohKJ / iptables
Created May 7, 2013 15:48
http://www.imosan-works.com/archives/1074 よりパクらせてもらった設定のメモ。sshのポートは隠すよ。
*filter
# INPUTチェイン宣言(全ての入力パケットを許可する)
:INPUT ACCEPT [0:0]
# FORWARDチェイン宣言(全ての転送パケットを許可する)
:FORWARD ACCEPT [0:0]
# OUTPUTチェイン宣言(全ての出力パケットを許可する)
:OUTPUT ACCEPT [0:0]
#Firewallのセッティング
:Firewall-setting1-INPUT - [0:0]
@PharaohKJ
PharaohKJ / history_of_install_jenkins_on_my_ubuntu
Created May 8, 2013 06:48
apt-get jenkinsしたあとに、バージョンが古いので本家からインストールしようとしたら結構ハマった。 たぶん最初のsudo apt-get remove jenkinsを **sudo apt-get --purge autoremove jenkins** にしてればさっくりいったんだと思われる。
2009 sudo apt-get remove jenkins
2010 cd tmp/
2011 wget -q -O - http://pkg.jenkins-ci.org/debian/jenkins-ci.org.key | sudo apt-key add -
2012 sudo sh -c 'echo deb http://pkg.jenkins-ci.org/debian binary/ > /etc/apt/sources.list.d/jenkins.list'
2013 sudo apt-get update
2014 sudo apt-get install jenkins
2015 whoami
2016 ls /usr/share/jenkins/jenkins.war
2017 ls /usr/share/jenkins/jenkins.war -al
2018 ls /usr/share/jenkins/
@PharaohKJ
PharaohKJ / Makefile
Last active December 17, 2015 04:59
間違えて非公開にしちゃったので公開で。redmineをupdateしたあとに入力するコマンド忘れるのでMakefileにしておきます。
## Redmineをアップデートしたら叩くmake
## make update
## としてくれ
# DBのアップデート
migration:
rake db:migrate RAILS_ENV="production"
# キャッシュの削除
clean_cache:
@PharaohKJ
PharaohKJ / thunderbird_with_log.sh
Created May 22, 2013 10:03
debug smtp log for thunderbird
export NSPR_LOG_FILE=/tmp/smtplog.log
export NSPR_LOG_MODULES=IMAP:5,SMTP:5,POP3:5
thunderbird
gvim /tmp/smtplog.log
@PharaohKJ
PharaohKJ / randompass.sh
Created June 22, 2013 08:34
A-Za-z0-9_でのパスワード生成シェル 数字は文字数
tr -dc A-Za-z0-9_ < /dev/urandom | head -c 12 | xargs
@PharaohKJ
PharaohKJ / .bashrc
Created June 28, 2013 12:27
osx bashrc
# プロンプトの設定
PS1='\[\033[0;32m\w\[\033[0m\n[\u]\$ '
@PharaohKJ
PharaohKJ / iptables
Created August 3, 2013 07:04
Asset Server 向け iptables設定
# 外部からTCPポート10733番(Unity Asset Server接続)へのアクセスを許可
-A Firewall-setting1-INPUT -m state --state NEW -m tcp -p tcp --dport 10733 -j ACCEPT
@PharaohKJ
PharaohKJ / .bashrc
Created August 26, 2013 23:23
ubuntu PS1
PS1="\\[\\033[32m\\][\\h: \\w]\\[\\033[0m\\]\\n\\u\\\$ "
katoh$ ab -n 100 -c 10 http://blog.phalanxware.com/
This is ApacheBench, Version 2.3 <$Revision: 655654 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/
Benchmarking blog.phalanxware.com (be patient).....done
Server Software: nginx/1.4.4
Server Hostname: blog.phalanxware.com