「CentOS7入門」tarコマンドの使い方
1.tarで圧縮ファイルを作成
$ tar zcvf 作成するファイル名 対象ディレクトリ・ファイル
# tar zcvf testbak.tar.gz test/
test/
test/aa.php ...
「CentOS7」ip aコマンドでIPアドレスを取得する
ipコマンド
# ip a | grep inet | grep -v inet6 | grep -v 127 | sed ‘s/^*//g’ | cut -d ‘ ‘ -f2 ...
CentOS7.3.1611でポートを解放する
ポートを解放
firewall-cmd –zone=public –add-port=80/tcp –permanent
firewall-cmd –add-port=2 ...
CentOS7.4でIPコマンドをメモする
1.環境の確認
# cat/etc/redhat-release
CentOS Linux release 7.4.1708 (Core)
2.IPコマンド
# ip a
1: lo: ...
CentOS7にlshwでディスクの型番を取得する
# yum install lshw
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* ...
「Linux」ワイルドカード(* ?)を利用するメモ
サンプルコード1(*)
$ ls
test.txt test1 test2 test3 index.php error.log
$ rm test*
$ ls
index.php error.l ...
DebianにMySQLで外部ホストから接続できるメモ
1.3306ポートを開放
vim/etc/iptables.conf
追記
-A INPUT -p tcp –dport 3306 -j ACCEPT
再起動
iptables-restore ...
CentOS7にyumでgitをインストールするメモ
1.gitインストールかどうかをチェック
#git –version
2.yumでgitをインストール
#yum install git
3.バージョン確認 ...
Linuxにhtopをインストールするメモ
# tar zxvf htop-1.0.2.tar.gz
# cd htop-1.0.2
# ./configure
# make && make install
エラーメッセージ ...
CentOS7.2に自動アップデートを有効、無効に設定する方法
# vi/etc/yum
# yum install yum-cron -y
# ls
fssnap.d pluginconf.d protected.d vars version-groups.c ...
「shell」ディスクの使用状況を調べるコード
サンプルコード
#!/bin/bash
IP=`ifconfig eth0|sed -n ‘2p’|awk ‘{print $2}’|cut -c 6-`
SPA ...
redisサーバ自動起動スクリプトのサンプルコード
サンプルコード:
#!/bin/bash
#
# redis – this script starts and stops the redis-server daemon
#
# c ...
「Linux」tar.gzファイル、tarファイルの解凍、圧縮コマンド
1.tar.gz
圧縮
#tar -zcvf sample.tar.gz ディレクトリ名
例
#tar -zcvf cft.tar.gz html
html/
html/404.html ...
「CentOS7」/etc/yum.repos.d/CentOS-Base.repoのbaseurlを変更するメモ
CentOS-Base.repoの内容を変更
#cd/etc/yum.repos.d
#vim CentOS-Base.repo
変更内容
baseurl=
CentOS 7.3.1611にphp7.0.20をアンインストールするメモ
# php -v
PHP 7.0.20 (cli) (built: Jun 7 2017 07:50:14) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend ...
CentOS6(7)にhttpd操作コマンドメモ
CentOS6の場合
# sudo service httpd start
# sudo chkconfig httpd on
CentOS7の場合
sudo systemctl start htt ...
CentOS7.3.1611にphp7.0.20 + nginx1.10.2 + php-fpmをインストールするメモ
1.epelリポジトリのインストール
# yum -y install epel-release
# vi/etc/yum.repos.d/epel.repo
修正前
enabled=1
修正後 ...
CentOSにyumでmysqlをインストールするメモ
1.versionの確認
#yum list mysql*
2.MySQLをインストール
#yum install mysql-server* -y
3.mySQL起動 ...