サーバ設定
提供:kuhalaboWiki
(版間での差分)
細 (→CentOS) |
(→MySQL) |
||
88行: | 88行: | ||
<pre> | <pre> | ||
mysqld --version</pre> | mysqld --version</pre> | ||
+ | |||
+ | firewalldの設定(CentOS7) | ||
+ | <pre> | ||
+ | #状態チェック | ||
+ | firewall-cmd --list-services --zone=public --permanent | ||
+ | |||
+ | #結果 | ||
+ | dhcpv6-client ftp http https ssh | ||
+ | |||
+ | #mysqlが無いので、追加 | ||
+ | firewall-cmd --add-service=mysql --zone=public --permanent | ||
+ | |||
+ | #もう一度チェック | ||
+ | firewall-cmd --list-services --zone=public --permanent | ||
+ | |||
+ | dhcpv6-client ftp http https mysql ssh | ||
+ | |||
+ | #リロードして有効に。 | ||
+ | firewall-cmd --reload | ||
+ | </pre> | ||
+ | |||
エクスポート | エクスポート |
2020年10月31日 (土) 11:57時点における版
目次 |
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
再起動しても起動時に自動的にサーバーが起動するように設定
# systemctl enable httpd.service # systemctl enable mysqld.service
サーバーを起動
# systemctl start httpd.service # systemctl start mysqld.service
Apacheのインストール
インストール
# yum -y install httpd
バージョン確認
# httpd -v
php
yum -y install php php-mysql php --version
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
MySQL のリポジトリの追加
# yum -y install http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
MySQL Community Server をインストール
# yum -y install mysql-community-server
MySQL Server のバージョンを表示
mysqld --version
firewalldの設定(CentOS7)
#状態チェック firewall-cmd --list-services --zone=public --permanent #結果 dhcpv6-client ftp http https ssh #mysqlが無いので、追加 firewall-cmd --add-service=mysql --zone=public --permanent #もう一度チェック firewall-cmd --list-services --zone=public --permanent dhcpv6-client ftp http https mysql ssh #リロードして有効に。 firewall-cmd --reload
エクスポート
$ mysqldump -u testuser -p testdb > export.sql
インポート
$ mysql -u root -p > create database newdb; $ mysql -u root -p newdb < export.sql