Skip to content

Commit 1743a70

Browse files
committed
Change end-user password, modify doc
1 parent c784575 commit 1743a70

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dev.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The releaser, which, in most cases, is a developer, can export a running Virtual
4242
According to this [tutorial](https://www.techrepublic.com/article/how-to-import-and-export-virtualbox-appliances-from-the-command-line/), releasers can call the VBoxManage command to export a VM. We have written a scrip to do this. Simply run below script to export our playground. This script will create a file named `SQLFlowPlayground.ova`, we can import the file through virtual box GUI.
4343
4444
```bash
45-
./publish
45+
./release.sh
4646
```
4747
4848
### For End-users
@@ -55,10 +55,10 @@ To run SQLFlow on a desktop computer running Windows, Linux, or macOS, you need
5555
```
5656
1. optional, the [sqlflow](https://github.com/sql-machine-learning/sqlflow/blob/develop/doc/run/cli.md) command-line tool released by SQLFlow CI.
5757
58-
If you have VirtualBox installed, you can import the `SQLFlowPlayground.ova` file and start a VM. After that, you can log in the system through the VirtualBox GUI or through a ssh connection like below. The default password of `root` is `vagrant`.
58+
If you have VirtualBox installed, you can import the `SQLFlowPlayground.ova` file and start a VM. After that, you can log in the system through the VirtualBox GUI or through a ssh connection like below. The default password of `root` is `sqlflow`.
5959
```bash
6060
ssh -p2222 root@127.0.0.1
61-
root@127.0.0.1's password: vagrant
61+
root@127.0.0.1's password: sqlflow
6262
```
6363
Once logged in the VM, you will immediately see a script named `start.bash`, just run the script to start SQLFlow playground. It will output some hint messages for you, follow those hints, after a while, you will see something like `Access Jupyter NoteBook at: http://127.0.0.1:8888/...`, it means we are all set. Copy the link to your web browser and you will see SQLFlow's Jupyter Notebook user interface, Enjoy it!
6464
```bash
@@ -70,5 +70,5 @@ Or, if you has an AWS or Google Cloud account, you can upload the `.ova` file to
7070
Anyway, given a running VM, the end-user can run the following command to connect to it:
7171

7272
```bash
73-
sqlflow --sqlflow_server=my-vm.aws.com:50051
73+
sqlflow --sqlflow-server=my-vm.aws.com:50051
7474
```

provision.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ done
8484
echo "Done."
8585

8686
echo "Change root password ..."
87-
echo "root:vagrant" | chpasswd
87+
echo "root:sqlflow" | chpasswd
8888
sed -i -e 's/^PasswordAuthentication no/PasswordAuthentication yes/g' \
8989
-e 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/g' \
9090
/etc/ssh/sshd_config

0 commit comments

Comments
 (0)