全文検索:
- CentOS5.2でApache2.2インストール @01_linux:02_www
- gz # cd httpd-2.2.9 # ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite=shared --ena... ===== 起動スクリプト用意 ===== <code console> # cp /usr/local/src/httpd-2.2.14/build/rpm/httpd.init /etc/init.d... chectl=/usr/sbin/apachectl 55 apachectl=/usr/local/apache2/bin/apachectl 56 #httpd=${HTTPD-/usr/sbin/httpd} 57 httpd=${HTTPD-/usr/local/apache2/bin/httpd} 58 prog=httpd 59 #pi
- suPHP @02_freebsd:02_www
- cd php-5.2.1 # ./configure \ --with-mysql=/usr/local \ --with-pgsql=/usr/local/pgsql \ --enable-cgi \ --disable-cli \ --enable-pear \ --with-snmp \ --e... --with-gd \ --with-zlib \ --with-jpeg-dir=/usr/local \ --with-png-dir=/usr/local \ --with-freetype-dir=/usr/local \ --enable-mbstring \ --enable-mbstr-en
- 06 squid @02_freebsd:01_net
- # make install clean ;rehash </code> ===== /usr/local/etc/squid/squid.confを設定 ===== ログディレクトリとキャッシュディレク... e> # squid -z </code> ■起動シェルにて起動。 <code> # /usr/local/etc/rc.d/squid start </code> ===== 確認 ===== 後はブ... クリアできます。起動シェルなどに組み込んだ方がいいかもしれません。~ <code> # /usr/local/etc/rc.d/squid stop # rm -rf /usr/local/squid/cache/* # squid -z # /usr/local/etc/rc.d/squid start </
- MySQLのインストール @02_freebsd:04_database:01_mysql
- groupadd mysql pw useradd mysql -g mysql -d /usr/local/ -s /usr/sbin/nologin </code> ====== インストール ====== <code console> $ ./configure --prefix=/usr/local/mysql --with-charset=ujis --with-extra-charsets=a... or $ ./configure --prefix=/usr/local/mysql --with-charset=utf8 --with-extra-charsets=a... /etc/my.cnf # cp support-files/mysql.server /usr/local/etc/rc.d/mysql.sh # chmod 755 /usr/local/etc/rc.
- ApacheのBasic認証でPostgreSQLを参照 @02_freebsd:04_database:02_posgresql
- インストール手順に従って、configureを実行する。 \\ 以下の例は、Apacheが/usr/local/apache、PostgreSQLが/usr/local/pgsqlに \\ インストールされているものとする。 $ ./configure \ --with-apxs=/usr/local/apache/bin/apxs \ --with-pgsql=/usr/local/pgsql ===== モジュールのコンパイル ===== 以下のコマンドでコンパイルを行う。 $ /
- VPNサーバ(PacketiX VPN -> SoftEther VPN)移行方法 @01_linux:01_net
- oftether.org/]]からダウンロード <code console> # cd /usr/local/src # wget http://www.softether-download.com/file... プ ==== 元のPacketiXフォルダを移動 <code console> # mv /usr/local/vpnserver /usr/local/vpnserver.PacketiX_bak </code> ==== ④フォルダ移動 ==== 元PacketiXフォルダがあった場所にコンパイルしたSoftEther VPNのフォルダを移動する。 <code console> # mv /usr/local/src/vpnserver /usr/local/vpnserver </code> ====
- Apache 2.0 + MySQL + PHP @02_freebsd:02_www
- == 起動シェルも用意されているので、起動してみる。 <code console> # /usr/local/etc/rc.d/mysql-server.sh start # ps auxw|grep my... 7.7 65468 24832 p0- S 5:47PM 0:10.96 /usr/local/l ibexec/mysqld --defaults-extra-file=/var/db/my... # cd php-4.4.0 # ./configure --with-mysql=/usr/local \ --with-pgsql=/usr/local/pgsql \ --with-apxs2=/usr/local/sbin/apxs \ --with-tsrm-pth --enable-mbstri
- 75 Proftpd @01_linux:01_net
- ar.gz cd proftpd-1.3.8b ./configure --prefix=/usr/local/proftpd --with-modules=mod_tls make sudo make install </code> ==== 3.設定ファイル ==== <code|/usr/local/proftpd/etc/proftpd.conf> Umask 002 User no... LSProtocol TLSv1.2 TLSRSACertificateFile /usr/local/proftpd/etc/proftpd.cert.pem TLSRSACertificateKeyFile /usr/local/proftpd/etc/proftpd.key.pem TLSCipherSuite HI
- 89 Pleskライセンスエラー @parallels:01_plesk
- === ログ ===== [2016-10-28 20:42:56] ERR [1] /usr/local/psa/admin/bin/filwrpr '68' failed with message: filwrpr: execve failed for /usr/local/psa/admin/sbin/filwrpr: Permission denied ===== 対応 ===== /usr/local/psa/admin/sbin/wrapperのパーミッションが変になっていた。 <code> ls -al /usr/local/psa/admin/sbin/*wrapper ---s--x--- 1 root psaadm
- PostgreSQLインストール @02_freebsd:04_database:02_posgresql
- stgres # pw useradd postgres -g postgres -d /usr/local/pgsql -s /usr/local/bin/bash </code> ===== CentOSの場合、configureするとこんなエラーが ===== postgresql configure:... L postgresql_enable="YES" postgresql_data="/usr/local/pgsql/data" postgresql_flags="-w -s -m fast" </c... 期化 ====== <code console> $ su pgsql $ cd /usr/local/pgsql/ $ mkdir data $ initdb -D ./data --encodi
- 2024.01.18 RailsでSSLエラー @50_dialy:2024:01
- e=error: certificate verify failed (unable to get local issuer certificate) </code> こちらも「unable to get local issuer certifi」になってしまう。 <code> # openssl s_client ... t.org -port 443 Verification error: unable to get local issuer certificate </code> ==== 対応 ==== === rubyが利用しているルート証明書のパス === ruby は、/usr/local/ssl/cert.pem を利用していました。 <code|ssl_path.rb> requir
- 2024.01.18 SSL Error in Rails @en:50_dialy:2024:01
- e=error: certificate verify failed (unable to get local issuer certificate) </code> This also results in "unable to get local issuer certificate". <code> openssl s_client -sh... t.org -port 443 Verification error: unable to get local issuer certificate </code> ==== Solution ==== =... certificate used by ruby === Ruby was using /usr/local/ssl/cert.pem. <code|ssl_path.rb> require 'openssl
- 13 CentOS6メール設定 @01_linux:03_mail
- release </code> === ダウンロード === <code> # cd /usr/local/src # wget http://mirror.neu.edu.cn/CentALT/6/SRP... 5-1.el6.src.rpm # cd ~/rpmbuild/SOURCES # cp /usr/local/src/*.patch . # cd ../SPECS/ # vi postfix.spec --... dovecot smtpd_sasl_path = private/auth smtpd_sasl_local_domain = $myhostname ## 証明書 smtpd_use_tls = yes ... olicy_service inet:60000 permit ## Virtual local_transport = virtual #local_transport = $mydestina
- 2024.01.16 openssl.soのLoadError @50_dialy:2024:01
- 1w # ./Configure # make # make install # ll /usr/local/lib64/libssl.so.1.1 -rwxr-xr-x. 1 root root 689456 Jan 15 22:27 /usr/local/lib64/libssl.so.1.1 </code> ld.so.confに読み込むディレクトリを設定 <code> # cat /etc/ld.so.conf.d/local.conf /usr/local/lib64 </code> 即読み込み <code> # ldconfig </code> === Error === <code> # ./Configure C
- 03 Postfix + amavisd + clamav @02_freebsd:03_mail
- _enable="YES" </code> ==== 起動 ==== <code> # /usr/local/etc/rc.d/clamav-clamd start # /usr/local/etc/rc.d/clamav-freshclam start </code> ===== Postfixインストール ==... NE" # /etc/rc.d/sendmail stop </code> ==== /usr/local/etc/postfix/main.cf 修正 ==== <code> mydomain に自分の... 127.0.0.0/8 </code> ==== 起動 ==== <code> # /usr/local/etc/rc.d/postfix start </code> ==== postfix キューの