サーバ設定
提供:kuhalaboWiki
(版間での差分)
1行: | 1行: | ||
− | + | == CentOS == | |
;DNSレコード設定 | ;DNSレコード設定 | ||
20行: | 20行: | ||
</pre> | </pre> | ||
− | + | == Apacheのインストール == | |
<pre> | <pre> | ||
yum -y install httpd | yum -y install httpd | ||
</pre> | </pre> | ||
− | + | == php, php-mbstringインストール == | |
<pre> | <pre> | ||
yum -y install php php-mbstring | yum -y install php php-mbstring | ||
42行: | 42行: | ||
− | + | == xemacsインストール == | |
<pre> | <pre> | ||
yum -y install xemacs | yum -y install xemacs | ||
50行: | 50行: | ||
<pre> | <pre> | ||
yum update | yum update | ||
+ | </pre> | ||
+ | |||
+ | == MySQL == | ||
+ | |||
+ | エクスポート | ||
+ | <pre> | ||
+ | $ mysqldump -u testuser -p testdb > export.sql | ||
+ | </pre> | ||
+ | |||
+ | インポート | ||
+ | <pre> | ||
+ | $ mysql -u root -p | ||
+ | > create database newdb; | ||
+ | $ mysql -u root -p newdb < export.sql | ||
+ | |||
</pre> | </pre> |
2020年10月31日 (土) 11:37時点における版
目次 |
CentOS
- DNSレコード設定
xxx.example.net A 3600 xxx.xxx.xxx.xxx
- iptablesの設定
- 設定確認
iptables -L
- 設定
vi /etc/sysconfig//iptables
-A INPUT -p tcp --dport 80 -j ACCEPT
Apacheのインストール
yum -y install httpd
php, php-mbstringインストール
yum -y install php php-mbstring
- httpd設定
- 設定ファイル
vi /etc/httpd/conf/httpd.conf
- サーバ名指定
ServerName www.example.net:80
xemacsインストール
yum -y install xemacs
- yumでアップデート
yum update
MySQL
エクスポート
$ mysqldump -u testuser -p testdb > export.sql
インポート
$ mysql -u root -p > create database newdb; $ mysql -u root -p newdb < export.sql