// 以下 DB名: sonar, DB User: sonar, DB Pass: sonar で設定 # mysql -u root
mysql> CREATE DATABASE sonar; mysql> CREATE USER 'sonar'@'localhost' IDENTIFIED by 'sonar'; mysql> GRANT ALL PRIVILEGES ON sonar.* TO 'sonar'@'localhost'; mysql> FLUSH PRIVILEGES;
Generating public/private rsa key pair. Enter file inwhich to save the key (/var/lib/pgsql/.ssh/id_rsa): ←何も入力せず[Enter]を押す Enter passphrase (empty for no passphrase): ←何も入力せず[Enter]キーを押す Enter same passphrase again: ←何も入力せず[Enter]キーを押す Your identification has been saved in <home>/.ssh/id_dsa. Your public key has been saved in <home>/.ssh/id_rsa.pub. The key fingerprint is: 7e:38:5c:9f:f3:e2:67:eb:ce:c6:07:83:48:c8:85:ec
# # hosts.allow This file describes the names of the hosts which are # allowed to use the local INET services, as decided # by the '/usr/sbin/tcpd' server. # sshd: xxx.x.xx.xx xxx.x.xxx. xx.xx.x. xx.xx.xxx.xx sshd: xxx.xx.xxx.xx sshd: 192.168.11.200 ← 追加
$ sudo su - # cd <path to httpd source> # ./configure –enable-ssl=shared –enable-rewrite –enable-deflate –enable-headers –enable-so # make & make install # service httpd restart