Influx CLI 2.03 not work ,because org or username password

Env
 OS centos 8
 Software influxdb Version 2.03
 Influx CLI 2.0.3 (git: fe04d346df) build_date: 2020-12-15T01:00:16Z

   remove influxdb 1.7 
   then install influxdb Version 2.03
And there is no " $HOME/.influxdbv2" 
 $HOME/.influxdbv2/credentials

So confuse how to add user name / password
and org in command line.

I fails with sample command. influxdb v2.0 write-data

############My operation and result ################
$ influx write -b test4 -f MyGeneration_Data.csv

Error: Must specify org-id, or org name.

$ influx write -b test4 -f MyGeneration_Data.csv org “abrazo”

Error: accepts at most 1 arg(s), received 2
############My operation and result ################

similar issue
`influx dashboards` doesn't work when `--org` is specified · Issue #108 · influxdata/influx-cli · GitHub

After try

export INFLUX_TOKEN=<yourauthtoken>

Result is the same …

Hello,
what you have to do before using influx is a
influx setup -o “your org name” -t “your token”
This call results in a config file at ~/.influxdbv2 directory.

You can get the org/token from
http://localhost:8086/

Good luck…

Hello again,
sorry for the wrong info. It’s
influx config create -u “http:/localhost:8086” -o “your-org” -t “your-user-token”

The command below worked for me. Replace $values with you custom values

influx config create -n $configName -u http://$hostAddress:8086 -o $organisationName -t $token