Linux版アンインストール方法
1.desknet's SNSの削除
ここでは、インストールディレクトリ「/var/www/html/php/」にdesknet's SNSをインストールされていることを前提に説明します。
suコマンドを実行し、rootユーザーにスイッチしてください。
rmコマンドを使用して、インストール先のディレクトリの削除を行います。
(rmコマンドの前に¥(エンサイン)をつけると、削除確認を行わないで削除します。)
[guest@xxxxxx guest]# su - Password: [root@xxxxxx ~]# cd /var/www/html/php [root@xxxxxx php]# ls dnsns [root@xxxxxx php]# ¥rm -r dnsns |
2.バッチの設定の削除
バッチの設定を行っている場合は、設定を削除してください。
バッチの説明はこちら
3.データベース及びユーザーの削除
以下のコマンドを入力し、desknet's SNSのインストールで作成したPostgreSQLのデータベースとユーザーを削除します。
[root@xxxxxx php]# su - postgres [postgres@xxxxxx ~]$ cd /usr/local/pgsql/bin [postgres@xxxxxx bin]$ ./dropdb dnsns DROP DATABASE [postgres@xxxxxx bin]$ ./dropuser dnsns DROP ROLE |