Linux

1.tarで圧縮ファイルを作成
$ tar zcvf 作成するファイル名 対象ディレクトリ・ファイル
# tar zcvf testbak.tar.gz test/
test/
test/aa.php ...

Linux

ipコマンド
# ip a | grep inet | grep -v inet6 | grep -v 127 | sed ‘s/^*//g’ | cut -d ‘ ‘ -f2 ...

Linux

ポートを解放
firewall-cmd –zone=public –add-port=80/tcp –permanent
firewall-cmd –add-port=2 ...

Linux

1.環境の確認
# cat/etc/redhat-release
CentOS Linux release 7.4.1708 (Core)

2.IPコマンド

# ip a
1: lo: ...

Linux

# 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 ...

Linux

1.3306ポートを開放
vim/etc/iptables.conf
追記
-A INPUT -p tcp –dport 3306 -j ACCEPT
再起動
iptables-restore ...

Linux

1.gitインストールかどうかをチェック
#git –version

2.yumでgitをインストール
#yum install git

 

3.バージョン確認 ...

Linux

# tar zxvf htop-1.0.2.tar.gz
# cd htop-1.0.2
# ./configure
# make && make install

エラーメッセージ ...

Linux

# vi/etc/yum
# yum install yum-cron -y

# ls
fssnap.d  pluginconf.d  protected.d  vars  version-groups.c ...

Linux

サンプルコード
#!/bin/bash
IP=`ifconfig eth0|sed -n ‘2p’|awk ‘{print $2}’|cut -c 6-`
SPA ...

Linux

サンプルコード:
#!/bin/bash
#
# redis – this script starts and stops the redis-server daemon
#
# c ...

Linux

1.tar.gz
圧縮
#tar -zcvf sample.tar.gz ディレクトリ名

#tar -zcvf cft.tar.gz html
html/
html/404.html ...

Linux

CentOS-Base.repoの内容を変更
#cd/etc/yum.repos.d
#vim CentOS-Base.repo

変更内容
baseurl=

Linux

# php -v
PHP 7.0.20 (cli) (built: Jun 7 2017 07:50:14) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend ...

Linux

CentOS6の場合
# sudo service httpd start
# sudo chkconfig httpd on

CentOS7の場合
sudo systemctl start htt ...

Linux

1.epelリポジトリのインストール
# yum -y install epel-release
# vi/etc/yum.repos.d/epel.repo
修正前
enabled=1
修正後 ...

Linux

 

1.versionの確認
#yum list mysql*

2.MySQLをインストール
#yum install mysql-server* -y

3.mySQL起動 ...