| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #!/usr/bin/bash
- [ $(id -u) != "0" ] && { echo "Error: You must be root to run this script!"; exit 1; }
- do_install_sspanel() {
- read -p "Please input root password of your Database server: " db_root_password
- read -p "Please input db_host(127.0.0.1): " db_host
- read -p "Please input db_database(sspanel): " db_database
- read -p "Please input db_username(sspanel): " db_username
- read -p "Please input db_password: " db_password
- read -p "Please input key: " key
- read -p "Please input appName(SSPanel-UIM): " app_name
- read -p "Please input baseUrl(https://example.com): " base_url
- read -p "Please input muKey(SSPanel): " mu_key
- echo "Generating config files..."
- cp config/.config.example.php config/.config.php
- cp config/appprofile.example.php config/appprofile.php
- mv db/migrations/20000101000000_init_database.php.new db/migrations/20000101000000_init_database.php
- echo "Installing Composer..."
- wget https://getcomposer.org/installer -O composer.phar
- php composer.phar
- php composer.phar install
- echo "Writting configuration..."
- sed -i -e "s/$_ENV['key'] = 'ChangeMe';/$_ENV['key'] = '$key';/g" \
- -e "s/$_ENV['appName'] = 'SSPanel-UIM';/$_ENV['appName'] = '$app_name';/g" \
- -e "s|$_ENV['baseUrl'] = 'https://example.com';|$_ENV['baseUrl'] = '$base_url';|g" \
- -e "s/$_ENV['muKey'] = 'SSPanel';/$_ENV['muKey'] = '$mu_key';/g" \
- -e "s/$_ENV['db_host'] = '';/$_ENV['db_host'] = '$db_host';/g" \
- -e "s/$_ENV['db_database'] = 'sspanel';/$_ENV['db_database'] = '$db_database';/g" \
- -e "s/$_ENV['db_username'] = 'root';/$_ENV['db_username'] = '$db_username';/g" \
- -e "s/$_ENV['db_password'] = 'sspanel';/$_ENV['db_password'] = '$db_password';/g" \
- config/.config.php
- echo "Creating database and user..."
- mysql -uroot -p$db_root_password \
- -e "CREATE DATABASE $db_database CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
- CREATE USER '$db_username'@'localhost';
- GRANT ALL PRIVILEGES ON $db_database.* TO '$db_username'@'localhost' IDENTIFIED BY '$db_password';
- FLUSH PRIVILEGES;"
- echo "Importing config to database..."
- php vendor/bin/phinx migrate
- php xcat Tool importAllSettings
- wget https://cdn.jsdelivr.net/gh/sspanel-uim/qqwry.dat@latest/qqwry.dat -O storage/qqwry.dat
- current_dir=$(pwd)
- crontab -l > cron.tmp
- echo "*/1 * * * * /usr/bin/php $current_dir/xcat Job CheckJob" >> cron.tmp
- echo "0 */1 * * * /usr/bin/php $current_dir/xcat Job UserJob" >> cron.tmp
- echo "0 0 * * * /usr/bin/php -n $current_dir/xcat Job DailyJob" >> cron.tmp
- crontab cron.tmp
- rm cron.tmp
- echo "Updating File Permission..."
- chmod 755 -R *
- chown www -R *
- echo "Installation completed! Now you can create your first admin user by running 'php xcat createAdmin'."
- }
- do_install_sspanel
|