WP Advisorとは
特徴
料金プラン
機能
実績
ブログ
パートナー
お問い合わせ
☰
Tag: password
webminのログインパスワードの変更
webminはインストール時はrootのパスワードが使われますが、 変更することが可能です。 /usr/libexec/webmin/changepass.pl /etc/webmin root {password}
Read more
eccube2.11以降で管理者のパスワードを変更する
data/class/util/SC_Utils.php に — function sfGetHashString($str, $salt) { $res = ”; if ($salt == ”) { $salt…
Read more
CentOS6でs3fsをインストールする
CentOS6系ではyumでfuse2.8.3しかインストールできないのでソースからインストールします。 yum install pkgconfig libcurl libcurl-devel libxml2-devel…
Read more
EC2でWindowsインスタンスを起動してログインする手順
・Launch Instance > AMIを選択します。・Choose Instance Typeでt2.medium以上を選択します。(スペックが低いと何もできないサーバーになります)・Configure Insta…
Read more
netrcを設定してBasic認証のかかったgitリポジトリにhttpでアクセスする
vim $HOME/.netrc machine {hostname} login {username} password {password}
Read more
RedmineをNginx+unicornで動かす
wget
http://www.redmine.org/releases/redmine-2.5.1.tar.gz
tar zxvf redmine-2.5.1.tar.gz mv redmine-2.5.1 /var/…
Read more
RedmineをApache+Passengerで動かす
wget
http://www.redmine.org/releases/redmine-2.5.1.tar.gz
tar zxvf redmine-2.5.1.tar.gz mv redmine-2.5.1 /var/…
Read more
オープンソース版fc2blogをlinuxにインストールする手順
fc2blogのオープンソース版をlinuxにインストールする手順です。 1.fc2blogをダウンロード wget
https://github.com/fc2blog/blog/archive/master.zip
…
Read more
PostgreSQL9でユーザーの追加からテーブル操作できるようにするまで
PostgreSQLはデータベースの所有者じゃないと色々面倒なことになるので以下のように作成する psql -U postgres -c “CREATE ROLE {user} WITH LOGIN PASSWORD ‘…
Read more
開発環境のWindowsでMySQLのデータを流し込むバッチ処理を用意しておくと楽
開発環境だとサンプルのデータ数が少なくて負荷テストをするまでパフォーマンスの低下に気がつかないなどのケースがありますが、大本となるSQLを用意しておき、全員そのSQLを流しこむようにしておくことで開発が捗ります。 git…
Read more
linuxにchyrpをインストール
chyrpはサーバーインストール型のシンプルで軽いブログエンジンです。 現時点での最新版である2.5のlinuxへのインストール方法は以下の通りです。 1.公式サイトからchyrpをダウンロード wget http://…
Read more
Gitのパスワードをある程度保持させる
httpsでGitを使っていると毎度パスワード入力が求められますが、期限付きのキャッシュを使うことができます。以下は1週間 git config –global credential.helper cache –ti…
Read more
mysqlslapを使ってMySQLの負荷テストを行う
MySQLである程度重いSQLがわかっている状況とします。 mysqlslap –concurrency=50 –iterations=1 –create-schema=yourdatabase –query=&…
Read more
Postgresqlでユーザー作成
yumとかでインストールしてpostgresユーザーがいる前提です。 createuser -U postgres -P {username} password: {password} ロールは特に設定しなくてもデフォル…
Read more
MySQLでrootでログインできなくなったときの対処法
MySQLにrootでログインできなくなったときの対処法です。 root権限で行います。 #killall mysqld #/usr/bin/mysqld_safe –user=root –skip-grant-ta…
Read more
過去の記事
×